Skip to content

Commit

Permalink
Publish v2.4.318
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Nov 16, 2022
1 parent fc60c5c commit 842b8ed
Show file tree
Hide file tree
Showing 14 changed files with 44 additions and 42 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Upcoming
# v2.4.318
### Client
* Feature: Show a message a device disconnected by your device
* Feature: AndroidTV support
* Fix: Remove VpnHood name form VpnHood Library nugets for Android
* Feature: Android TV support
* Update: Updating IP Location Database
* Update: Improve Client Battery Usage
* Update: Show SupportId (sid) to servers list
* Update: Remove Legacy AccessKey support
* Fix: Randomly select previous profile in UI

# v2.4.310
### Client
Expand Down Expand Up @@ -429,5 +430,6 @@






Binary file modified Pub/Version.json
Binary file not shown.
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="310" package="com.vpnhood.client.android" android:installLocation="auto" android:versionName="2.4.310">
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:versionCode="318" package="com.vpnhood.client.android" android:installLocation="auto" android:versionName="2.4.318">
<uses-sdk android:minSdkVersion="22" android:targetSdkVersion="32" />
<uses-feature android:name="android.software.leanback" android:required="false" />
<uses-feature android:name="android.hardware.touchscreen" android:required="false" />
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>Tiny internal webserver to server your single-page application (SPA). You need this only if you want to create a UI for your VpnHood client by single-page application (SPA).</Description>
<PackageId>VpnHood.Client.App.UI</PackageId>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@
<ApplicationManifest>app.manifest</ApplicationManifest>
<PackageId>VpnHood.Client.App.Win</PackageId>
<StartupObject></StartupObject>
<Version>2.4.310</Version>
<AssemblyVersion>2.4.310</AssemblyVersion>
<FileVersion>2.4.310</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Client.App/VpnHood.Client.App.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -11,9 +11,9 @@
<RepositoryUrl>https://github.com/vpnhood/vpnhood</RepositoryUrl>
<Description>Readymade Vpn App skeleton for VpnHood clients. You just need to create a UI on it.</Description>
<PackageId>VpnHood.Client.App</PackageId>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion VpnHood.Client.App/VpnHoodApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ private void Device_OnStartAsService(object sender, EventArgs e)
x.ClientProfileId == UserSettings.DefaultClientProfileId) ?? ClientProfileStore.ClientProfiles.FirstOrDefault();
if (clientProfile == null) throw new Exception("There is no default configuration!");

var _ = Connect(clientProfile.ClientProfileId);
_ = Connect(clientProfile.ClientProfileId);
}

public string GetLogForReport()
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Authors>VpnHood</Authors>
Expand All @@ -9,11 +9,11 @@
<RepositoryUrl>https://github.com/vpnhood/vpnhood</RepositoryUrl>
<PackageIcon>VpnHood.png</PackageIcon>
<Description>VpnHood client device provider for Windows using WinDivert.</Description>
<Version>2.4.315</Version>
<Version>2.4.318</Version>
<PackageId>VpnHood.Client.Device.WinDivert</PackageId>
<Version>1.1.226</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Client.Device/VpnHood.Client.Device.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -14,9 +14,9 @@
<RepositoryType></RepositoryType>
<PackageId>VpnHood.Client.Device</PackageId>
<RootNamespace>VpnHood.Client.Device</RootNamespace>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
6 changes: 3 additions & 3 deletions VpnHood.Client/VpnHood.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<Copyright>2022 VpnHood</Copyright>
<PackageId>VpnHood.Client</PackageId>
<PackageTags>VPN VpnClient Proxy</PackageTags>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Common/VpnHood.Common.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -12,9 +12,9 @@
<PackageId>VpnHood.Common</PackageId>
<PackageIcon>VpnHood.png</PackageIcon>
<Description>VpnHood Common Library is shared among all other VpnHood modules.</Description>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Server.Access/VpnHood.Server.Access.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -12,9 +12,9 @@
<PackageId>VpnHood.Server.Access</PackageId>
<PackageIcon>VpnHood.png</PackageIcon>
<Description>Stores, and retrieves end users' access and usage. Provides required interfaces and classes to use or create an access server and accounting.</Description>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Server/VpnHood.Server.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -13,9 +13,9 @@
<PackageIcon>VpnHood.png</PackageIcon>
<Description>The core of VpnHood server. It can listen and accept connections from VpnHood clients.</Description>
<PackageId>VpnHood.Server</PackageId>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions VpnHood.Tunneling/VpnHood.Tunneling.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
Expand All @@ -15,9 +15,9 @@
<PackageIcon>VpnHood.png</PackageIcon>
<Product>VpnHood.Tunneling</Product>
<Description>Provides tunnelling classes and protocols shared between VpnHood.Client and VpnHood.Server.</Description>
<Version>2.4.315</Version>
<AssemblyVersion>2.4.315</AssemblyVersion>
<FileVersion>2.4.315</FileVersion>
<Version>2.4.318</Version>
<AssemblyVersion>2.4.318</AssemblyVersion>
<FileVersion>2.4.318</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>10.0</LangVersion>
</PropertyGroup>
Expand Down

0 comments on commit 842b8ed

Please sign in to comment.