Skip to content
This repository has been archived by the owner on Jul 7, 2019. It is now read-only.

Commit

Permalink
4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jaszhix committed Jan 18, 2017
1 parent f0b8aeb commit b8b4a6b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
Changelog

### 4.3.0

* Added a menu item type option dropdown controlling the style of icons, or their visibility.
* Moved the pinning, autostart, and shortcut creation options from the Preferences sub-menu to the main menu list.
* Re-merged the "Close"/"Close all" menu options like in the old context menu to avoid having three different close options for apps with multiple windows.

### 4.2.4

* Fixed a regression causing thumbnail menus to close too early.
Expand Down
2 changes: 2 additions & 0 deletions CREDITS.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ Special thanks to the contributors of this project.
* nicojx
* NoXPhasma
* Xeronel
* feren
* giuspen

### Support

Expand Down
1 change: 1 addition & 0 deletions importPinned.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def importConfig():
('AppMenu', config['AppMenu']),
('seperator5', config['seperator4']),
('show-recent', config['show-recent']),
('menuItemType', config['menuItemType']),
('firefox-menu', config['firefox-menu']),
('autostart-menu-item', config['autostart-menu-item']),
('monitor-move-all-windows', config['monitor-move-all-windows']),
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "icingtaskmanager",
"version": "4.2.4",
"version": "4.3.0",
"description": "Icing Task Manager",
"main": "gulpfile.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"max-instances": -1,
"dangerous": false,
"name": "Icing Task Manager",
"version": "4.2.4",
"version": "4.3.0",
"role": "panellauncher",
"uuid": "IcingTaskManager@json"
}
5 changes: 3 additions & 2 deletions src/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ def handleCli():
('AppMenu', config['AppMenu']),
('seperator5', config['seperator4']),
('show-recent', config['show-recent']),
('menuItemType', config['menuItemType']),
('firefox-menu', config['firefox-menu']),
('autostart-menu-item', config['autostart-menu-item']),
('monitor-move-all-windows', config['monitor-move-all-windows']),
Expand Down Expand Up @@ -197,8 +198,8 @@ def handleCli():
print('OSError')
return

except KeyError:
':('
except KeyError as e:
print('KeyError', e)
return

else:
Expand Down

0 comments on commit b8b4a6b

Please sign in to comment.