Skip to content

Commit b6cc82a

Browse files
final fixes for release 2.0
1 parent e75f911 commit b6cc82a

File tree

3 files changed

+16
-9
lines changed

3 files changed

+16
-9
lines changed

setup.py

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,31 @@
44

55
from setuptools import setup
66

7+
VERSION = "2.0.0"
8+
APP_NAME="KanbanView"
79
APP = ['src/things3_app.py']
8-
DATA_FILES = [('resources', ['resources/*']),
10+
DATA_FILES = [('resources', ["resources/logo.png"]),
11+
('resources', ["resources/kanban.js"]),
12+
('resources', ["resources/kanban.css"]),
13+
('resources', ["resources/kanban.html"]),
14+
('resources', ["resources/favicon.ico"]),
915
'src/things3.py', 'src/things3_api.py']
1016
OPTIONS = {
1117
'argv_emulation': True,
12-
'plist': {'CFBundleName': "KanbanView",
13-
'CFBundleDisplayName': "KanbanView",
14-
'CFBundleGetInfoString': "KanbanView",
18+
'plist': {'CFBundleName': APP_NAME,
19+
'CFBundleDisplayName': APP_NAME,
20+
'CFBundleGetInfoString': APP_NAME,
1521
'CFBundleIdentifier': "ws.willner.kanbanview",
16-
'CFBundleVersion': "2.0.0",
17-
'CFBundleShortVersionString': "2.0.0",
22+
'CFBundleVersion': VERSION,
23+
'CFBundleShortVersionString': VERSION,
1824
'NSHumanReadableCopyright':'Copyright 2020 Alexander Willner'},
1925
'optimize':'2'
2026
}
2127

2228
setup(
2329
app=APP,
24-
name='KanbanView',
30+
name=APP_NAME,
31+
version=VERSION,
2532
data_files=DATA_FILES,
2633
options={'py2app': OPTIONS},
2734
setup_requires=['py2app'],

src/things3_app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
__copyright__ = "Copyright 2018 Luc Beaulieu / 2020 Alexander Willner"
1111
__credits__ = ["Luc Beaulieu", "Alexander Willner"]
1212
__license__ = "unknown"
13-
__version__ = "1.2.0"
13+
__version__ = "2.0.0"
1414
__maintainer__ = "Alexander Willner"
1515
__email__ = "[email protected]"
1616
__status__ = "Development"

src/things3_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.2.0"
12+
__version__ = "2.0.0"
1313
__maintainer__ = "Alexander Willner"
1414
__email__ = "[email protected]"
1515
__status__ = "Development"

0 commit comments

Comments
 (0)