Skip to content

Commit abefb44

Browse files
author
archibate
committed
fix bad version
1 parent a6d0253 commit abefb44

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

dist.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
print('==> invoking pyinstaller for packaging')
2626
subprocess.check_call([sys.executable, '-m', 'PyInstaller', 'scripts/launcher_{}.spec'.format(os_name), '-y'] + sys.argv[1:])
2727

28-
print('==> appending version informations')
29-
with open('dist/launcher/zenqt/__init__.py', 'a') as f:
30-
f.write('\nversion = {}\n'.format(repr(version)))
28+
#print('==> appending version informations')
29+
#with open('dist/launcher/zenqt/__init__.py', 'a') as f:
30+
# f.write('\nversion = {}\n'.format(repr(version)))
3131

3232
zipname = 'dist/zeno-{}-{}'.format(os_name, version)
3333
print('==> creating zip archive at {}'.format(zipname))

zenqt/ui/window.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,9 @@ def __init__(self, parent=None):
6161
self.timer.timeout.connect(self.on_update)
6262

6363
def setWindowTitleWithPostfix(self, postfix):
64-
from .. import version
65-
title = 'ZENO Qt Editor ({})'.format(version)
64+
#from .. import version
65+
#title = 'ZENO Qt Editor ({})'.format(version)
66+
title = 'ZENO Qt Editor'
6667
if postfix:
6768
title = '{} - [{}]'.format(title, postfix)
6869
self.setWindowTitle(title)

0 commit comments

Comments
 (0)