xfuture 2.8.5 → 2.8.8
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +6 -1
- package/package/darwin/xFuture.node +0 -0
- package/package/win32/xray.dll +0 -0
- package/package/win32-arm64/sysproxy.exe +0 -0
- package/package/win32-arm64/xFuture.node +0 -0
- package/package/win32-arm64/xray.dll +0 -0
- package/package/win32-x64/sysproxy.exe +0 -0
- package/package/win32-x64/xFuture.node +0 -0
- package/package/win32-x64/xray.dll +0 -0
- package/package.json +9 -2
package/index.js
CHANGED
@@ -3,7 +3,12 @@ let os = require("os");
|
|
3
3
|
const { spawn } = require('child_process')
|
4
4
|
var isMac = false;
|
5
5
|
if (os.platform() === "win32") {
|
6
|
-
|
6
|
+
if (os.arch() == "arm64") {
|
7
|
+
xFuturePath = "./package/win32-arm64/xFuture";
|
8
|
+
}
|
9
|
+
else {
|
10
|
+
xFuturePath = "./package/win32-x64/xFuture";
|
11
|
+
}
|
7
12
|
} else if (os.platform() === "darwin") {
|
8
13
|
xFuturePath = "./package/darwin/xFuture"
|
9
14
|
isMac = true;
|
Binary file
|
package/package/win32/xray.dll
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "xfuture",
|
3
|
-
"version": "2.8.
|
3
|
+
"version": "2.8.8",
|
4
4
|
"description": "electron vpn sdk",
|
5
5
|
"main": "x.js",
|
6
6
|
"scripts": {
|
@@ -26,11 +26,18 @@
|
|
26
26
|
"package/darwin/xFuture.node",
|
27
27
|
"package/darwin/xfuture_helper",
|
28
28
|
"package/darwin/install_helper.sh",
|
29
|
-
"package/darwin/xAdapter.framework",
|
30
29
|
"package/darwin/xsing-box-exec",
|
31
30
|
"package/win32/sysproxy.exe",
|
32
31
|
"package/win32/xFuture.node",
|
33
32
|
"package/win32/xray.dll",
|
33
|
+
|
34
|
+
"package/win32-arm64/sysproxy.exe",
|
35
|
+
"package/win32-arm64/xFuture.node",
|
36
|
+
"package/win32-arm64/xray.dll",
|
37
|
+
"package/win32-x64/sysproxy.exe",
|
38
|
+
"package/win32-x64/xFuture.node",
|
39
|
+
"package/win32-x64/xray.dll",
|
40
|
+
|
34
41
|
"resources/ai.json",
|
35
42
|
"resources/global.json",
|
36
43
|
"resources/geoip.dat",
|