Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
dde-session (1.99.11) unstable; urgency=medium

* fix: return value spelling error

-- zhangkun <zhangkun2@uniontech.com> Sat, 08 Mar 2025 13:49:35 +0800

dde-session (1.99.10) unstable; urgency=medium

* fix: 修复从登录页面到桌面加载时间大约需要2分钟问题.
Expand Down
4 changes: 2 additions & 2 deletions misc/Xsession.d/00deepin-dde-env
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ get_graphics_drivers() {
# 检查是否等于目标驱动程序
if [ "$driver_name" = "$target_to_match" ]; then
echo "Match found: $driver_name"
return 1
return 0
fi
done
done
done
return 0 # 默认返回0表示匹配失败
return 1 # 默认返回1表示匹配失败
}

if [ "$1" = "/usr/bin/dde-session" ]; then
Expand Down
Loading