Compare commits

...

5 Commits

Author SHA1 Message Date
Mauricio Baeza 5419cf889a Fix in main function 2021-06-27 21:22:55 -05:00
Mauricio Baeza d877a5f1e6 Update changelog 2021-06-27 21:22:29 -05:00
Mauricio Baeza 8e71d33841 Update changelog 2021-06-27 21:19:20 -05:00
Mauricio Baeza fbcee7a833 Fix in open files 2021-01-06 22:22:22 -06:00
Mauricio Baeza 844f9e971e Fix in open files 2021-01-06 22:21:56 -06:00
10 changed files with 1072 additions and 247 deletions

View File

@ -1,3 +1,12 @@
v 0.7.0 [27-jun-2021]
- Update easymacro.py
v 0.6.0 [20-dec-2020]
- Update easymacro.py
- Separate main
v 0.5.0 [22-nov-2019]
- Update easymacro.py
@ -7,17 +16,14 @@ v 0.4.0 [23-oct-2019]
v 0.3.0 [15-oct-2019]
---------------------
- Add menus in start application.
- Update easymacro.py
v 0.2.0 [27-sep-2019]
---------------------
- Update easymacro.py
v 0.1.0 [19-sep-2019]
---------------------
- Initial version

View File

@ -5,20 +5,26 @@ Extension for set your favorite files in LibreOffice, with Python, of course.
Thanks!
https://gitlab.com/mauriciobaeza/zaz
### Software libre, no gratis
* https://git.cuates.net/elmau/zaz
This extension have a cost of maintenance of 1 euro every year.
## Free Software, not gratis software
### If you don't have money, no problem, send me a postcard from your city :)
#### but, don't make the mistake of many of *thinking only in gratis software* that so much damage has done to **Free Software**.
This extension have a cost of maintenance of 1 euros every year.
BCH: `qztd3l00xle5tffdqvh2snvadkuau2ml0uqm4n875d`
MONERO: `48ygK6NuuNAfwWfeAbeK8YP2ryPqxMAsUZBnfAhaHVkoHZ48JRYiQKKFd5GFMmaytyUpfxnyA95pWavjRgPUuKv1TUTvhkd`
BTC: `3FhiXcXmAesmQzrNEngjHFnvaJRhU1AGWV`
PayPal :( donate ATT elmau DOT net
ETH: `0x61a4f614a30ff686445751ed8328b82b77ecfc69`
LTC: `MBcgQ3LQJA4W2wsXknTdm2fxRSysLaBJHS`
* [Look the wiki](https://gitlab.com/mauriciobaeza/zaz-favorite/wikis/home)
* [Mira la wiki](https://gitlab.com/mauriciobaeza/zaz-favorite/wikis/home_es)
You have others cryptos, welcome too!

View File

@ -1 +1 @@
0.6.0
0.7.0

View File

@ -29,7 +29,7 @@ TYPE_EXTENSION = 1
NAME = 'ZAZFavorites'
# ~ https://semver.org/
VERSION = '0.6.0'
VERSION = '0.7.0'
# ~ Should be unique, used URL inverse

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<description xmlns="http://openoffice.org/extensions/description/2006" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:d="http://openoffice.org/extensions/description/2006">
<identifier value="net.elmau.zaz.Favorites"/>
<version value="0.6.0"/>
<version value="0.7.0"/>
<display-name>
<name lang="en">Favorites files</name>
<name lang="es">Archivos favoritos</name>

File diff suppressed because it is too large Load Diff

View File

@ -45,7 +45,6 @@ class Controllers(object):
name = self.d.grid[0, i]
path = self.d.grid[2, i]
label = f'{i+1}. {name}'
path = app.paths.join(path, name)
url = app.paths.to_url(path)
sm = {'Label': label, 'CommandURL': base.format(url)}
submenus.append(sm)