Add minimal version

This commit is contained in:
El Mau 2022-01-27 09:43:00 -06:00
parent cac0b4fb59
commit b1e24d4411
7 changed files with 17 additions and 13 deletions

View File

@ -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)

View File

@ -1 +1 @@
0.8.0
0.8.1

View File

@ -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}.

Binary file not shown.

View File

@ -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

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

View File

@ -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