Merge branch 'develop'

Update easymacro.py
This commit is contained in:
Mauricio Baeza 2019-09-27 14:57:48 -05:00
commit e8ca3780fd
10 changed files with 1495 additions and 308 deletions

View File

@ -1,3 +1,8 @@
v 0.2.0 [27-sep-2019]
---------------------
- Update easymacro.py
v 0.1.0 [19-sep-2019]
---------------------
- Initial version

View File

@ -15,6 +15,9 @@ BCH: `1RPLWHJW34p7pMQV1ft4x7eWhAYw69Dsb`
BTC: `3Fe4JuADrAK8Qs7GDAxbSXR8E54avwZJLW`
PayPal :( donate ATT elmau DOT net
* [See the wiki](https://gitlab.com/mauriciobaeza/zaz-favorite/wikis/home)
* [Look the wiki](https://gitlab.com/mauriciobaeza/zaz-favorite/wikis/home)
* [Mira la wiki](https://gitlab.com/mauriciobaeza/zaz-favorite/wikis/home_es)

View File

@ -1,2 +1,2 @@
0.1.0
0.2.0

View File

@ -26,7 +26,7 @@ import logging
TYPE_EXTENSION = 1
# ~ https://semver.org/
VERSION = '0.1.0'
VERSION = '0.2.0'
# ~ Your great extension name, not used spaces
NAME = 'ZAZFavorites'

File diff suppressed because it is too large Load Diff

Binary file not shown.

Binary file not shown.

View File

@ -43,7 +43,6 @@ class Controllers(object):
self.d.grid.sort(0)
return
@app.catch_exception
def button_save_action(self, event):
msg = _('¿You want save your favorites?')
if not app.question(msg, self.TITLE):
@ -167,7 +166,7 @@ class ZAZFavorites(unohelper.Base, XJobExecutor):
}
dlg.add_control(args)
dlg.grid.set_column_image(1, app.join(self.IMAGES, 'delete.png'))
paths = app.get_config('paths')
paths = app.get_config('paths', [])
for path in paths:
p, filename, n, e = app.get_info_path(path)
dlg.grid.add_row((filename, '', path))

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.1.0" />
<version value="0.2.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