Skip to content

Commit

Permalink
2.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
AirVPN committed Jun 20, 2018
1 parent 3be16df commit 2bce343
Show file tree
Hide file tree
Showing 25 changed files with 4 additions and 4 deletions.
Binary file not shown.
Binary file not shown.
Binary file added deploy/windows-vista_x64/curl.exe
Binary file not shown.
Binary file added deploy/windows-vista_x64/libcrypto-1_1-x64.dll
Binary file not shown.
Binary file added deploy/windows-vista_x64/liblzo2-2.dll
Binary file not shown.
Binary file added deploy/windows-vista_x64/libpkcs11-helper-1.dll
Binary file not shown.
Binary file added deploy/windows-vista_x64/libssl-1_1-x64.dll
Binary file not shown.
Binary file added deploy/windows-vista_x64/openvpn.exe
Binary file not shown.
Binary file added deploy/windows-vista_x64/plink.exe
Binary file not shown.
Binary file added deploy/windows-vista_x64/stunnel.exe
Binary file not shown.
Binary file added deploy/windows-vista_x64/tap-windows.exe
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added deploy/windows-vista_x86/curl.exe
Binary file not shown.
Binary file added deploy/windows-vista_x86/libcrypto-1_1.dll
Binary file not shown.
Binary file added deploy/windows-vista_x86/liblzo2-2.dll
Binary file not shown.
Binary file added deploy/windows-vista_x86/libpkcs11-helper-1.dll
Binary file not shown.
Binary file added deploy/windows-vista_x86/libssl-1_1.dll
Binary file not shown.
Binary file added deploy/windows-vista_x86/openvpn.exe
Binary file not shown.
Binary file added deploy/windows-vista_x86/plink.exe
Binary file not shown.
Binary file added deploy/windows-vista_x86/stunnel.exe
Binary file not shown.
Binary file added deploy/windows-vista_x86/tap-windows.exe
Binary file not shown.
Binary file modified repository/Deploy.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions src/Lib.Common/Constants.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public static class Constants
public static string NameCompatibility = "AirVPN";
public static string AppID = "ed8efc06d5263733167fbbed49230843397c3701";
public static string Thanks = "Clodo;PJ;Berserker;promind;zhang888;LZ1;giganerd;Uncle Hunto;go558a83nk;sheivoko;NaDre;pfSense_fan;x0wllaar";
public static int VersionInt = 248;
public static string VersionDesc = "2.15.1";
public static int VersionInt = 249;
public static string VersionDesc = "2.15.2";
public static bool AlphaFeatures = false;
public static bool FeatureIPv6ControlOptions = true;
public static bool FeatureAlwaysBypassOpenvpnRoute = true; // Default for Eddie 2.14
Expand Down
4 changes: 2 additions & 2 deletions src/Lib.Platform.Windows/NetworkLockWindowsFirewall.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,9 @@ public override void OnUpdateIps()
if (currentIpsWhiteListOutgoing != m_lastestIpsWhiteListOutgoing)
{
if (m_lastestIpsWhiteListOutgoing != "")
SystemShell.ShellCmd("netsh advfirewall firewall set rule name=\"Eddie - Out - Allow IPs\" dir=out new action=allow remoteip=\"" + m_lastestIpsWhiteListOutgoing + "\"");
SystemShell.ShellCmd("netsh advfirewall firewall set rule name=\"Eddie - Out - Allow IPs\" dir=out new action=allow remoteip=\"" + currentIpsWhiteListOutgoing + "\"");
else
SystemShell.ShellCmd("netsh advfirewall firewall add rule name=\"Eddie - Out - Allow IPs\" dir=out action=allow remoteip=\"" + m_lastestIpsWhiteListOutgoing + "\"");
SystemShell.ShellCmd("netsh advfirewall firewall add rule name=\"Eddie - Out - Allow IPs\" dir=out action=allow remoteip=\"" + currentIpsWhiteListOutgoing + "\"");

m_lastestIpsWhiteListOutgoing = currentIpsWhiteListOutgoing;
}
Expand Down

0 comments on commit 2bce343

Please sign in to comment.