Skip to content

Commit

Permalink
Publish v5.0.635
Browse files Browse the repository at this point in the history
  • Loading branch information
trudyhood committed Jan 17, 2025
1 parent 92824ab commit df3b4c0
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# v5.0.635

# v5.0.635
* Fix: Sign-out from account
* Improve: Optimizing CPU and GPU usage during the playback of Ads and animations
Expand Down
8 changes: 5 additions & 3 deletions Pub/Core/PublishWinApp.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ param(
. "$PSScriptRoot/Common.ps1"

$projectFile = (Get-ChildItem -path $projectDir -file -Filter "*.csproj").FullName;
$productName = ([Xml] (Get-Content $projectFile)).Project.PropertyGroup.Product[0];
$assemblyName = ([Xml] (Get-Content $projectFile)).Project.PropertyGroup.AssemblyName[0];

Write-Host;
Write-Host "*** Building $packageFileTitle ..." -BackgroundColor Blue -ForegroundColor White;
Expand Down Expand Up @@ -76,17 +78,17 @@ $json | ConvertTo-Json | Out-File "$module_infoFile" -Encoding ASCII;
$str=";aiu;
[Update]
Name = VpnHood $versionParam
Name = $productName $versionParam
ProductVersion = $versionParam
URL = $repoBaseUrl/releases/download/$versionTag/$module_packageFileName
Size = $((Get-Item $module_packageFile).length)
SHA256 = $((Get-FileHash $module_packageFile -Algorithm SHA256).Hash)
MD5 = $((Get-FileHash $module_packageFile -Algorithm MD5).Hash)
ServerFileName = $module_packageFileName
Flags = NoRedetect
RegistryKey = HKUD\Software\VpnHood\$packageFileTitle\Version
RegistryKey = HKUD\Software\$assemblyName\$packageFileTitle\Version
Version = $versionParam
UpdatedApplications = VpnHood(1.0-$versionParam)
UpdatedApplications = $productName(1.0-$versionParam)
Description = <a href=""https://github.com/vpnhood/VpnHood/blob/main/CHANGELOG.md"">Release note</a>
";
$str | Out-File -FilePath $module_updaterConfigFile;
Expand Down
2 changes: 2 additions & 0 deletions Src/Apps/Client.Win.Web/VpnHood.App.Client.Win.Web.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>VpnHood! CLIENT</Product>
<Description>VpnHood Windows Client App.</Description>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
Expand Down Expand Up @@ -30,6 +31,7 @@
<RepositoryUrl>https://github.com/vpnhood/vpnhood</RepositoryUrl>
<Version>5.0.635</Version>
<FileVersion>$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))</FileVersion>
<AssemblyVersion></AssemblyVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>VpnHood! CONNECT</Product>
<Description>VpnHood Windows Client App.</Description>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
Expand Down

0 comments on commit df3b4c0

Please sign in to comment.