diff --git a/app/version.py b/app/version.py index 3c1896d..680fa38 100644 --- a/app/version.py +++ b/app/version.py @@ -1,3 +1,3 @@ from packaging.version import Version -version = Version('0.5.2') +version = Version('0.6.0') diff --git a/build.py b/build.py index 3da23e6..c71fa8f 100644 --- a/build.py +++ b/build.py @@ -63,7 +63,7 @@ def build(signing_key=None): # Notarize os.system(f'xcrun notarytool submit --wait --keychain-profile "{keychain_profile}" --verbose dist/{zip_name}') - input(f'Check whether notarization was successful. You can check further logs using "xcrun notarytool log --keychain-profile {keychain_profile} "') + input(f'Check whether notarization was successful using \n\t xcrun notarytool history --keychain-profile {keychain_profile}.\nYou can check debug logs using \n\t xcrun notarytool log --keychain-profile "{keychain_profile}" ') # Staple os.system(f'xcrun stapler staple dist/{app_name}.app') @@ -109,6 +109,7 @@ def compile(signing_key=None): # Manually including source code and submodules because app doesn't launch without it '--add-data=app/*.py:.', '--add-data=app/utils/*.py:utils', # Submodules need to be included manually + '--add-data=app/models/*.py:models', # Submodules need to be included manually app_script ]