Skip to content

Commit

Permalink
gst
Browse files Browse the repository at this point in the history
  • Loading branch information
yanue committed Jul 22, 2024
1 parent ceb2c1c commit 90062d9
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 13 deletions.
8 changes: 4 additions & 4 deletions V2rayU.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.2.3;
CURRENT_PROJECT_VERSION = 4.2.4;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=macosx*]" = "";
Expand All @@ -846,7 +846,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 4.2.3;
MARKETING_VERSION = 4.2.4;
ONLY_ACTIVE_ARCH = YES;
PRODUCT_BUNDLE_IDENTIFIER = net.yanue.V2rayU;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand All @@ -872,7 +872,7 @@
CODE_SIGN_STYLE = Manual;
COMBINE_HIDPI_IMAGES = YES;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 4.2.3;
CURRENT_PROJECT_VERSION = 4.2.4;
DEFINES_MODULE = YES;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=macosx*]" = "";
Expand All @@ -884,7 +884,7 @@
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 11.0;
MARKETING_VERSION = 4.2.3;
MARKETING_VERSION = 4.2.4;
ONLY_ACTIVE_ARCH = NO;
PRODUCT_BUNDLE_IDENTIFIER = net.yanue.V2rayU;
PRODUCT_NAME = "$(TARGET_NAME)";
Expand Down
3 changes: 0 additions & 3 deletions V2rayU/Import.swift
Original file line number Diff line number Diff line change
Expand Up @@ -316,9 +316,6 @@ class ImportUri {
if vmess.security.isEmpty {
vmess.security = "none"
}
if vmess.flow.isEmpty {
vmess.flow = "xtls-rprx-vision"
}
if vmess.sni.count == 0 {
vmess.sni = vmess.address
}
Expand Down
3 changes: 0 additions & 3 deletions V2rayU/Uri.swift
Original file line number Diff line number Diff line change
Expand Up @@ -583,9 +583,6 @@ class VlessUri {
break
case "flow":
self.flow = item.value as! String
if self.flow.isEmpty {
self.flow = "xtls-rprx-vision"
}
break
case "encryption":
self.encryption = item.value as! String
Expand Down
3 changes: 0 additions & 3 deletions V2rayU/v2ray/V2rayConfig.swift
Original file line number Diff line number Diff line change
Expand Up @@ -770,9 +770,6 @@ class V2rayConfig: NSObject {
user.id = val["id"].stringValue
user.flow = val["flow"].stringValue
user.encryption = val["encryption"].stringValue
if user.flow.isEmpty {
user.flow = "xtls-rprx-vision"
}
if user.encryption.isEmpty {
user.encryption = "none"
}
Expand Down

0 comments on commit 90062d9

Please sign in to comment.