forked from autokey/autokey
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release version 0.95.2, containing the latest fixes.
- Loading branch information
1 parent
451e55c
commit 83a65e2
Showing
3 changed files
with
23 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,17 @@ | ||
autokey (0.95.2-0) bionic; urgency=medium | ||
|
||
* Fix broken imports in autokey-shell script | ||
* Skip non-json-serializable data in script storage (both script local and global) during saving. This allows putting | ||
non-serializable items (like function objects) into the store without crashing autokey during saving. | ||
* [Qt] Fix minor bug when creating new items. Created items are now properly selected for renaming directly after creation. | ||
|
||
-- Thomas Hess <[email protected]> Mon, 16 Jul 2018 15:13:03 +0200 | ||
|
||
autokey (0.95.1-0) bionic; urgency=medium | ||
|
||
* Fix a long standing bug that errors occurring during phrase parsing or script execution can lock up the user keyboard. Make sure to always release the keyboard after grabbing it. | ||
* [Qt]: Fix saving the content of the log view to a file using the context menu entry. | ||
* Fix a long standing bug that errors occurring during phrase parsing or script execution can lock up the user | ||
keyboard. Make sure to always release the keyboard after grabbing it. | ||
* [Qt] Fix saving the content of the log view to a file using the context menu entry. | ||
|
||
-- Thomas Hess <[email protected]> Sat, 30 Jun 2018 23:02:19 +0200 | ||
|
||
|
@@ -12,7 +22,8 @@ autokey (0.95.0-0) bionic; urgency=medium | |
* [Scripting API] Re-added newline trimming in system.exec_command() API call. | ||
* [Scripting API] Fixed broken KDialog based colour chooser dialogue. | ||
* [Scripting API] Added zenity based colour chooser dialogue. | ||
* [Scripting API] Both colour dialogs return parsed data in the form of a Python namedtuple. This API change breaks old scripts that used the KDialog based colour chooser. | ||
* [Scripting API] Both colour dialogs return parsed data in the form of a Python namedtuple. | ||
This API change breaks old scripts that used the KDialog based colour chooser. | ||
* See the CHANGELOG.rst for details | ||
|
||
-- Thomas Hess <[email protected]> Thu, 28 Jun 2018 17:21:32 +0200 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,7 +35,7 @@ | |
|
||
APP_NAME = "autokey" | ||
CATALOG = "" | ||
VERSION = "0.95.1" | ||
VERSION = "0.95.2" | ||
HOMEPAGE = "https://github.com/autokey/autokey" | ||
AUTHOR = 'Chris Dekter' | ||
AUTHOR_EMAIL = '[email protected]' | ||
|