Skip to content

Commit

Permalink
Merge pull request #39 from wojtryb/development
Browse files Browse the repository at this point in the history
Deploy v1.2.1
  • Loading branch information
wojtryb authored Apr 12, 2023
2 parents f87c3b5 + 2df5355 commit fdfd597
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 3 deletions.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ The plugin adds new shortcuts of the following types:
- `Multiple assignment` - repeatedly pressing a key, cycles between multiple values of krita property.
- `Temporary key` - temporarily activates a krita property with long press or toggles it on/off with short press.

## What's new in **1.2.0**
## What's new in **1.2**

[![PIE MENUS - introducing Shortcut Composer](http://img.youtube.com/vi/Tkf2-U0OyG4/0.jpg)](https://www.youtube.com/watch?v=Tkf2-U0OyG4 "PIE MENUS - introducing Shortcut Composer")


- [hotfix **1.2.1**] - Fixed pie menus in edit mode hiding when clicked outside on the canvas.


### Added
- Adding and removing PieMenu icons with drag and drop.
- Class-oriented configuration system with automatic value parsing. Can be reused in other plugins.
Expand Down
2 changes: 1 addition & 1 deletion shortcut_composer/INFO.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-FileCopyrightText: © 2022-2023 Wojciech Trybus <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later

__version__ = "1.2.0"
__version__ = "1.2.1"
__author__ = "Wojciech Trybus"
__license__ = "GPL-3.0-or-later"
5 changes: 4 additions & 1 deletion shortcut_composer/manual.html
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ <h1 id="shortcut-composer">Shortcut composer</h1>
with
short press.</li>
</ul>
<h2 id="what-s-new-in-1-2-0-">What&#39;s new in <strong>1.2.0</strong></h2>
<h2 id="what-s-new-in-1-2-">What&#39;s new in <strong>1.2</strong></h2>
<ul>
<li>[hotfix **1.2.1**] - Fixed pie menus in edit mode hiding when clicked outside on the canvas.</li>
</ul>
<h3 id="added">Added</h3>
<ul>
<li>Adding and removing PieMenu icons with drag and drop.</li>
Expand Down
1 change: 1 addition & 0 deletions shortcut_composer/templates/pie_menu_utils/pie_widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ def __init__(
self.windowFlags() | # type: ignore
Qt.Tool |
Qt.FramelessWindowHint |
Qt.WindowStaysOnTopHint |
Qt.NoDropShadowWindowHint))
self.setAttribute(Qt.WA_TranslucentBackground)
self.setStyleSheet("background: transparent;")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ def __init__(
self.setWindowFlags((
self.windowFlags() | # type: ignore
Qt.Tool |
Qt.WindowStaysOnTopHint |
Qt.FramelessWindowHint))
self.setCursor(Qt.ArrowCursor)

Expand Down

0 comments on commit fdfd597

Please sign in to comment.