diff --git a/CHANGELOG b/CHANGELOG index 6ec6e34..0fe38fe 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +v 0.10.2 [22-apr-2022] + - Fix - issue #10 + v 0.10.1 [26-mar-2022] - Fix - issue #9 diff --git a/VERSION b/VERSION index 71172b4..42624f3 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.10.1 \ No newline at end of file +0.10.2 \ No newline at end of file diff --git a/conf.py b/conf.py index cd64ba0..78f0c2b 100644 --- a/conf.py +++ b/conf.py @@ -26,7 +26,7 @@ import logging TYPE_EXTENSION = 1 # ~ https://semver.org/ -VERSION = '0.10.1' +VERSION = '0.10.2' # ~ Your great extension name, not used spaces NAME = 'ZAZPip' @@ -116,7 +116,7 @@ PARENT = 'AddonMenu' MENU_MAIN = {} MENUS = ( { - 'title': {'en': 'Open Pip', 'es': 'Abrir Pip', 'fr': 'Ouvert Pip'}, + 'title': {'en': 'Open Zaz-Pip', 'es': 'Abrir Zaz-Pip', 'fr': 'Ouvert Zaz-Pip'}, 'argument': 'open_dialog_pip', 'context': '', 'icon': 'icon', @@ -158,7 +158,7 @@ DIRS = { 'description': 'description', 'images': 'images', 'registration': 'registration', - 'files': 'files', + 'files': 'extension', 'office': 'Office', 'locales': PATH_LOCALES, 'pythonpath': True, diff --git a/files/ZAZPip_v0.10.1.oxt b/extension/ZAZPip_v0.10.2.oxt similarity index 88% rename from files/ZAZPip_v0.10.1.oxt rename to extension/ZAZPip_v0.10.2.oxt index d862a02..897da46 100644 Binary files a/files/ZAZPip_v0.10.1.oxt and b/extension/ZAZPip_v0.10.2.oxt differ diff --git a/source/Addons.xcu b/source/Addons.xcu index eaaa99d..f5ce06f 100644 --- a/source/Addons.xcu +++ b/source/Addons.xcu @@ -4,9 +4,9 @@ - Open Pip - Abrir Pip - Ouvert Pip + Open Zaz-Pip + Abrir Zaz-Pip + Ouvert Zaz-Pip diff --git a/source/description.xml b/source/description.xml index b13b213..c87fc3a 100644 --- a/source/description.xml +++ b/source/description.xml @@ -1,7 +1,7 @@ - + diff --git a/source/pythonpath/main.py b/source/pythonpath/main.py index 07557ea..fc8a41a 100644 --- a/source/pythonpath/main.py +++ b/source/pythonpath/main.py @@ -151,7 +151,8 @@ class Controllers(object): def txt_search_key_released(self, event): if event.KeyCode == app.KEY['enter']: - self.cmd_search_action(None) + # ~ self.cmd_search_action(None) + self.cmd_install_action(None) return if not self.d.txt_search.value.strip(): diff --git a/zaz.py b/zaz.py index 8388de8..b6542fb 100755 --- a/zaz.py +++ b/zaz.py @@ -755,7 +755,7 @@ def _new(args): path = _join(args.target, args.name) _mkdir(path) - _mkdir(_join(path, 'files')) + _mkdir(_join(path, 'ext')) _mkdir(_join(path, 'images')) path_logo = 'images/pymacros.png' copyfile(path_logo, _join(path, 'images/logo.png'))