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 29, 2023
2 parents d5269e9 + ae895bf commit 33bff26
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# v3.0.427
# v3.0.428
### Server
* Fix: Certificate was not updated immediately by Access Manager
* Fix: AutoUpdater

# v3.0.427
### Client
Expand Down
4 changes: 2 additions & 2 deletions Pub/Common.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,13 +98,13 @@ function PrepareModuleFolder([string]$moduleDir, [string]$moduleDirLatest)
function UpdateRepoVersionInFile()
{
$files = Get-ChildItem -Path @($packagesRootDirLatest, $moduleGooglePlayLastestDir) `
-File -Recurse | Where-Object { $_.Extension -eq '.json' -or $_.Extension -eq '.txt' -or $_.Extension -eq '.sh' -or $_.Extension -eq '.ps1' }
-File -Recurse | Where-Object { $_.Extension -eq '.json' -or $_.Extension -eq '.txt' -or $_.Extension -eq '.sh' }

# Loop through each file and apply the change
foreach ($file in $files)
{
$fileContent = Get-Content $file.FullName -Raw;
$fileContent = $fileContent -replace "/download/v(\d+\.\d+\.\d+)/", "/download/$versionTag/";
Set-Content -Path $file.FullName -Value $fileContent
Set-Content -Path $file.FullName -Value $fileContent -Encoding ASCII -Force -NoNewline
}
}
4 changes: 2 additions & 2 deletions Pub/Version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Version": "3.0.427",
"BumpTime": "2023-09-28T21:39:53.5733153Z",
"Version": "3.0.428",
"BumpTime": "2023-09-29T02:36:04.7445112Z",
"Prerelease": false,
"DeprecatedVersion": "3.0.400"
}
4 changes: 2 additions & 2 deletions VpnHood.Client.Device/VpnHood.Client.Device.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
<RepositoryUrl>https://github.com/vpnhood/vpnhood</RepositoryUrl>
<RepositoryType></RepositoryType>
<RootNamespace>VpnHood.Client.Device</RootNamespace>
<Version>3.0.427</Version>
<AssemblyVersion>3.0.427</AssemblyVersion>
<Version>3.0.428</Version>
<AssemblyVersion>3.0.428</AssemblyVersion>
<FileVersion>$([System.DateTime]::Now.ToString("yyyy.M.d.HHmm"))</FileVersion>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
Expand Down

0 comments on commit 33bff26

Please sign in to comment.