File tree 4 files changed +20
-1
lines changed 4 files changed +20
-1
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,6 @@ __pycache__
4
4
* .pyc
5
5
* .pro
6
6
notes.md
7
+ * .zip
8
+ * .zip.asc
9
+ release /
Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
- ## 0.0.1 (2019-XX-XX )
3
+ ## 0.0.1 (2019-09-01 )
4
4
5
5
* Initial release.
Original file line number Diff line number Diff line change 19
19
# </LICENSE_BLOCK>
20
20
21
21
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
+
22
37
translate :
23
38
python3 -c " import makefile; makefile.translate()"
Original file line number Diff line number Diff line change 21
21
[general]
22
22
name=QGIST Workbench
23
23
description=Organizing Toolbars
24
+ about=QGIST Workbench is a QGIS plugin for organizing toolbars and dockwidgets.
24
25
version=0.0.1
25
26
qgisMinimumVersion=3.0
26
27
author=QGIST project
You can’t perform that action at this time.
0 commit comments