Skip to content

Commit

Permalink
Release version 0.95.2, containing the latest fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
luziferius committed Jul 16, 2018
1 parent 451e55c commit 83a65e2
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ Changelog
=========
.. contents::

Version 0.95.2 <2018-07-16>
===========================

- 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.
- Minor code simplifications. Removed unnecessary functions that were obsoleted during prior changes.

Version 0.95.1 <2018-06-30>
===========================
This is a small bug fixing release.
Expand Down
17 changes: 14 additions & 3 deletions debian/changelog
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

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion lib/autokey/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -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]'
Expand Down

0 comments on commit 83a65e2

Please sign in to comment.