Skip to content

Commit 430410f

Browse files
committed
0.0.1 release
2 parents 9cb00cf + a850479 commit 430410f

File tree

4 files changed

+20
-1
lines changed

4 files changed

+20
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ __pycache__
44
*.pyc
55
*.pro
66
notes.md
7+
*.zip
8+
*.zip.asc
9+
release/

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes
22

3-
## 0.0.1 (2019-XX-XX)
3+
## 0.0.1 (2019-09-01)
44

55
* Initial release.

makefile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,20 @@
1919
# </LICENSE_BLOCK>
2020

2121

22+
plugin = workbench
23+
24+
release:
25+
make clean
26+
mkdir -p release/$(plugin)
27+
cp --parents -a $$(git ls-tree -r $$(git rev-parse --abbrev-ref HEAD) --name-only) release/$(plugin)/
28+
cd release/; zip -r $(plugin).zip $(plugin); gpg --detach-sign -a $(plugin).zip
29+
30+
clean:
31+
-rm -r release
32+
find qgist/ -name '*.pyc' -exec rm -f {} +
33+
find qgist/ -name '*.pyo' -exec rm -f {} +
34+
find qgist/ -name '*~' -exec rm -f {} +
35+
find ./ -name '__pycache__' -exec rm -fr {} +
36+
2237
translate:
2338
python3 -c "import makefile; makefile.translate()"

metadata.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
[general]
2222
name=QGIST Workbench
2323
description=Organizing Toolbars
24+
about=QGIST Workbench is a QGIS plugin for organizing toolbars and dockwidgets.
2425
version=0.0.1
2526
qgisMinimumVersion=3.0
2627
author=QGIST project

0 commit comments

Comments
 (0)