xfuture 1.9.3 → 1.9.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,6 +33,10 @@ class xFuture {
33
33
  this.workingDir = workingDir;
34
34
  }
35
35
 
36
+ SetWorkingDir(workingDir){
37
+ this.workingDir = workingDir
38
+ }
39
+
36
40
  StartTunnel(url){
37
41
  if(this.driver.length == 0) return false;
38
42
  this.currentURI = url;
package/index.js CHANGED
@@ -32,6 +32,10 @@ class xFuture {
32
32
  ff.SetTunModeEnable(enable, workingDir);
33
33
  }
34
34
 
35
+ SetWorkingDir(workingDir){
36
+ this.workingDir = workingDir
37
+ }
38
+
35
39
  StartTunnel(url){
36
40
  if(this.driver.length == 0) return false;
37
41
  var json = parser.parse(url);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xfuture",
3
- "version": "1.9.3",
3
+ "version": "1.9.4",
4
4
  "description": "electron vpn sdk",
5
5
  "main": "x.js",
6
6
  "scripts": {