Compare commits

...

8 Commits

Author SHA1 Message Date
mahee96
bc617b476d updated submodule 2026-06-14 05:46:20 +05:30
mahee96
d12d9b7117 updated submodule 2026-06-14 05:43:52 +05:30
mahee96
466b8fa658 fix CI - deploy account for apps-v2 2026-06-14 05:39:34 +05:30
mahee96
46eae1cb9f fix CI - deploy account for apps-v2 2026-06-14 05:14:55 +05:30
mahee96
7eb0da332d updated roxas submodule ref to SideStore's 2026-06-14 05:06:48 +05:30
mahee96
710dea8b28 roxas was out of sync 2026-06-14 05:01:55 +05:30
mahee96
51233911cc roxas was otut of sync 2026-06-14 03:59:59 +05:30
mahee96
b13d0abca9 - xcode 27 support (bumped ios, tvOS minSDK to 15) 2026-06-14 03:52:39 +05:30
6 changed files with 8 additions and 8 deletions

2
.gitmodules vendored
View File

@@ -27,7 +27,7 @@
[submodule "Dependencies/Roxas"]
path = Dependencies/Roxas
url = https://github.com/rileytestut/Roxas.git
url = https://github.com/SideStore/Roxas.git
[submodule "Dependencies/libimobiledevice"]
path = Dependencies/libimobiledevice
url = https://github.com/SideStore/libimobiledevice

View File

@@ -2165,7 +2165,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.2;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LLVM_LTO = YES_THIN;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
@@ -2232,7 +2232,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 12.2;
IPHONEOS_DEPLOYMENT_TARGET = 15.0;
LLVM_LTO = YES_THIN;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;

View File

@@ -225,7 +225,7 @@ NSErrorUserInfoKey const ALTNSCodingPathKey = @"NSCodingPath";
if (appName == nil || osVersion == nil)
{
return NSLocalizedString(@"Your device must be running iOS 12.2 or later to install SideStore.", @"");
return NSLocalizedString(@"Your device must be running iOS 15.0 or later to install SideStore.", @"");
}
return [NSString stringWithFormat:NSLocalizedString(@"%@ requires %@ or later.", @""), appName, osVersion];

View File

@@ -286,8 +286,8 @@ def deploy(repo, source_json, release_tag, marketing_version):
if not source_json_path.exists():
raise SystemExit(f"{source_json} missing inside repo")
run("git config user.name 'GitHub Actions'", check=False)
run("git config user.email 'github-actions@github.com'", check=False)
run("git config user.name 'github-actions[bot]'", check=False, cwd=repo)
run("git config user.email '41898282+github-actions[bot]@users.noreply.github.com'", check=False, cwd=repo)
# ------------------------------------------------------
run("git fetch origin main", check=False, cwd=repo)