[Internal testing communication] 【deepin增强源】treeland可提前预览
Tofloor
poster avatar
mozixun
Moderator
2026-07-17 15:33
Author

源介绍和加源方式详见: https://bbs.deepin.org.cn/post/298018

个人觉得deepin v25正式源里的treeland相关更新速度太慢, 因此在Better Deepin Repo里另外编译了一份提前合并了一些修复和改进的treeland和xdg-desktop-portal-dde

treeland侧已知相对官方改动的部分:

  1. 升级wlroots-0.19版本至0.19.3, 提前享受最新修复和带了External Qt rendering补丁的版本
  2. 增加Vulkan renderer (开启方式: 在/bin/treeland.sh倒数第二行加 export WLR_RENDERER=vulkan )
  3. 修复Chromium 150+拖动链接窗口直接导致treeland崩溃的问题
  4. 实验性修复 @Amber 提的鼠标光标聚焦问题 (我测试了我的世界:Java Edition, 米塔Miside, JDM漂移大师均正常)

xdg-desktop-portal-dde侧相对官方改动的部分:

  1. 修复官方截图忘记走portal规范正常关闭的问题
  2. 修复官方截图开启分数缩放后截图截不全的问题

如有需要我可以额外编译带了截图转发xdg-desktop-portal, 修复X应用截图问题的Xwayland, 但目前来看需求不大因此还没编译

Reply Favorite View the author
All Replies
avatar
庸俗的浪漫着
deepin
2026-07-17 17:44
#1

等出差回去在电脑上试试看吧,最好能有一个安装treeland的操作步骤,方便小白,比如本人joy

Reply View the author
avatar
mozixun
Moderator
2026-07-17 18:02
#2
庸俗的浪漫着

等出差回去在电脑上试试看吧,最好能有一个安装treeland的操作步骤,方便小白,比如本人joy

你甚至不需要安装, 坐等更新即可

Reply View the author
avatar
庸俗的浪漫着
deepin
2026-07-17 19:54
#3
mozixun

你甚至不需要安装, 坐等更新即可

applaud

Reply View the author
avatar
庸俗的浪漫着
deepin
2026-07-22 11:29
#4

源服务器出啥问题了吗,报错
图片.png

Reply View the author
avatar
mozixun
Moderator
2026-07-22 12:05
#5
庸俗的浪漫着

源服务器出啥问题了吗,报错
图片.png

主源因为罐子有事暂停更新了, 有备用源, 直接换源即可:

https://repo.odata.cc/deepin25/

Reply View the author
avatar
庸俗的浪漫着
deepin
2026-07-22 12:19
#6
#!/bin/bash

# 获取sudo提权
echo "- 请在下方输入您的管理员密码:"
sudo echo "提权完成" && clear

# 删除过时组件
sudo rm -f /etc/apt/trusted.gpg.d/better-deepin-repo.asc
sudo rm -f /etc/apt/sources.list.d/better-deepin-repo.list

# 安装必需组件
sudo apt update
sudo apt install wget gpg -y

# 加源的GPG密钥
sudo wget -O /etc/apt/trusted.gpg.d/repo.odata.cc-deepin25.asc   https://repo.odata.cc/deepin25/Release.key

# 加入源本体
sudo bash -c 'cat > /etc/apt/sources.list.d/better-deepin-repo.list << EOF
deb https://repo.odata.cc/deepin25/ Deepin_25 main
EOF'

# 更新软件源
sudo apt update

更新源文件

Reply View the author