Skip to content

Commit b280138

Browse files
committed
Version 1.1
1 parent 9e81263 commit b280138

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from cx_Freeze import setup, Executable
2-
import platform
2+
import config
33

44
includefiles = []
55

@@ -28,7 +28,7 @@
2828
"""
2929
python setup.py bdist_mac
3030
bdist_dmg
31-
codesign --deep --force --verify --verbose --sign "Milonga" milonga-1.0.app
31+
codesign --deep --force --verify --verbose --sign "Milonga" build/milonga-1.1.app
3232
"""
3333

3434
plist_items = [
@@ -40,7 +40,7 @@
4040

4141
setup(
4242
name="Milonga",
43-
version="1.0",
43+
version=config.get_version(),
4444
description = 'Milonga DJ App',
4545
author = 'Paweł Wąsowicz',
4646
options = {'bdist_dmg':{'show_icon_preview':True},

setup_windows.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import sys
22
from cx_Freeze import setup, Executable
3+
import config
34

45
includefiles = [
56
('icons/delete.png', 'icons/delete.png'),
@@ -65,7 +66,7 @@
6566
# Konfiguracja `setup`
6667
setup(
6768
name="Milonga",
68-
version="1.0",
69+
version=config.get_version(),
6970
description='Milonga DJ App',
7071
author='Paweł Wąsowicz',
7172
options={

0 commit comments

Comments
 (0)