Skip to content

Commit 90062d9

Browse files
committed
gst
1 parent ceb2c1c commit 90062d9

File tree

4 files changed

+4
-13
lines changed

4 files changed

+4
-13
lines changed

V2rayU.xcodeproj/project.pbxproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -834,7 +834,7 @@
834834
CODE_SIGN_STYLE = Manual;
835835
COMBINE_HIDPI_IMAGES = YES;
836836
COPY_PHASE_STRIP = NO;
837-
CURRENT_PROJECT_VERSION = 4.2.3;
837+
CURRENT_PROJECT_VERSION = 4.2.4;
838838
DEFINES_MODULE = YES;
839839
DEVELOPMENT_TEAM = "";
840840
"DEVELOPMENT_TEAM[sdk=macosx*]" = "";
@@ -846,7 +846,7 @@
846846
"@executable_path/../Frameworks",
847847
);
848848
MACOSX_DEPLOYMENT_TARGET = 11.0;
849-
MARKETING_VERSION = 4.2.3;
849+
MARKETING_VERSION = 4.2.4;
850850
ONLY_ACTIVE_ARCH = YES;
851851
PRODUCT_BUNDLE_IDENTIFIER = net.yanue.V2rayU;
852852
PRODUCT_NAME = "$(TARGET_NAME)";
@@ -872,7 +872,7 @@
872872
CODE_SIGN_STYLE = Manual;
873873
COMBINE_HIDPI_IMAGES = YES;
874874
COPY_PHASE_STRIP = NO;
875-
CURRENT_PROJECT_VERSION = 4.2.3;
875+
CURRENT_PROJECT_VERSION = 4.2.4;
876876
DEFINES_MODULE = YES;
877877
DEVELOPMENT_TEAM = "";
878878
"DEVELOPMENT_TEAM[sdk=macosx*]" = "";
@@ -884,7 +884,7 @@
884884
"@executable_path/../Frameworks",
885885
);
886886
MACOSX_DEPLOYMENT_TARGET = 11.0;
887-
MARKETING_VERSION = 4.2.3;
887+
MARKETING_VERSION = 4.2.4;
888888
ONLY_ACTIVE_ARCH = NO;
889889
PRODUCT_BUNDLE_IDENTIFIER = net.yanue.V2rayU;
890890
PRODUCT_NAME = "$(TARGET_NAME)";

V2rayU/Import.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,6 @@ class ImportUri {
316316
if vmess.security.isEmpty {
317317
vmess.security = "none"
318318
}
319-
if vmess.flow.isEmpty {
320-
vmess.flow = "xtls-rprx-vision"
321-
}
322319
if vmess.sni.count == 0 {
323320
vmess.sni = vmess.address
324321
}

V2rayU/Uri.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -583,9 +583,6 @@ class VlessUri {
583583
break
584584
case "flow":
585585
self.flow = item.value as! String
586-
if self.flow.isEmpty {
587-
self.flow = "xtls-rprx-vision"
588-
}
589586
break
590587
case "encryption":
591588
self.encryption = item.value as! String

V2rayU/v2ray/V2rayConfig.swift

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -770,9 +770,6 @@ class V2rayConfig: NSObject {
770770
user.id = val["id"].stringValue
771771
user.flow = val["flow"].stringValue
772772
user.encryption = val["encryption"].stringValue
773-
if user.flow.isEmpty {
774-
user.flow = "xtls-rprx-vision"
775-
}
776773
if user.encryption.isEmpty {
777774
user.encryption = "none"
778775
}

0 commit comments

Comments
 (0)