From 0e6c430ee64d920893d3d9243bb920dd01c44f4c Mon Sep 17 00:00:00 2001 From: El Mau Date: Wed, 24 Aug 2022 12:47:45 -0500 Subject: [PATCH] Update url git --- CHANGELOG | 5 +++++ VERSION | 2 +- source/conf.py.example | 4 ++-- source/zaz.py | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8f0ee09..c14d2f7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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. diff --git a/VERSION b/VERSION index 1cf0537..5a03fb7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.19.0 +0.20.0 diff --git a/source/conf.py.example b/source/conf.py.example index 56f7953..2a8c49e 100644 --- a/source/conf.py.example +++ b/source/conf.py.example @@ -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 diff --git a/source/zaz.py b/source/zaz.py index 254bec1..fefe34e 100755 --- a/source/zaz.py +++ b/source/zaz.py @@ -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)