Skip to content

Commit d8b3782

Browse files
Release 1.1
1 parent a48f956 commit d8b3782

File tree

5 files changed

+16
-9
lines changed

5 files changed

+16
-9
lines changed

Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,12 @@ test:
4747
@echo "not implemented"
4848

4949
.PHONY: app
50-
app:
50+
app: clean
5151
@$(PYTHON) setup.py py2app -s --iconfile 'resources/icon.icns'
52+
@xattr -cr dist/KanbanView.app || true
53+
@hdiutil create dist/tmp.dmg -ov -volname "KanbanView" -fs HFS+ -srcfolder "dist"
54+
@hdiutil convert dist/tmp.dmg -format UDZO -o dist/KanbanView.dmg
55+
@rm dist/tmp.dmg
5256
@open dist
5357

5458
.PHONY: doc

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,16 @@ This script will create a visual task-level overview (Kanban) of what is on your
99

1010
![view2020](doc/view-2020.png)
1111

12-
This project has been refactored massively and the old documentation follows.
12+
## Application
13+
14+
If you want to start the application as a web service (with an auto-update GUI), you can either execute ```make run-server``` or download the App. However, as the App is not digitally signed, you need to execute the following command once, after you've copied it to the Applications folder:
15+
16+
```xattr -rd com.apple.quarantine /Applications/KanbanView.app```
1317

1418
## Content
1519

20+
This project has been refactored massively and the old documentation follows.
21+
1622
It is comprised of 3 files:
1723

1824
- a python script

setup.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
"""
2-
This is a setup.py script generated by py2applet
3-
4-
Usage:
5-
python setup.py py2app
2+
py2app configuration file.
63
"""
74

85
from setuptools import setup
96

107
APP = ['src/things3_to_kanban_server.py']
118
DATA_FILES = ['resources/style.css', 'resources/logo.png', 'resources/scripts.js', 'src/things3_to_kanban.py', 'resources/kanban.html']
129
OPTIONS = {
13-
'plist': {'CFBundleShortVersionString':'2.0.0'},
10+
'plist': {'CFBundleShortVersionString':'1.1.0'},
1411
'optimize':'2'
1512
}
1613

src/things3_to_kanban.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__copyright__ = "Copyright 2018 Luc Beaulieu / 2020 Alexander Willner"
1010
__credits__ = ["Luc Beaulieu", "Alexander Willner"]
1111
__license__ = "unknown"
12-
__version__ = "1.0.0"
12+
__version__ = "1.1.0"
1313
__maintainer__ = "Alexander Willner"
1414
__email__ = "[email protected]"
1515
__status__ = "Development"

src/things3_to_kanban_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
__copyright__ = "Copyright 2020 Alexander Willner"
1010
__credits__ = ["Alexander Willner"]
1111
__license__ = "MIT"
12-
__version__ = "0.0.1"
12+
__version__ = "1.1.0"
1313
__maintainer__ = "Alexander Willner"
1414
__email__ = "[email protected]"
1515
__status__ = "Development"

0 commit comments

Comments
 (0)