diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 8d7a673..beea3f7 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.0" + ".": "0.3.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 57c15f9..3376bde 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.3.1](https://github.com/fluid-project/uio-plus/compare/v0.3.0...v0.3.1) (2025-01-20) + + +### Bug Fixes + +* **deps:** update dependency infusion to v4.8.0 ([#62](https://github.com/fluid-project/uio-plus/issues/62)) ([1c17dc1](https://github.com/fluid-project/uio-plus/commit/1c17dc113318a4ca74027ab8453a473747292cf8)) + + +### Miscellaneous Chores + +* release 0.3.1 ([0af549f](https://github.com/fluid-project/uio-plus/commit/0af549f91f5666c2f41bca286a30b1490e387dda)) + ## [0.3.0](https://github.com/fluid-project/uio-plus/compare/v0.2.0...v0.3.0) (2022-12-21) diff --git a/package-lock.json b/package-lock.json index f020af4..24d0d54 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "uio-plus", - "version": "0.3.0", + "version": "0.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "uio-plus", - "version": "0.3.0", + "version": "0.3.1", "license": "BSD-3-Clause", "dependencies": { "infusion": "4.8.0" diff --git a/package.json b/package.json index 8c648a2..5f8c447 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uio-plus", - "version": "0.3.0", + "version": "0.3.1", "description": "User Interface Options Plus (UIO+) allows you to customize websites to match your own personal needs and preferences.", "license": "BSD-3-Clause", "repository": { diff --git a/src/manifest.json b/src/manifest.json index 6943c81..c9d8cac 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -2,7 +2,7 @@ "manifest_version": 3, "name": "UI Options Plus (UIO+)", "short_name": "UIO+", - "version": "0.3.0", + "version": "0.3.1", "description": "User Interface Options Plus (UIO+) allows you to customize websites to match your own personal needs and preferences.", "author": "Fluid Project", "permissions": [ @@ -26,27 +26,29 @@ "background": { "service_worker": "js/background.js" }, - "content_scripts": [{ - "matches": [ - "" - ], - "css": [ - "lib/infusion/src/framework/preferences/css/Enactors.css", - "lib/infusion/src/components/orator/css/Orator.css", - "css/enactors.css" - ], - "js": [ - "lib/infusion/dist/infusion-uio.js", - "js/webInjection.js", - "js/schemas.js", - "js/store.js", - "js/contentView.js", - "js/panels.js", - "js/enactors.js", - "js/enhancer.js", - "js/prefsEditor.js" - ] - }], + "content_scripts": [ + { + "matches": [ + "" + ], + "css": [ + "lib/infusion/src/framework/preferences/css/Enactors.css", + "lib/infusion/src/components/orator/css/Orator.css", + "css/enactors.css" + ], + "js": [ + "lib/infusion/dist/infusion-uio.js", + "js/webInjection.js", + "js/schemas.js", + "js/store.js", + "js/contentView.js", + "js/panels.js", + "js/enactors.js", + "js/enhancer.js", + "js/prefsEditor.js" + ] + } + ], "commands": { "_execute_action": { "suggested_key": { @@ -62,8 +64,12 @@ }, "web_accessible_resources": [ { - "resources": ["lib/infusion/**.*"], - "matches": [""] + "resources": [ + "lib/infusion/**.*" + ], + "matches": [ + "" + ] } ] }