diff --git a/Projects/App/Project.swift b/Projects/App/Project.swift index be3a2468..dc154f36 100644 --- a/Projects/App/Project.swift +++ b/Projects/App/Project.swift @@ -27,7 +27,7 @@ let project = Project.makeModule( "UILaunchStoryboardName": "LaunchScreen", "BGTaskSchedulerPermittedIdentifiers": "com.oksusu.susu.app", "CFBundleShortVersionString": "1.0.0", - "CFBundleVersion": "2024071710", + "CFBundleVersion": "2024072011", "UIUserInterfaceStyle": "Light", "ITSAppUsesNonExemptEncryption": "No", "UISupportedInterfaceOrientations": .array([ diff --git a/Scripts/EditArchiveVersion.py b/Scripts/EditArchiveVersion.py index bc4d4790..06cd5718 100755 --- a/Scripts/EditArchiveVersion.py +++ b/Scripts/EditArchiveVersion.py @@ -30,6 +30,8 @@ def version_weight(current) : return [0, 1, 0] elif current == "p": return [0, 0, 1] + elif current == "B" or current == "b" : + return [0, 0, 0] else : raise TypeError @@ -109,6 +111,6 @@ def check_version_regular_expression(version): if is_new_version == "y": - versionString = input("메이저 버전(M), 마이너 버전(m), 패치 버전(p): ") + versionString = input("메이저 버전(M), 마이너 버전(m), 패치 버전(p), Only Build Version(b/B): ") set_version(versionString) - print_current_version() \ No newline at end of file + print_current_version()