Skip to content

Commit

Permalink
[Project] 빌드 버전 올리는 스크립트 수정, 배포 버전 수정 (#331)
Browse files Browse the repository at this point in the history
  • Loading branch information
MaraMincho authored Jul 21, 2024
1 parent 1489606 commit 1c68e10
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Projects/App/Project.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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([
Expand Down
6 changes: 4 additions & 2 deletions Scripts/EditArchiveVersion.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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()
print_current_version()

0 comments on commit 1c68e10

Please sign in to comment.