From 9b784c37a5b582a6629a058aaf80b328fe687b33 Mon Sep 17 00:00:00 2001 From: tsic404 Date: Wed, 24 Apr 2024 17:38:46 +0800 Subject: [PATCH 1/2] fix: drag and drop get null when dragevent not contains special key issue: https://github.com/linuxdeepin/developer-center/issues/8198 log: as title --- panels/dock/taskmanager/package/TaskManager.qml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/panels/dock/taskmanager/package/TaskManager.qml b/panels/dock/taskmanager/package/TaskManager.qml index c6abcc1bf..29373d516 100644 --- a/panels/dock/taskmanager/package/TaskManager.qml +++ b/panels/dock/taskmanager/package/TaskManager.qml @@ -47,12 +47,16 @@ ContainmentItem { implicitHeight: useColumnLayout ? Panel.rootObject.dockItemMaxSize * 0.8 : Panel.rootObject.dockItemMaxSize onEntered: function(drag) { - visualModel.items.move((drag.source as AppItem).visualIndex, app.visualIndex) + if (drag.keys.includes("text/x-dde-dock-dnd-appid")) { + visualModel.items.move((drag.source as AppItem).visualIndex, app.visualIndex) + } } onDropped: function(drop) { - drop.accept() - taskmanager.Applet.dataModel.moveTo(drop.source.itemId, visualIndex) + if (drop.keys.includes("text/x-dde-dock-dnd-appid")) { + drop.accept() + taskmanager.Applet.dataModel.moveTo(drop.source.itemId, visualIndex) + } } property int visualIndex: DelegateModel.itemsIndex From 055d308af02724037c8654480b9c61e65202044b Mon Sep 17 00:00:00 2001 From: tsic404 Date: Wed, 24 Apr 2024 17:38:51 +0800 Subject: [PATCH 2/2] chore: bump version 0.0.12 bump version 0.0.12 log: as title --- debian/changelog | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/debian/changelog b/debian/changelog index 2bc517c95..6c15bd406 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,18 @@ +dde-shell (0.0.12) unstable; urgency=medium + + * fix: popup window cannot show on first run + * chore: add open workspace item + * fix: After logging out, the workspace icons are not displayed + * fix: some icon not clear + * refact: update ColorSelector family for dock panel + * fix: solve the problem of blurry icons in the tray area + * fix: preview title not elided + * fix: icon blurry + * fix: text color of ToolTip doesn't change with theme + * fix: solve the problem of the dock jumping when the height changes + + -- tsic404 Wed, 24 Apr 2024 15:30:04 +0800 + dde-shell (0.0.11) unstable; urgency=medium * fix: don't emit FrontendWindowRectChanged signal