Skip to content
Snippets Groups Projects
Commit 5c2438c0 authored by Benjamin Jakimow's avatar Benjamin Jakimow
Browse files

increased version number

update changelog
create_plugin.py: avoids showing XML output to stdout

Signed-off-by: Benjamin Jakimow's avatarBenjamin Jakimow benjamin.jakimow@geo.hu-berlin.de <benjamin.jakimow@geo.hu-berlin.de>
parent 343cae29
No related branches found
No related tags found
No related merge requests found
==============
Changelog
==============
2021-02-02 (version 1.16):
* fixed smaller issues
* improved fast forward / backward button: now shifts by number of opened observation dates, or maps, respectively
* improved next / previous feature button: options allow to (i) move to the next feature and (ii)
update observation date visibility according to the new map extent
2020-11-23 (version 1.15):
* source files can be opened by drag and drop to the time series tree view
* maps can be organized in multiple rows per map view
* maps can be organized in multiple rows per map view (rows x columns)
* map descriptions can be defined with QgsExpressions, e.g. '@map_date' to show the date
* quick labels: CTRL + right mouse button opens map menu even when the feature modify map tool is activates
* source visibility update can be run on entire time series or (new and faster) for the next time steps only
......
==============
Changelog
==============
2021-02-02 (version 1.16):
* fixed smaller issues
* improved fast forward / backward button: now shifts by number of opened observation dates, or maps, respectively
* improved next / previous feature button: options allow to (i) move to the next feature and (ii)
update observation date visibility according to the new map extent
2020-11-23 (version 1.15):
* source files can be opened by drag and drop to the time series tree view
* maps can be organized in multiple rows per map view
* maps can be organized in multiple rows per map view (rows x columns)
* map descriptions can be defined with QgsExpressions, e.g. '@map_date' to show the date
* quick labels: CTRL + right mouse button opens map menu even when the feature modify map tool is activates
* source visibility update can be run on entire time series or (new and faster) for the next time steps only
......
......@@ -24,7 +24,7 @@ import pathlib
from qgis.core import QgsApplication, Qgis
from qgis.PyQt.QtGui import QIcon
__version__ = '1.15' # sub-subversion number is added automatically
__version__ = '1.16' # sub-subversion number is added automatically
LICENSE = 'GNU GPL-3'
TITLE = 'EO Time Series Viewer'
LOG_MESSAGE_TAG = TITLE
......
......@@ -28,6 +28,7 @@ import re
import shutil
import typing
import site
import io
import docutils.core
from xml.dom import minidom
site.addsitedir(pathlib.Path(__file__).parents[1])
......@@ -214,9 +215,11 @@ def rst2html(pathMD: pathlib.Path) -> str:
overrides = {'stylesheet': None,
'embed_stylesheet': False,
'output_encoding': 'utf-8',
'dump_pseudo_xml': False,
}
html = docutils.core.publish_file(source_path=pathMD, writer_name='html5', settings_overrides=overrides)
buffer = io.StringIO()
html = docutils.core.publish_file(source_path=pathMD, writer_name='html5', settings_overrides=overrides, destination=buffer)
xml = minidom.parseString(html)
# remove headline
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment