Skip to content

Commit

Permalink
Merge pull request #1895 from keepassxreboot/fix/change_min_versions
Browse files Browse the repository at this point in the history
Change minimum versions
  • Loading branch information
varjolintu authored Apr 10, 2023
2 parents bc81d55 + 3a459e5 commit 40b56ab
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.8.6.1 (2023-04-10)
=========================
- Change minimum browser version requirements [#1895]

1.8.6 (2023-04-03)
=========================
- Add support for showing Autocomplete Menu on top [#1866]
Expand Down
1 change: 1 addition & 0 deletions build.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ async function adjustManifest(manifest) {
data['browser_action']['default_icon'][elem] = 'icons/keepassxc.svg';
}
delete data['version_name'];
delete data['minimum_chrome_version'];
} else if (manifest.includes('chromium')) {
delete data['applications'];
}
Expand Down
7 changes: 4 additions & 3 deletions keepassxc-browser/manifest.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
{
"manifest_version": 2,
"name": "KeePassXC-Browser",
"version": "1.8.6",
"version_name": "1.8.6",
"version": "1.8.6.1",
"version_name": "1.8.6.1",
"minimum_chrome_version": "93",
"description": "__MSG_extensionDescription__",
"author": "KeePassXC Team",
"icons": {
Expand Down Expand Up @@ -158,7 +159,7 @@
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "91.0"
"strict_min_version": "93.0"
}
},
"default_locale": "en"
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "KeePassXC-Browser",
"version": "1.8.6",
"version": "1.8.6.1",
"description": "KeePassXC-Browser",
"main": "build.js",
"devDependencies": {
Expand Down

0 comments on commit 40b56ab

Please sign in to comment.