diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 689bec0..7da5c3b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,4 +29,4 @@ jobs: # Runs all tests - name: Run tests - run: docker run --rm --net=host --volume `pwd`/Qaava:/app -w=/app -e QGIS_PLUGIN_IN_CI=1 qgis/qgis:final-3_14_1_focal sh -c "pip3 install -q pytest && xvfb-run -s '+extension GLX -screen 0 1024x768x24' pytest -v" + run: docker run --rm --net=host --volume `pwd`/GlobeBuilder:/app -w=/app -e QGIS_PLUGIN_IN_CI=1 qgis/qgis:final-3_14_1_focal sh -c "pip3 install -q pytest && xvfb-run -s '+extension GLX -screen 0 1024x768x24' pytest -v" diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..b7e1e7d --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,35 @@ +# CHANGELOG + +### 0.2.3 - 15/01/2020 + +* Initial release + +### 0.3.0 - 17/01/2020 + +* Rounder halo with default of 64 segments. +* New data sources: Sentinel-2 cloudless and Natural Earth 30 degree graticules + +### 0.4.0 - 24/01/2020 + +* Dockable window +* Visualization customization +* Option to center based on a layer +* Bug fixes + +### 0.5.0 - 11/02/2020 + +* Possibility to add Globe to any layout +* More accurate countries and graticules +* Improved UI and customization +* Simple tests + +### 0.6.0 - 23/09/2020 + +* More projections (might work depending on PROJ version) +* Fixed bug with changing origin of the globe +* Fixed rendering artefacts caused by graticules by generating those via processing algorithms +* Various bug fixes +* Use pytest and CI tests +* Automatic release process with qgis-plugin-ci + +## diff --git a/GlobeBuilder/definitions/projections.py b/GlobeBuilder/definitions/projections.py index ea6f8e2..bcd3763 100644 --- a/GlobeBuilder/definitions/projections.py +++ b/GlobeBuilder/definitions/projections.py @@ -1,7 +1,7 @@ from enum import Enum from typing import Tuple -from GlobeBuilder.qgis_plugin_tools.tools.i18n import tr +from ..qgis_plugin_tools.tools.i18n import tr class Projection: