diff --git a/README.md b/README.md index 85888d9..f5f1834 100644 --- a/README.md +++ b/README.md @@ -8,17 +8,19 @@ Thanks! https://git.cuates.net/elmau/zaz -### Software libre, no gratis +### Free Software, not gratis This extension have a cost of maintenance of 1 euro every year. +G1: `A5DdXxCKPw3QKWVdDVs7CzkNugNUW1sHu5zDJFWxCU2h` BCH: `qztd3l00xle5tffdqvh2snvadkuau2ml0uqm4n875d` -BTC: `3FhiXcXmAesmQzrNEngjHFnvaJRhU1AGWV` - -You have others cryptos, welcome too! - +``` +Euros +IBAN: BE60 9671 0556 5870 +SWIFT / BIC: TRWIBEB1XXX +``` * [Look the wiki](https://gitlab.com/mauriciobaeza/zaz-pip/wikis/home) * [Mira la wiki](https://gitlab.com/mauriciobaeza/zaz-pip/wikis/home_es) diff --git a/VERSION b/VERSION index 8adc70f..6f4eebd 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.8.0 \ No newline at end of file +0.8.1 diff --git a/conf.py b/conf.py index 5b3edec..513e0ec 100644 --- a/conf.py +++ b/conf.py @@ -26,7 +26,7 @@ import logging TYPE_EXTENSION = 1 # ~ https://semver.org/ -VERSION = '0.8.0' +VERSION = '0.8.1' # ~ Your great extension name, not used spaces NAME = 'ZAZPip' @@ -58,8 +58,7 @@ ICON = 'images/logo.png' ICON_EXT = f'{NAME.lower()}.png' # ~ For example -# ~ DEPENDENCIES_MINIMAL = '6.0' -DEPENDENCIES_MINIMAL = '' +DEPENDENCIES_MINIMAL = '7.0' # ~ Change for you favorite license LICENSE_EN = f"""This file is part of {NAME}. diff --git a/files/ZAZPip_v0.8.0.oxt b/files/ZAZPip_v0.8.0.oxt index d134196..fd7e055 100644 Binary files a/files/ZAZPip_v0.8.0.oxt and b/files/ZAZPip_v0.8.0.oxt differ diff --git a/source/ZAZPip.py b/source/ZAZPip.py index 79382e1..01ba86b 100644 --- a/source/ZAZPip.py +++ b/source/ZAZPip.py @@ -13,9 +13,9 @@ class ZAZPip(unohelper.Base, XJobExecutor): def __init__(self, ctx): self.ctx = ctx - def trigger(self, args): + def trigger(self, option): main.ID_EXTENSION = ID_EXTENSION - main.run(args, __file__) + main.run(__file__) return diff --git a/source/images/zazpip.png b/source/images/zazpip.png index 2f210ed..4e0d53f 100644 Binary files a/source/images/zazpip.png and b/source/images/zazpip.png differ diff --git a/source/pythonpath/main.py b/source/pythonpath/main.py index 51c90ea..c4f5b31 100644 --- a/source/pythonpath/main.py +++ b/source/pythonpath/main.py @@ -48,10 +48,13 @@ def open_dialog_pip(): return -def run(args, path_locales): +def run(path_locales): global _ + _ = app.install_locales(path_locales) - globals()[args]() + + open_dialog_pip() + return