Skip to content

Commit bc4142d

Browse files
author
DevelopLab
committed
1. Fixed iOS 15 enable profile incorrect issue.
1 parent 23ae7cb commit bc4142d

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

EnableQUIC.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
148148
CLANG_ENABLE_MODULES = YES;
149149
CODE_SIGN_STYLE = Automatic;
150-
CURRENT_PROJECT_VERSION = 3;
150+
CURRENT_PROJECT_VERSION = 4;
151151
DEVELOPMENT_TEAM = X2WABLB38D;
152152
GENERATE_INFOPLIST_FILE = YES;
153153
HEADER_SEARCH_PATHS = "";
@@ -163,7 +163,7 @@
163163
"$(inherited)",
164164
"@executable_path/Frameworks",
165165
);
166-
MARKETING_VERSION = 1.2;
166+
MARKETING_VERSION = 1.2.1;
167167
PRODUCT_BUNDLE_IDENTIFIER = com.developlab.EnableQUIC;
168168
PRODUCT_NAME = "$(TARGET_NAME)";
169169
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
@@ -185,7 +185,7 @@
185185
ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
186186
CLANG_ENABLE_MODULES = YES;
187187
CODE_SIGN_STYLE = Automatic;
188-
CURRENT_PROJECT_VERSION = 3;
188+
CURRENT_PROJECT_VERSION = 4;
189189
DEVELOPMENT_TEAM = X2WABLB38D;
190190
GENERATE_INFOPLIST_FILE = YES;
191191
HEADER_SEARCH_PATHS = "";
@@ -201,7 +201,7 @@
201201
"$(inherited)",
202202
"@executable_path/Frameworks",
203203
);
204-
MARKETING_VERSION = 1.2;
204+
MARKETING_VERSION = 1.2.1;
205205
PRODUCT_BUNDLE_IDENTIFIER = com.developlab.EnableQUIC;
206206
PRODUCT_NAME = "$(TARGET_NAME)";
207207
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";

EnableQUIC/FileUtils.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ class FileUtils {
4141
// 默认配置
4242
var defaultConfigItems: [(String, Bool)] = []
4343

44-
if #available(iOS 16.0, *) {
44+
if #available(iOS 15.0, *) { // iOS 15和iOS 16是一样的配置
4545
defaultConfigItems = [
4646
("enable_quic", true),
4747
("disable_quic_race", false),
4848
("disable_quic_race5", false)
4949
]
50-
} else {
50+
} else { // iOS 14的配置
5151
defaultConfigItems = [
5252
("disable_quic_race", false),
5353
]

EnableQUIC/MainViewController.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import AudioToolbox
33

44
class MainViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {
55

6-
let versionCode = "1.2"
6+
let versionCode = "1.2.1"
77

88
var tableView = UITableView()
99

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ before-package::
2828
# 包装完成后重命名为 .tipa
2929
after-package::
3030
@echo -e "\033[32mRenaming .ipa to .tipa...\033[0m"
31-
@mv ./packages/com.developlab.enablequic_1.2.ipa ./packages/com.developlab.enablequic_1.2.tipa || @echo -e "\033[31mNo .ipa file found.\033[0m"
31+
@mv ./packages/com.developlab.enablequic_1.2.1.ipa ./packages/com.developlab.enablequic_1.2.1.tipa || @echo -e "\033[31mNo .ipa file found.\033[0m"
3232
@echo -e "\033[1;32m\n** Build Succeeded **\n\033[0m"
3333

control

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: com.developlab.enablequic
22
Name: EnableQUIC
3-
Version: 1.2
3+
Version: 1.2.1
44
Architecture: iphoneos-arm
55
Description: iOS Tweak enable QUIC
66
Maintainer: developlab

0 commit comments

Comments
 (0)