diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d26501ee..b9529e2eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -429,5 +430,6 @@ + diff --git a/Pub/Version.json b/Pub/Version.json index a0a03fd3e..9fc3a8716 100644 Binary files a/Pub/Version.json and b/Pub/Version.json differ diff --git a/VpnHood.Client.App.Android/Properties/AndroidManifest.xml b/VpnHood.Client.App.Android/Properties/AndroidManifest.xml index 5fd92a1d3..04ae7bd07 100644 --- a/VpnHood.Client.App.Android/Properties/AndroidManifest.xml +++ b/VpnHood.Client.App.Android/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/VpnHood.Client.App.UI/VpnHood.Client.App.UI.csproj b/VpnHood.Client.App.UI/VpnHood.Client.App.UI.csproj index 4256c1b04..3f47d7b73 100644 --- a/VpnHood.Client.App.UI/VpnHood.Client.App.UI.csproj +++ b/VpnHood.Client.App.UI/VpnHood.Client.App.UI.csproj @@ -12,9 +12,9 @@ VpnHood.png 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). VpnHood.Client.App.UI - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj b/VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj index b690db2a5..70399aefb 100644 --- a/VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj +++ b/VpnHood.Client.App.Win/VpnHood.Client.App.Win.csproj @@ -16,9 +16,9 @@ app.manifest VpnHood.Client.App.Win - 2.4.310 - 2.4.310 - 2.4.310 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 false diff --git a/VpnHood.Client.App/VpnHood.Client.App.csproj b/VpnHood.Client.App/VpnHood.Client.App.csproj index 5a236cfb1..0b35eb3bf 100644 --- a/VpnHood.Client.App/VpnHood.Client.App.csproj +++ b/VpnHood.Client.App/VpnHood.Client.App.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -11,9 +11,9 @@ https://github.com/vpnhood/vpnhood Readymade Vpn App skeleton for VpnHood clients. You just need to create a UI on it. VpnHood.Client.App - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Client.App/VpnHoodApp.cs b/VpnHood.Client.App/VpnHoodApp.cs index e435acc50..8a60e84d1 100644 --- a/VpnHood.Client.App/VpnHoodApp.cs +++ b/VpnHood.Client.App/VpnHoodApp.cs @@ -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() diff --git a/VpnHood.Client.Device.WinDivert/VpnHood.Client.Device.WinDivert.csproj b/VpnHood.Client.Device.WinDivert/VpnHood.Client.Device.WinDivert.csproj index 40f5775a3..4ead9263f 100644 --- a/VpnHood.Client.Device.WinDivert/VpnHood.Client.Device.WinDivert.csproj +++ b/VpnHood.Client.Device.WinDivert/VpnHood.Client.Device.WinDivert.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 VpnHood @@ -9,11 +9,11 @@ https://github.com/vpnhood/vpnhood VpnHood.png VpnHood client device provider for Windows using WinDivert. - 2.4.315 + 2.4.318 VpnHood.Client.Device.WinDivert 1.1.226 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Client.Device/VpnHood.Client.Device.csproj b/VpnHood.Client.Device/VpnHood.Client.Device.csproj index a093109a8..362bfd07b 100644 --- a/VpnHood.Client.Device/VpnHood.Client.Device.csproj +++ b/VpnHood.Client.Device/VpnHood.Client.Device.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -14,9 +14,9 @@ VpnHood.Client.Device VpnHood.Client.Device - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Client/VpnHood.Client.csproj b/VpnHood.Client/VpnHood.Client.csproj index a65d25131..41eec7668 100644 --- a/VpnHood.Client/VpnHood.Client.csproj +++ b/VpnHood.Client/VpnHood.Client.csproj @@ -13,9 +13,9 @@ 2022 VpnHood VpnHood.Client VPN VpnClient Proxy - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Common/VpnHood.Common.csproj b/VpnHood.Common/VpnHood.Common.csproj index b47fd6964..9552d78be 100644 --- a/VpnHood.Common/VpnHood.Common.csproj +++ b/VpnHood.Common/VpnHood.Common.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -12,9 +12,9 @@ VpnHood.Common VpnHood.png VpnHood Common Library is shared among all other VpnHood modules. - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Server.Access/VpnHood.Server.Access.csproj b/VpnHood.Server.Access/VpnHood.Server.Access.csproj index 25706aa5d..7476483e6 100644 --- a/VpnHood.Server.Access/VpnHood.Server.Access.csproj +++ b/VpnHood.Server.Access/VpnHood.Server.Access.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -12,9 +12,9 @@ VpnHood.Server.Access VpnHood.png Stores, and retrieves end users' access and usage. Provides required interfaces and classes to use or create an access server and accounting. - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Server/VpnHood.Server.csproj b/VpnHood.Server/VpnHood.Server.csproj index 16fe4d85e..5a0602e68 100644 --- a/VpnHood.Server/VpnHood.Server.csproj +++ b/VpnHood.Server/VpnHood.Server.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -13,9 +13,9 @@ VpnHood.png The core of VpnHood server. It can listen and accept connections from VpnHood clients. VpnHood.Server - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0 diff --git a/VpnHood.Tunneling/VpnHood.Tunneling.csproj b/VpnHood.Tunneling/VpnHood.Tunneling.csproj index 6daa48ee3..574eb8409 100644 --- a/VpnHood.Tunneling/VpnHood.Tunneling.csproj +++ b/VpnHood.Tunneling/VpnHood.Tunneling.csproj @@ -1,4 +1,4 @@ - + netstandard2.1 @@ -15,9 +15,9 @@ VpnHood.png VpnHood.Tunneling Provides tunnelling classes and protocols shared between VpnHood.Client and VpnHood.Server. - 2.4.315 - 2.4.315 - 2.4.315 + 2.4.318 + 2.4.318 + 2.4.318 enable 10.0