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
2 changes: 1 addition & 1 deletion arm64/linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.30.1
version: 6.5.31.1
kind: app
description: |
Draw for deepin os.
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
deepin-draw (6.5.31) unstable; urgency=medium

* fix: Correct serialization of command count in SDynamicLayerUnitData

-- Liu Zhangjian <liuzhangjian@uniontech.com> Tue, 26 Aug 2025 13:34:21 +0800

deepin-draw (6.5.30) unstable; urgency=medium

* fix: Fixed CMYK image display issue Fixed CMYK image display issue
Expand Down
2 changes: 1 addition & 1 deletion linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.30.1
version: 6.5.31.1
kind: app
description: |
Draw for deepin os.
Expand Down
2 changes: 1 addition & 1 deletion loong64/linglong.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version: '1'
package:
id: org.deepin.draw
name: deepin-draw
version: 6.5.30.1
version: 6.5.31.1
kind: app
description: |
Draw for deepin os.
Expand Down
2 changes: 1 addition & 1 deletion src/drawshape/sitemdata.h
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ struct SDynamicLayerUnitData {
out << layUnit.baseImg;
out << layUnit.blocked;
out << layUnit.layerType;
out << layUnit.commands.count();
out << static_cast<int>(layUnit.commands.count());
foreach (auto cmd, layUnit.commands) {
out << cmd->cmdType();
cmd->serialization(out);
Expand Down
Loading