+ increased default height of the dialogs to select an element from a list + settings to expand codeboxes automatically now separated for width and height + fixed on windows copy table and paste into microsoft word results in plain text paste + collapsible headers, when copy/cut a collapsed header ensure that the hidden section is also set in the clipboard (#2389) + collapsible headers, when copy/cut a collapsed header ensure that the hidden section is also set in the clipboard + use constants defined globally rather than copy/paste string literals + remove text formtting to also remove TOC anchors (#2389) + collapsible headers, changed expanded/collapsed icon to arrows (#2389) + collapsible headers, expand automatically when moving a row of text into a collapsed secion (#2389) - Remove update-desktop-files BuildRequies and %suse_update_desktop_file from spec file. - Implement metainfo and .desktop checks, add desktop-file-utils and appstream-glib to BuildRequires - Added cherrytree-fix-metainfo-write.patch to fix metainfo XML header generation during build - Update to version 1.3.0+0: + fixed table export to csv with empty cells (#2028) + pt_BR 100% + multifile storage, option of static embedded file path, fix insert in new node that was never saved (#2354) + remove use of libcpputest-dev (#2645) + es 100% + tr 100% + fixed search missing first match after a codebox (#2631) + bg, ro 100% + codebox toolbar button 'Copy Code' now marked for translation (##2641) OBS-URL: https://build.opensuse.org/package/show/GNOME:Apps/cherrytree?expand=0&rev=201
15 lines
541 B
Diff
15 lines
541 B
Diff
diff --git a/scripts/metainfo_xml_write.py b/scripts/metainfo_xml_write.py
|
|
index d199038..0d3ada5 100755
|
|
--- a/scripts/metainfo_xml_write.py
|
|
+++ b/scripts/metainfo_xml_write.py
|
|
@@ -39,7 +39,7 @@ def main(args):
|
|
assert len(releases) == 1
|
|
releases[0].text = "\n "
|
|
release_Element = ET.SubElement(releases[0], "release", version=VERSION, date=DATE)
|
|
- tree.write(METAINFO_XML_FILEPATH)
|
|
+ tree.write(METAINFO_XML_FILEPATH, xml_declaration=True, method='xml', encoding='UTF-8')
|
|
|
|
if __name__ == '__main__':
|
|
import sys
|
|
|