diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3058674d0..3ca4a88b6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,6 @@
+# v5.0.630
+* Fix: Show old tokens
+*
# v5.0.629
### Client
* Update: Improve logging by showing memory usage
diff --git a/Pub/PubVersion.json b/Pub/PubVersion.json
index d260d8147..4009cd666 100644
--- a/Pub/PubVersion.json
+++ b/Pub/PubVersion.json
@@ -1,6 +1,6 @@
{
- "Version": "5.0.629",
- "BumpTime": "2024-12-27T09:53:08.9946847Z",
+ "Version": "5.0.630",
+ "BumpTime": "2024-12-28T02:10:59.6222613Z",
"Prerelease": false,
"DeprecatedVersion": "4.0.00"
}
diff --git a/Src/AppLib/VpnHood.AppLib.Abstractions/VpnHood.AppLib.Abstractions.csproj b/Src/AppLib/VpnHood.AppLib.Abstractions/VpnHood.AppLib.Abstractions.csproj
index 783c968d6..7aa9b9c4f 100644
--- a/Src/AppLib/VpnHood.AppLib.Abstractions/VpnHood.AppLib.Abstractions.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Abstractions/VpnHood.AppLib.Abstractions.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Android.Ads.AdMob/VpnHood.AppLib.Android.Ads.AdMob.csproj b/Src/AppLib/VpnHood.AppLib.Android.Ads.AdMob/VpnHood.AppLib.Android.Ads.AdMob.csproj
index 91e87fd43..4c8c7c0fe 100644
--- a/Src/AppLib/VpnHood.AppLib.Android.Ads.AdMob/VpnHood.AppLib.Android.Ads.AdMob.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Android.Ads.AdMob/VpnHood.AppLib.Android.Ads.AdMob.csproj
@@ -21,7 +21,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Android.Common/VpnHood.AppLib.Android.Common.csproj b/Src/AppLib/VpnHood.AppLib.Android.Common/VpnHood.AppLib.Android.Common.csproj
index c4491755c..2b61a43eb 100644
--- a/Src/AppLib/VpnHood.AppLib.Android.Common/VpnHood.AppLib.Android.Common.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Android.Common/VpnHood.AppLib.Android.Common.csproj
@@ -21,7 +21,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Android.GooglePlay.Core/VpnHood.AppLib.Android.GooglePlay.Core.csproj b/Src/AppLib/VpnHood.AppLib.Android.GooglePlay.Core/VpnHood.AppLib.Android.GooglePlay.Core.csproj
index 9c9455d36..f150782ee 100644
--- a/Src/AppLib/VpnHood.AppLib.Android.GooglePlay.Core/VpnHood.AppLib.Android.GooglePlay.Core.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Android.GooglePlay.Core/VpnHood.AppLib.Android.GooglePlay.Core.csproj
@@ -21,7 +21,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Android.GooglePlay/VpnHood.AppLib.Android.GooglePlay.csproj b/Src/AppLib/VpnHood.AppLib.Android.GooglePlay/VpnHood.AppLib.Android.GooglePlay.csproj
index 695723003..e80c86c0e 100644
--- a/Src/AppLib/VpnHood.AppLib.Android.GooglePlay/VpnHood.AppLib.Android.GooglePlay.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Android.GooglePlay/VpnHood.AppLib.Android.GooglePlay.csproj
@@ -21,7 +21,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.App/AppOptions.cs b/Src/AppLib/VpnHood.AppLib.App/AppOptions.cs
index d7a55b152..077696ec7 100644
--- a/Src/AppLib/VpnHood.AppLib.App/AppOptions.cs
+++ b/Src/AppLib/VpnHood.AppLib.App/AppOptions.cs
@@ -7,8 +7,8 @@ namespace VpnHood.AppLib;
public class AppOptions(string appId, bool isDebugMode)
{
- public static string BuildStorageFolderPath(string appId) =>
- Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), appId, "storage");
+ public static string BuildStorageFolderPath(string appId, string subFolder = "storage") =>
+ Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), appId, subFolder);
public string AppId => appId;
public bool IsDebugMode => isDebugMode;
diff --git a/Src/AppLib/VpnHood.AppLib.App/ClientProfiles/ClientProfileInfo.cs b/Src/AppLib/VpnHood.AppLib.App/ClientProfiles/ClientProfileInfo.cs
index 7b1f6e88f..cc99470fe 100644
--- a/Src/AppLib/VpnHood.AppLib.App/ClientProfiles/ClientProfileInfo.cs
+++ b/Src/AppLib/VpnHood.AppLib.App/ClientProfiles/ClientProfileInfo.cs
@@ -10,7 +10,7 @@ public class ClientProfileInfo(ClientProfile clientProfile)
public string? SupportId => clientProfile.Token.SupportId;
public string? CustomData => clientProfile.CustomData;
public bool IsPremiumLocationSelected => clientProfile.IsPremiumLocationSelected;
- public bool IsPremiumAccount => clientProfile.IsPremium && VpnHoodApp.Instance.Features.IsPremiumFlagSupported; //todo move to UI
+ public bool IsPremiumAccount => clientProfile.IsPremium;
public string TokenId => clientProfile.Token.TokenId;
public string[] HostNames => GetEndPoints(clientProfile.Token.ServerToken);
public bool IsValidHostName => clientProfile.Token.ServerToken.IsValidHostName;
diff --git a/Src/AppLib/VpnHood.AppLib.App/VpnHood.AppLib.App.csproj b/Src/AppLib/VpnHood.AppLib.App/VpnHood.AppLib.App.csproj
index 7cb24446f..78c2d8e61 100644
--- a/Src/AppLib/VpnHood.AppLib.App/VpnHood.AppLib.App.csproj
+++ b/Src/AppLib/VpnHood.AppLib.App/VpnHood.AppLib.App.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Resources/VpnHood.AppLib.Resources.csproj b/Src/AppLib/VpnHood.AppLib.Resources/VpnHood.AppLib.Resources.csproj
index 3a8fc860e..653026987 100644
--- a/Src/AppLib/VpnHood.AppLib.Resources/VpnHood.AppLib.Resources.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Resources/VpnHood.AppLib.Resources.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Store/VpnHood.AppLib.Store.csproj b/Src/AppLib/VpnHood.AppLib.Store/VpnHood.AppLib.Store.csproj
index 86287d58e..4b8e9884c 100644
--- a/Src/AppLib/VpnHood.AppLib.Store/VpnHood.AppLib.Store.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Store/VpnHood.AppLib.Store.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.WebServer/VpnHood.AppLib.WebServer.csproj b/Src/AppLib/VpnHood.AppLib.WebServer/VpnHood.AppLib.WebServer.csproj
index 43e5b599c..4327cb4a8 100644
--- a/Src/AppLib/VpnHood.AppLib.WebServer/VpnHood.AppLib.WebServer.csproj
+++ b/Src/AppLib/VpnHood.AppLib.WebServer/VpnHood.AppLib.WebServer.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Win.Common.WpfSpa/VpnHood.AppLib.Win.Common.WpfSpa.csproj b/Src/AppLib/VpnHood.AppLib.Win.Common.WpfSpa/VpnHood.AppLib.Win.Common.WpfSpa.csproj
index d8f9ef7d4..3024df6bf 100644
--- a/Src/AppLib/VpnHood.AppLib.Win.Common.WpfSpa/VpnHood.AppLib.Win.Common.WpfSpa.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Win.Common.WpfSpa/VpnHood.AppLib.Win.Common.WpfSpa.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/AppLib/VpnHood.AppLib.Win.Common/VpnHood.AppLib.Win.Common.csproj b/Src/AppLib/VpnHood.AppLib.Win.Common/VpnHood.AppLib.Win.Common.csproj
index 60bb34210..811ac6e45 100644
--- a/Src/AppLib/VpnHood.AppLib.Win.Common/VpnHood.AppLib.Win.Common.csproj
+++ b/Src/AppLib/VpnHood.AppLib.Win.Common/VpnHood.AppLib.Win.Common.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Apps/Client.Android.Google/App.cs b/Src/Apps/Client.Android.Google/App.cs
index d9113a802..a40e6ab7b 100644
--- a/Src/Apps/Client.Android.Google/App.cs
+++ b/Src/Apps/Client.Android.Google/App.cs
@@ -25,7 +25,7 @@ protected override AppOptions CreateAppOptions()
resources.Strings.AppName = AppConfigs.AppName;
return new AppOptions(PackageName!, AppConfigs.IsDebugMode) {
- StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood"), // for compatibility with old versions
+ StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood", subFolder: ""), // for compatibility with old versions
Resource = resources,
AccessKeys = appConfigs.DefaultAccessKey != null ? [appConfigs.DefaultAccessKey] : [],
UpdateInfoUrl = appConfigs.UpdateInfoUrl,
diff --git a/Src/Apps/Client.Android.Google/VpnHood.App.Client.Android.Google.csproj b/Src/Apps/Client.Android.Google/VpnHood.App.Client.Android.Google.csproj
index 347cfea79..6a67078e9 100644
--- a/Src/Apps/Client.Android.Google/VpnHood.App.Client.Android.Google.csproj
+++ b/Src/Apps/Client.Android.Google/VpnHood.App.Client.Android.Google.csproj
@@ -5,8 +5,8 @@
VpnHood.App.Client.Droid.Google
Exe
com.vpnhood.client.android.debug
- 629
- 5.0.629
+ 630
+ 5.0.630
23.0
@@ -32,7 +32,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Apps/Client.Android.Web/App.cs b/Src/Apps/Client.Android.Web/App.cs
index 2eb520056..8e9f06a2f 100644
--- a/Src/Apps/Client.Android.Web/App.cs
+++ b/Src/Apps/Client.Android.Web/App.cs
@@ -11,7 +11,7 @@ namespace VpnHood.App.Client.Droid.Web;
Icon = AndroidAppConstants.Icon,
Banner = AndroidAppConstants.Banner,
NetworkSecurityConfig = AndroidAppConstants.NetworkSecurityConfig,
- SupportsRtl = AndroidAppConstants.SupportsRtl,
+ SupportsRtl = AndroidAppConstants.SupportsRtl,
AllowBackup = AndroidAppConstants.AllowBackup)]
public class App(IntPtr javaReference, JniHandleOwnership transfer)
: VpnHoodAndroidApp(javaReference, transfer)
@@ -24,7 +24,7 @@ protected override AppOptions CreateAppOptions()
resources.Strings.AppName = AppConfigs.AppName;
return new AppOptions(PackageName!, AppConfigs.IsDebugMode) {
- StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood"), // for compatibility with old VpnHood app versions to keep tokens
+ StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood", subFolder: ""), // for compatibility with old VpnHood app versions to keep tokens
Resource = resources,
AccessKeys = appConfigs.DefaultAccessKey != null ? [appConfigs.DefaultAccessKey] : [],
UpdateInfoUrl = appConfigs.UpdateInfoUrl,
diff --git a/Src/Apps/Client.Android.Web/VpnHood.App.Client.Android.Web.csproj b/Src/Apps/Client.Android.Web/VpnHood.App.Client.Android.Web.csproj
index fefa8076c..66df05154 100644
--- a/Src/Apps/Client.Android.Web/VpnHood.App.Client.Android.Web.csproj
+++ b/Src/Apps/Client.Android.Web/VpnHood.App.Client.Android.Web.csproj
@@ -5,8 +5,8 @@
VpnHood.App.Client.Droid.Web
Exe
com.vpnhood.connect.android.web.debug
- 629
- 5.0.629
+ 630
+ 5.0.630
23.0
@@ -32,7 +32,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Apps/Client.Win.Web/App.cs b/Src/Apps/Client.Win.Web/App.cs
index 11ae47e54..6c3e6911f 100644
--- a/Src/Apps/Client.Win.Web/App.cs
+++ b/Src/Apps/Client.Win.Web/App.cs
@@ -27,7 +27,7 @@ protected override AppOptions CreateAppOptions()
return new AppOptions("com.vpnhood.client.windows", AppConfigs.IsDebugMode) {
DeviceId = WindowsIdentity.GetCurrent().User?.Value,
- StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood"),
+ StorageFolderPath = AppOptions.BuildStorageFolderPath(appId: "VpnHood", subFolder: ""),
Resource = resources,
AccessKeys = AppConfigs.IsDebugMode ? [appConfigs.DefaultAccessKey] : [],
UpdateInfoUrl = appConfigs.UpdateInfoUrl,
diff --git a/Src/Apps/Client.Win.Web/VpnHood.App.Client.Win.Web.csproj b/Src/Apps/Client.Win.Web/VpnHood.App.Client.Win.Web.csproj
index 0334b0afb..f038bad74 100644
--- a/Src/Apps/Client.Win.Web/VpnHood.App.Client.Win.Web.csproj
+++ b/Src/Apps/Client.Win.Web/VpnHood.App.Client.Win.Web.csproj
@@ -28,7 +28,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Client.Device.Android/AndroidPacketCapture.cs b/Src/Core/VpnHood.Core.Client.Device.Android/AndroidPacketCapture.cs
index 3c7e89e8d..3de6958b7 100644
--- a/Src/Core/VpnHood.Core.Client.Device.Android/AndroidPacketCapture.cs
+++ b/Src/Core/VpnHood.Core.Client.Device.Android/AndroidPacketCapture.cs
@@ -25,7 +25,6 @@ namespace VpnHood.Core.Client.Device.Droid;
[IntentFilter(["android.net.VpnService"])]
public class AndroidPacketCapture : VpnService, IPacketCapture
{
- public const string VpnServiceName = "VhSession";
private IPAddress[]? _dnsServers;
private FileInputStream? _inStream; // Packets to be sent are queued in this input stream.
private ParcelFileDescriptor? _mInterface;
@@ -44,6 +43,7 @@ public class AndroidPacketCapture : VpnService, IPacketCapture
public bool CanIncludeApps => true;
public string[]? ExcludeApps { get; set; }
public string[]? IncludeApps { get; set; }
+ public string VpnServiceName { get; set; } = "VhSession";
public bool IsMtuSupported => true;
public int Mtu {
diff --git a/Src/Core/VpnHood.Core.Client.Device.Android/VpnHood.Core.Client.Device.Android.csproj b/Src/Core/VpnHood.Core.Client.Device.Android/VpnHood.Core.Client.Device.Android.csproj
index 1d332bc6f..04fc40cf5 100644
--- a/Src/Core/VpnHood.Core.Client.Device.Android/VpnHood.Core.Client.Device.Android.csproj
+++ b/Src/Core/VpnHood.Core.Client.Device.Android/VpnHood.Core.Client.Device.Android.csproj
@@ -21,7 +21,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Client.Device.WinDivert/VpnHood.Core.Client.Device.WinDivert.csproj b/Src/Core/VpnHood.Core.Client.Device.WinDivert/VpnHood.Core.Client.Device.WinDivert.csproj
index 215504f0b..931f584a1 100644
--- a/Src/Core/VpnHood.Core.Client.Device.WinDivert/VpnHood.Core.Client.Device.WinDivert.csproj
+++ b/Src/Core/VpnHood.Core.Client.Device.WinDivert/VpnHood.Core.Client.Device.WinDivert.csproj
@@ -19,7 +19,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Client.Device/VpnHood.Core.Client.Device.csproj b/Src/Core/VpnHood.Core.Client.Device/VpnHood.Core.Client.Device.csproj
index ec12b5e4e..977974ac2 100644
--- a/Src/Core/VpnHood.Core.Client.Device/VpnHood.Core.Client.Device.csproj
+++ b/Src/Core/VpnHood.Core.Client.Device/VpnHood.Core.Client.Device.csproj
@@ -19,7 +19,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Client/VpnHood.Core.Client.csproj b/Src/Core/VpnHood.Core.Client/VpnHood.Core.Client.csproj
index 94f726357..e1748c2fe 100644
--- a/Src/Core/VpnHood.Core.Client/VpnHood.Core.Client.csproj
+++ b/Src/Core/VpnHood.Core.Client/VpnHood.Core.Client.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Common/VpnHood.Core.Common.csproj b/Src/Core/VpnHood.Core.Common/VpnHood.Core.Common.csproj
index 9da3036a8..3777025f2 100644
--- a/Src/Core/VpnHood.Core.Common/VpnHood.Core.Common.csproj
+++ b/Src/Core/VpnHood.Core.Common/VpnHood.Core.Common.csproj
@@ -19,7 +19,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Server.Access.FileAccessManager/VpnHood.Core.Server.Access.FileAccessManager.csproj b/Src/Core/VpnHood.Core.Server.Access.FileAccessManager/VpnHood.Core.Server.Access.FileAccessManager.csproj
index fe70c5f62..ea49948ba 100644
--- a/Src/Core/VpnHood.Core.Server.Access.FileAccessManager/VpnHood.Core.Server.Access.FileAccessManager.csproj
+++ b/Src/Core/VpnHood.Core.Server.Access.FileAccessManager/VpnHood.Core.Server.Access.FileAccessManager.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Server.Access/VpnHood.Core.Server.Access.csproj b/Src/Core/VpnHood.Core.Server.Access/VpnHood.Core.Server.Access.csproj
index 4217ca7b7..2ed9e4ad3 100644
--- a/Src/Core/VpnHood.Core.Server.Access/VpnHood.Core.Server.Access.csproj
+++ b/Src/Core/VpnHood.Core.Server.Access/VpnHood.Core.Server.Access.csproj
@@ -20,7 +20,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Server/VpnHood.Core.Server.csproj b/Src/Core/VpnHood.Core.Server/VpnHood.Core.Server.csproj
index 6da918a55..5654c1a96 100644
--- a/Src/Core/VpnHood.Core.Server/VpnHood.Core.Server.csproj
+++ b/Src/Core/VpnHood.Core.Server/VpnHood.Core.Server.csproj
@@ -19,7 +19,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))
diff --git a/Src/Core/VpnHood.Core.Tunneling/VpnHood.Core.Tunneling.csproj b/Src/Core/VpnHood.Core.Tunneling/VpnHood.Core.Tunneling.csproj
index 368685eea..d7e2167d6 100644
--- a/Src/Core/VpnHood.Core.Tunneling/VpnHood.Core.Tunneling.csproj
+++ b/Src/Core/VpnHood.Core.Tunneling/VpnHood.Core.Tunneling.csproj
@@ -19,7 +19,7 @@
VpnHood.png
https://github.com/vpnhood/vpnhood
https://github.com/vpnhood/vpnhood
- 5.0.629
+ 5.0.630
$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))