Skip to content

Commit 978f9e7

Browse files
committed
Updated documentation
1 parent a10b0a8 commit 978f9e7

File tree

2 files changed

+14
-4
lines changed

2 files changed

+14
-4
lines changed

README.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,23 @@ The plugin adds new shortcuts of the following types:
1212

1313
[![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")
1414

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+
1525
## 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.
1727

1828
Supported operating systems:
1929
- [x] Windows 10/11
2030
- [x] Linux
21-
- [ ] MacOS (Not tested yet - your feedback is very appreciated)
31+
- [ ] MacOS (Known bug of canvas losing focus after using PieMenu)
2232
- [ ] Android (Does not support python plugins yet)
2333

2434
## Installation:

shortcut_composer/api_krita/pyqt/colorizer.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def _percentage(percent: int) -> Color:
7777
BlendingMode.SCREEN: Color.GREEN,
7878
BlendingMode.COLOR: Color.YELLOW,
7979
BlendingMode.ADD: Color.DARK_BLUE,
80-
BlendingMode.MULTIPLY: Color.VERY_DARK_BLUE,
80+
BlendingMode.MULTIPLY: Color.BLUE,
8181
})
8282
"""Mapping of blending modes to custom colors in dark theme."""
8383
BLENDING_MODES_LIGHT = defaultdict(lambda: Color.DARK_GRAY, {
@@ -86,6 +86,6 @@ def _percentage(percent: int) -> Color:
8686
BlendingMode.SCREEN: Color.ORANGE,
8787
BlendingMode.COLOR: Color.VIOLET,
8888
BlendingMode.ADD: Color.DARK_BLUE,
89-
BlendingMode.MULTIPLY: Color.BLUE,
89+
BlendingMode.MULTIPLY: Color.VERY_DARK_BLUE,
9090
})
9191
"""Mapping of blending modes to custom colors in light theme."""

0 commit comments

Comments
 (0)