Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Apr 17, 2024
1 parent aa3b1ee commit 8a8d08a
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion animation_workbench/metadata.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
10 changes: 8 additions & 2 deletions package-plugin.sh
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 8a8d08a

Please sign in to comment.