Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump version 0.0.14 #297

Merged
merged 2 commits into from
Apr 29, 2024
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
32 changes: 32 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
dde-shell (0.0.14) unstable; urgency=medium

* fix: crashed when open dock's menu(Issue: https://github.com/linuxdeepin/developer-center/issues/8243)
* fix: double release pointer
* fix: invalid fallback for DesktopfileAbstractParser
* fix: crashed when load plugins in sometimes
* fix: crashed when QScrollArea during deconstruction
* fix: "showtimetofull" option didn't work(Issue: https://github.com/linuxdeepin/developer-center/issues/8144)
* fix: application preview stuttering.
Thanks to zhangkun(Issue: https://github.com/linuxdeepin/developer-center/issues/8095)
* chore: missing lincense
* fix: incorrect resources for device icon(Issue: https://github.com/linuxdeepin/developer-center/issues/8238)
* chore: modify ts file (#281)
Thanks to ZhaoYingZhen(issue: 8270)(Influence: translation display)
* fix: crashed by qmlcache(Issue: https://github.com/linuxdeepin/developer-center/issues/8289)
* fix: quick panel popup has focus (#293)
Thanks to ZhaoYingZhen(Influence: quick panel popup has no focus)
* chore: add uos-ai tray plugin (#283)
Thanks to ZhaoYingZhen(issue: 8247)(Influence: uos-ai tray plugin icon display)
* fix: modify plugin hover style
* fix: workspace not localize(issue: 8223, 8278)
* feat: Hide multitask button when composition is disabled(Issue: https://github.com/linuxdeepin/developer-center/issues/8224)
* fix: crashed by tipWidget when exit
* fix: fix `mapToGlobal` error
* fix: notification plugin not generated in correct location in debug mode(issue: 8245)
* fix: tips position error(issue: 8197)
* fix: some widget layout margin incorrect(issue: 7704)
* [dde-shell] Updates for project Deepin Desktop Environment (#277)
Thanks to transifex-integration[bot]

-- Deepin Packages Builder <[email protected]> Sun, 28 Apr 2024 13:14:13 +0800

dde-shell (0.0.13) unstable; urgency=medium

* chore: adjust radius for ToolTips
Expand Down
1 change: 0 additions & 1 deletion panels/dock/taskmanager/package/TaskManager.qml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ ContainmentItem {

Component.onCompleted: {
Panel.rootObject.dockItemMaxSize = Qt.binding(function(){
console.log(Panel.rootObject.dockSize, Panel.rootObject.dockLeftSpaceForCenter, Panel.rootObject.dockCenterPartCount - 1 + taskmanager.Applet.dataModel.rowCount())
return Math.min(Panel.rootObject.dockSize, Panel.rootObject.dockLeftSpaceForCenter * 1.2 / (Panel.rootObject.dockCenterPartCount - 1 + taskmanager.Applet.dataModel.rowCount()) - 2)
})
}
Expand Down
6 changes: 3 additions & 3 deletions panels/dock/workspaceitem/package/workspaceitem.qml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ AppletItem {

Control {
anchors.centerIn: parent
implicitWidth: frameSize + 4
implicitHeight: itemSize + 4
implicitWidth: frameSize
implicitHeight: frameSize

Rectangle {
id: workspaceRectangle
property D.Palette backgroundColor: DockPalette.workspaceRectangleColor
Expand Down
Loading