Skip to content

Commit 280ee96

Browse files
committed
Updated version
1 parent 7cc981d commit 280ee96

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from packaging.version import Version
22

3-
version = Version('0.6.0')
3+
version = Version('0.6.1')

build.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def build(signing_key=None):
6060

6161
if macos and signing_key:
6262
keychain_profile = signing_key.split('(')[0].strip()
63-
63+
6464
# Notarize
6565
os.system(f'xcrun notarytool submit --wait --keychain-profile "{keychain_profile}" --verbose dist/{zip_name}')
6666
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}" <run-id>')
@@ -152,7 +152,7 @@ def zip():
152152
zip_name = zip_name + '-MacOS-M-Series' + '.zip'
153153
else:
154154
zip_name = zip_name + '-MacOS-Intel' + '.zip'
155-
155+
156156
# Special zip command for macos to keep the complex directory metadata intact to keep the codesigning valid
157157
zip_cli_command = 'cd dist/; ditto -c -k --sequesterRsrc --keepParent ' + app_name + '.app ' + zip_name
158158
elif platform.system() == 'Linux':
@@ -170,7 +170,7 @@ def zip():
170170
if __name__ == '__main__':
171171
apple_code_signing_key = None
172172
if len(sys.argv) > 1:
173-
apple_code_signing_key = sys.argv[1] # Developer ID Application: ... (...)
173+
apple_code_signing_key = sys.argv[1] # python3 build.py "Developer ID Application: ... (...)"
174174
print("apple_code_signing_key: ", apple_code_signing_key)
175175
elif len(sys.argv) == 1 and platform.system() == 'Darwin':
176176
input("Are you sure you don't wanna sign your code? ")

0 commit comments

Comments
 (0)