Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Sep 28, 2021
2 parents 8c4e91b + 77b70a6 commit fb1d3d3
Show file tree
Hide file tree
Showing 61 changed files with 1,484 additions and 533 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# v2.0.272
# v2.1.276
* Feature: IPv6 Support
* Fix: Some packet loss in ping

# v2.0.272
* Feature: Block all IPv6 Global Unicast to prevent leak
* Fix: Android: Vpn Connection keeps open after disconnecting
* Fix: Android: Crash in android 5.1
Expand Down Expand Up @@ -275,3 +279,4 @@




4 changes: 2 additions & 2 deletions Pub/PublishApps.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ param(
[Parameter(Mandatory=$true)][object]$bump,
[Parameter(Mandatory=$true)][object]$nugets,
[Parameter(Mandatory=$true)][object]$android,
[Parameter(Mandatory=$true)][object]$distribute,
[Parameter(Mandatory=$true)][object]$server
[Parameter(Mandatory=$true)][object]$server,
[Parameter(Mandatory=$true)][object]$distribute
);

$bump = $bump -eq "1";
Expand Down
Binary file modified Pub/Version.json
Binary file not shown.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,10 @@ It is available for Windows and Android. iOS client is not ready yet!

## Client Features
* Easy Installation; Just install and press connect
* Undetectable on private IP
* Undetectable on private IPs
* Fast
* Split Tunneling by Apps & Countries
* IPv6 Support*

## Server Features
* No Network configuration or knowledge is required
Expand All @@ -29,9 +30,14 @@ It is available for Windows and Android. iOS client is not ready yet!
* Highly Customizable
* Easily Embed into your .NET app
* Extendable User Management via REST API
* Component based via Nuget packages
* Component-based via Nuget packages
* Just open the solution with Visual Studio and build

### IPv6 Support
VpnHood supports IPv6, but in Windows, you need to be already on the IPv6 network, so all your network traffic will be tunneled through VpnHood.
In Windows, you will not have access to IPv6 sites if your network is not already configured to use IPv6.
In Android, however, you will get an Ipv6 address and access to all IPv6 sites regardless of your network configuration.

## FAQ & Documents
Please check our [Wiki](https://github.com/vpnhood/VpnHood/wiki) to see VpnHood documents.

Expand All @@ -41,7 +47,7 @@ Please check our [Wiki](https://github.com/vpnhood/VpnHood/wiki) to see VpnHood
* [More...](https://github.com/vpnhood/VpnHood/wiki)

## Support
You are always Welcome!
You are always welcome!
* Feel free to start a new discussion [GitHub discussions](https://github.com/vpnhood/VpnHood/discussions).
* Report bugs or request features in [GitHub issues](https://github.com/vpnhood/VpnHood/issues).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="VpnHood.Client">
<Version>2.0.271</Version>
<Version>2.1.276</Version>
</PackageReference>
<PackageReference Include="VpnHood.Client.Device.Android">
<Version>2.0.271</Version>
<Version>2.1.276</Version>
</PackageReference>
<PackageReference Include="Xamarin.Essentials" Version="1.7.0" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="VpnHood.Client" Version="2.0.271" />
<PackageReference Include="VpnHood.Client.Device.WinDivert" Version="2.0.271" />
<PackageReference Include="VpnHood.Client" Version="2.1.276" />
<PackageReference Include="VpnHood.Client.Device.WinDivert" Version="2.1.276" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions VpnHood.App.Launcher/VpnHood.App.Launcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
<PackageIcon>VpnHood.png</PackageIcon>
<Product>VpnHood.App.Launcher</Product>
<ApplicationIcon>Resources\VpnHood.ico</ApplicationIcon>
<Version>2.0.272</Version>
<AssemblyVersion>2.0.272</AssemblyVersion>
<FileVersion>2.0.272</FileVersion>
<Version>2.1.276</Version>
<AssemblyVersion>2.1.276</AssemblyVersion>
<FileVersion>2.1.276</FileVersion>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Client.App.Android/Properties/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="272" package="com.vpnhood.client.android" android:installLocation="auto" android:versionName="2.0.272">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="276" package="com.vpnhood.client.android" android:installLocation="auto" android:versionName="2.1.276">
<uses-sdk android:minSdkVersion="22" android:targetSdkVersion="30" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
Expand Down
6 changes: 3 additions & 3 deletions VpnHood.Client.App.UI/VpnHood.Client.App.UI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
<PackageIcon>VpnHood.png</PackageIcon>
<Description>Readymade Vpn App skeleton for VpnHood clients. You just need to add build a UI on it.</Description>
<PackageId>VpnHood.Client.App.UI</PackageId>
<Version>2.0.272</Version>
<AssemblyVersion>2.0.272</AssemblyVersion>
<FileVersion>2.0.272</FileVersion>
<Version>2.1.276</Version>
<AssemblyVersion>2.1.276</AssemblyVersion>
<FileVersion>2.1.276</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions VpnHood.Client.App.Win.Setup/VpnHood.Client.App.Win.Setup.aip
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
<ROW Property="CTRLS" Value="2"/>
<ROW Property="DOTNET" Value="dotnet"/>
<ROW Property="Manufacturer" Value="VpnHood"/>
<ROW Property="ProductCode" Value="1033:{1C229520-CA65-408A-9921-9FCD92B7F2F6} " Type="16"/>
<ROW Property="ProductCode" Value="1033:{81352210-AC9E-4F7E-9CD3-F746ED0B3834} " Type="16"/>
<ROW Property="ProductLanguage" Value="1033"/>
<ROW Property="ProductName" Value="VpnHood"/>
<ROW Property="ProductVersion" Value="2.0.272.0" Type="32" TargetFile="VpnHoodClient.dll"/>
<ROW Property="ProductVersion" Value="2.1.276.0" Type="32" TargetFile="VpnHoodClient.dll"/>
<ROW Property="SecureCustomProperties" Value="OLDPRODUCTS;AI_NEWERPRODUCTFOUND;AI_SETUPEXEPATH;SETUPEXEDIR"/>
<ROW Property="UpgradeCode" Value="{38FCFAB0-A40C-4840-A9F9-B7A06A5BC552}"/>
<ROW Property="WindowsType9X" MultiBuildValue="DefaultBuild:Windows 9x/ME" ValueLocId="-"/>
Expand Down
Loading

0 comments on commit fb1d3d3

Please sign in to comment.