Skip to content
This repository was archived by the owner on Jan 12, 2024. It is now read-only.

Commit 972f791

Browse files
authored
Merge pull request #158 from Chandler-Lu/master
Bug fix #155 & Core updated
2 parents bd19ac3 + 8f75fe7 commit 972f791

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

V2RayX/ConfigWindowController.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ - (IBAction)importFromQRCodeV2rayNV2:(id)sender {
548548
default:
549549
break;
550550
}
551-
if ([sharedServer objectForKey:@"tls"]||[sharedServer[@"tls"] isEqualToString:@"tls"] ) {
551+
if ([sharedServer objectForKey:@"tls"] && [sharedServer[@"tls"] isEqualToString:@"tls"]) {
552552
streamSettings[@"security"] = @"tls";
553553
}
554554
newProfile.streamSettings = streamSettings;

V2RayX/config-sample.plist

+13
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,19 @@
162162
<key>domain</key>
163163
<array>
164164
<string>localhost</string>
165+
<string>domain:mzstatic.com</string>
166+
<string>domain:me.com</string>
167+
<string>domain:lookup-api.apple.com</string>
168+
<string>domain:itunes.com</string>
169+
<string>domain:itunes.apple.com</string>
170+
<string>domain:icloud-content.com</string>
171+
<string>domain:icloud.com</string>
172+
<string>domain:cdn-apple.com</string>
173+
<string>domain:apple-cloudkit.com</string>
174+
<string>domain:apple.com</string>
175+
<string>domain:apple.co</string>
176+
<string>domain:aaplimg.com</string>
177+
<string>domain:guzzoni.apple.com</string>
165178
</array>
166179
</dict>
167180
<dict>

V2RayX/dlcore.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION="v3.38"
1+
VERSION="v3.47"
22
RED='\033[0;31m'
33
GREEN='\033[0;32m'
44
BOLD='\033[1m'

0 commit comments

Comments
 (0)