diff --git a/animation_workbench/metadata.txt b/animation_workbench/metadata.txt index 6260bd5..dedab0c 100644 --- a/animation_workbench/metadata.txt +++ b/animation_workbench/metadata.txt @@ -2,9 +2,11 @@ name=QGIS Animation Workbench description=A plugin to let you build animations in QGIS about=QGIS Animation Bench exists because we wanted to use all the awesome cartography features in QGIS and make cool, animated maps! QGIS already includes the Temporal Manager which allows you to produce animations for time-based data. But what if you want to make animations where you travel around the map, zooming in and out, and perhaps making features on the map wiggle and jiggle as the animation progresses? That is what the animation workbench tries to solve... -version=1.3 +version=1.2 qgisMinimumVersion=3.0 author=Tim Sutton, Nyall Dawson, Jeremy Prior email=tim@kartoza.com repository=https://github.com/timlinux/QGISAnimationWorkbench +tracker=https://github.com/timlinux/QGISAnimationWorkbench/issues +homepage=https://timlinux.github.io/QGISAnimationWorkbench/ license=GPLv2 diff --git a/package-plugin.sh b/package-plugin.sh index 6ba0e13..30188e4 100755 --- a/package-plugin.sh +++ b/package-plugin.sh @@ -1,6 +1,12 @@ #!/usr/bin/env bash + +version=$(grep '^version=' animation_workbench/metadata.txt | cut -d '=' -f 2| tr -d '\n') +echo $version +version="1.2" +rm animation_workbench*.zip cd animation_workbench rm -rf __pycache__ core/__pycache__/ gui/__pycache__/ -zip -qq -r ../animation_workbench.zip * cd .. -ls -lah animation_workbench.zip +zip -r animation_workbench-${version}.zip animation_workbench +cd .. +ls -lah animation_workbench-${version}.zip