- Fix: corrected device IP in vpn configuration screen + corrected altsign package to use master-branch

This commit is contained in:
mahee96
2026-05-05 12:15:45 +05:30
parent 7f2be4cd58
commit 20714673b2
2 changed files with 3 additions and 3 deletions

View File

@@ -2427,8 +2427,8 @@
isa = XCRemoteSwiftPackageReference; isa = XCRemoteSwiftPackageReference;
repositoryURL = "https://github.com/SideStore/AltSign"; repositoryURL = "https://github.com/SideStore/AltSign";
requirement = { requirement = {
kind = upToNextMajorVersion; branch = master;
minimumVersion = 0.1.0; kind = branch;
}; };
}; };
A82067C22D03E0DE00645C0D /* XCRemoteSwiftPackageReference "SemanticVersion" */ = { A82067C22D03E0DE00645C0D /* XCRemoteSwiftPackageReference "SemanticVersion" */ = {

View File

@@ -98,7 +98,7 @@ final class TunnelConfig: ObservableObject {
static let shared = TunnelConfig() static let shared = TunnelConfig()
private static let defaultOverrideIP: String = { private static let defaultOverrideIP: String = {
if #available(iOS 26.4, *) { return "192.168.1.50" } // if #available(iOS 26.4, *) { return "192.168.1.50" }
return "10.7.0.1" return "10.7.0.1"
}() }()