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-kwin (6.0.5) unstable; urgency=medium

* fix: resolve dde-kwin configuration hang

-- shining <shining@uniontech.com> Mon, 22 Dec 2025 15:59:09 +0800

dde-kwin (6.0.4) unstable; urgency=medium

* chore: add dconfig value for compositing level
Expand Down
11 changes: 1 addition & 10 deletions debian/dde-kwin.postinst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
DEEPINVER_FILENAME=/etc/deepin-version
OSVER_FILENAME=/etc/os-version
KWINRC_FILENAME=/etc/xdg/kwinrc
KWINRCTMP_FILENAME=~/.config/kwinrc


#DEEPINVER_FILENAME=./deepin-version
#KWINRC_FILENAME=./kwinrc
Expand All @@ -13,8 +13,6 @@ DEEPINVER=Server
iniOptions=()
iniSections=()

iniDisplayDevicdId={`lshw -C display | grep product`}
iniShieldDevicdId=(JM7200)

iniValue=

Expand Down Expand Up @@ -111,13 +109,6 @@ if [ $iniValue = $DEEPINVER ]; then
writeInifile $KWINRC_FILENAME "Compositing" "OpenGLIsUnsafe" "true"
fi

for deviceId in ${iniShieldDevicdId[*]}; do
if [[ $iniDisplayDevicdId =~ $deviceId ]]; then
writeInifile $KWINRC_FILENAME "Compositing" "OpenGLIsUnsafe" "true"
writeInifile $KWINRCTMP_FILENAME "Compositing" "OpenGLIsUnsafe" "true"
fi
done


declare -A needOverridekeyValuePairs

Expand Down
Loading