-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 protected] | ||
repository=https://github.com/timlinux/QGISAnimationWorkbench | ||
tracker=https://github.com/timlinux/QGISAnimationWorkbench/issues | ||
homepage=https://timlinux.github.io/QGISAnimationWorkbench/ | ||
license=GPLv2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |