diff options
| -rw-r--r-- | Lib/TruFont.spec | 6 | ||||
| -rw-r--r-- | Lib/build.sh | 2 | ||||
| -rw-r--r-- | Lib/defconQt/__init__.py | 2 | ||||
| -rw-r--r-- | Lib/defconQt/__main__.py | 4 |
4 files changed, 6 insertions, 8 deletions
diff --git a/Lib/TruFont.spec b/Lib/TruFont.spec index 39f0afe..83643ac 100644 --- a/Lib/TruFont.spec +++ b/Lib/TruFont.spec @@ -24,12 +24,12 @@ exe = EXE(pyz, debug=False, strip=None, upx=True, - console=False, - icon='defconQt/resources/app.ico') + console=False, + icon='defconQt/resources/app.ico') app = BUNDLE(exe, name='TruFont.app', icon='defconQt/resources/app.icns', - bundle_identifier=None, + bundle_identifier='io.github.trufont', info_plist={ 'NSHighResolutionCapable': 'True', 'LSBackgroundOnly': '0' diff --git a/Lib/build.sh b/Lib/build.sh index b2ab054..6d03b6a 100644 --- a/Lib/build.sh +++ b/Lib/build.sh @@ -1 +1 @@ -pyinstaller --noconsole --name "TruFont" --onefile --icon="defconQt/resources/app.ico" --osx-bundle-identifier=io.github.trufont TruFont.spec +pyinstaller --onefile TruFont.spec diff --git a/Lib/defconQt/__init__.py b/Lib/defconQt/__init__.py index 9f7a875..d3ec452 100644 --- a/Lib/defconQt/__init__.py +++ b/Lib/defconQt/__init__.py @@ -1 +1 @@ -version = "0.1.0" +__version__ = "0.2.0" diff --git a/Lib/defconQt/__main__.py b/Lib/defconQt/__main__.py index 663a4b7..270764d 100644 --- a/Lib/defconQt/__main__.py +++ b/Lib/defconQt/__main__.py @@ -14,13 +14,11 @@ def main(): else: font = None - # from pycallgraph import PyCallGraph - # from pycallgraph.output import GraphvizOutput representationFactories.registerAllFactories() - # with PyCallGraph(output=GraphvizOutput()): app = Application(sys.argv) # TODO: http://stackoverflow.com/a/21330349/2037879 app.setOrganizationName("A. Tétar & Co.") + app.setOrganizationDomain("trufont.github.io") app.setApplicationName("TruFont") app.setWindowIcon(QIcon(":/resources/app.png")) window = MainWindow(font) |
