Update url git

This commit is contained in:
El Mau 2022-08-24 12:47:45 -05:00
parent 9190dbb687
commit 0e6c430ee6
4 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
v 0.20.0 [24-ago-2022]
- Update git url.
v 0.19.0 [25-sep-2021]
- Writer. Insert shapes. Set zoom.

View File

@ -1 +1 @@
0.19.0
0.20.0

View File

@ -49,8 +49,8 @@ PATH_MSGMERGE = 'msgmerge'
# ~ Show in extension manager
PUBLISHER = {
'en': {'text': 'El Mau', 'link': 'https://gitlab.com/mauriciobaeza'},
'es': {'text': 'El Mau', 'link': 'https://gitlab.com/mauriciobaeza'},
'en': {'text': 'El Mau', 'link': 'https://git.cuates.net/elmau'},
'es': {'text': 'El Mau', 'link': 'https://git.cuates.net/elmau'},
}
# ~ Name in this folder for copy

View File

@ -166,7 +166,7 @@ class LiboXML(object):
ET.SubElement(doc, key, data[key])
key = 'minimal'
if data[key]:
if 'minimal' in data and data[key]:
node = ET.SubElement(doc, 'dependencies')
attr = {'value': data[key], 'l:name': f'LibreOffice {data[key]}'}
ET.SubElement(node, 'LibreOffice-minimal-version', attr)