Skip to content

Commit

Permalink
Ensure manifest.fx.v3.json is kept up-to-date
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaifroid committed Nov 12, 2023
1 parent 54f9019 commit e2715a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion manifest.fx.v3.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 3,
"name": "Kiwix",
"version": "3.10.2",
"version": "3.11.0",

"description": "Kiwix Offline Browser",

Expand Down
2 changes: 1 addition & 1 deletion scripts/Set-AppVersion.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ if ($VERSION -match '^v?[\d.]') {
"`nSetting App Version to $VERSION in service-worker.js and init.js ..."
(Get-Content ./service-worker.js) -replace '(appVersion\s*=\s*["''])[^"'']+', "`${1}$VERSION" | Set-Content ./service-worker.js
(Get-Content ./www/js/init.js) -replace '(appVersion..\s*=\s*["''])[^"'']+', "`${1}$VERSION" | Set-Content ./www/js/init.js
$FileList = './manifest.json', 'manifest.v2.json', './manifest.webapp', './package.json', './ubuntu_touch/manifest.json'
$FileList = 'manifest.json', 'manifest.v2.json', 'manifest.fx.v3.json', 'manifest.webapp', 'package.json', './ubuntu_touch/manifest.json'
ForEach ($File in $FileList) {
$FileContent = Get-Content -Raw $File
"Setting App Version to $VERSION in $File ..."
Expand Down

0 comments on commit e2715a8

Please sign in to comment.