Attempt beta release

Fix naive compile issue.
This commit is contained in:
Davide De Rosa 2022-02-04 14:17:55 +01:00
parent e38a2598e2
commit 8f16bf376d
7 changed files with 8 additions and 12 deletions

View File

@ -1 +1 @@
2983
2984

View File

@ -1426,7 +1426,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 2983;
CURRENT_PROJECT_VERSION = 2984;
DEBUG_INFORMATION_FORMAT = dwarf;
ENABLE_BITCODE = NO;
ENABLE_STRICT_OBJC_MSGSEND = YES;
@ -1492,7 +1492,7 @@
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Developer";
CURRENT_PROJECT_VERSION = 2983;
CURRENT_PROJECT_VERSION = 2984;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
ENABLE_BITCODE = NO;
ENABLE_NS_ASSERTIONS = NO;

View File

@ -35,7 +35,7 @@
<key>CFBundleShortVersionString</key>
<string>1.18.0</string>
<key>CFBundleVersion</key>
<string>2983</string>
<string>2984</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSRequiresIPhoneOS</key>

View File

@ -282,11 +282,7 @@ class NetworkSettingsViewController: UITableViewController {
} else if field.tag == FieldTag.proxyPort.rawValue {
networkSettings.proxyPort = UInt16(text) ?? 0
} else if field.tag == FieldTag.proxyAutoConfigurationURL.rawValue {
if let string = text {
networkSettings.proxyAutoConfigurationURL = URL(string: string)
} else {
networkSettings.proxyAutoConfigurationURL = nil
}
networkSettings.proxyAutoConfigurationURL = URL(string: text)
} else if field.tag >= FieldTag.proxyBypass.rawValue {
let i = field.tag - FieldTag.proxyBypass.rawValue
if let _ = networkSettings.proxyBypassDomains {

View File

@ -34,7 +34,7 @@
<key>CFBundleShortVersionString</key>
<string>1.18.0</string>
<key>CFBundleVersion</key>
<string>2983</string>
<string>2984</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>

View File

@ -21,7 +21,7 @@
<key>CFBundleShortVersionString</key>
<string>1.18.0</string>
<key>CFBundleVersion</key>
<string>2983</string>
<string>2984</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>

View File

@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key>
<string>1.18.0</string>
<key>CFBundleVersion</key>
<string>2983</string>
<string>2984</string>
<key>LSMinimumSystemVersion</key>
<string>$(MACOSX_DEPLOYMENT_TARGET)</string>
<key>NSExtension</key>