File tree 2 files changed +14
-4
lines changed
shortcut_composer/api_krita/pyqt
2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -12,13 +12,23 @@ The plugin adds new shortcuts of the following types:
12
12
13
13
[ ![ PIE MENUS - introducing Shortcut Composer] ( http://img.youtube.com/vi/hrjBycVYFZM/0.jpg )] ( https://www.youtube.com/watch?v=hrjBycVYFZM " PIE MENUS - introducing Shortcut Composer ")
14
14
15
+ ## What's new in v1.0.1
16
+ Fixes following issues:
17
+ - Fix displaying inactive presets and tags
18
+ - Detect and support light krita theme, switch between them when changed
19
+ - PieWidget as popup - pies no longer recognized by OS as windows
20
+ - Allow different parameters for each configuration value
21
+ - Use default font to fix MacOS helvetica issue
22
+ - Allow using actions when active layer is locked
23
+ - Work around krita bug: zoom being dependent on document dpi
24
+
15
25
## Requirements
16
- Shortcut Composer ** v1.0** Requires krita ** 5.1.0** or later.
26
+ Shortcut Composer ** v1.0.1 ** Requires krita ** 5.1.0** or later.
17
27
18
28
Supported operating systems:
19
29
- [x] Windows 10/11
20
30
- [x] Linux
21
- - [ ] MacOS (Not tested yet - your feedback is very appreciated )
31
+ - [ ] MacOS (Known bug of canvas losing focus after using PieMenu )
22
32
- [ ] Android (Does not support python plugins yet)
23
33
24
34
## Installation:
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ def _percentage(percent: int) -> Color:
77
77
BlendingMode .SCREEN : Color .GREEN ,
78
78
BlendingMode .COLOR : Color .YELLOW ,
79
79
BlendingMode .ADD : Color .DARK_BLUE ,
80
- BlendingMode .MULTIPLY : Color .VERY_DARK_BLUE ,
80
+ BlendingMode .MULTIPLY : Color .BLUE ,
81
81
})
82
82
"""Mapping of blending modes to custom colors in dark theme."""
83
83
BLENDING_MODES_LIGHT = defaultdict (lambda : Color .DARK_GRAY , {
@@ -86,6 +86,6 @@ def _percentage(percent: int) -> Color:
86
86
BlendingMode .SCREEN : Color .ORANGE ,
87
87
BlendingMode .COLOR : Color .VIOLET ,
88
88
BlendingMode .ADD : Color .DARK_BLUE ,
89
- BlendingMode .MULTIPLY : Color .BLUE ,
89
+ BlendingMode .MULTIPLY : Color .VERY_DARK_BLUE ,
90
90
})
91
91
"""Mapping of blending modes to custom colors in light theme."""
You can’t perform that action at this time.
0 commit comments