From 78c8a7864f1d8de014f016de4cb813f9087c830d Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 7 Aug 2023 05:37:52 +0000 Subject: [PATCH] chore(release): 0.4.0-develop.1 [skip ci] # [0.4.0-develop.1](https://git.lumeweb.com/LumeWeb/extension/compare/v0.3.0...v0.4.0-develop.1) (2023-08-07) ### Bug Fixes * **ci:** change publish step to prepare ([a3ba768](https://git.lumeweb.com/LumeWeb/extension/commit/a3ba768885d0102cbd941fce78c089876734be49)) * **ci:** echo out url for release zip, and provide sha256 hash checksum. ([265bbe3](https://git.lumeweb.com/LumeWeb/extension/commit/265bbe3b9171b5711a58a89a70938dd0c709b3ea)) * **ci:** strip out filename ([13c51dd](https://git.lumeweb.com/LumeWeb/extension/commit/13c51dd7d024da830055b7671c371d1292b2c06a)) ### Features * add new popup app to go to login, dashboard, and logout ([df1895f](https://git.lumeweb.com/LumeWeb/extension/commit/df1895f8243b515921210dd6248b4126a96564c6)) --- CHANGELOG.md | 13 +++++ assets/manifest.json | 134 +++++++++++++++++++++---------------------- 2 files changed, 80 insertions(+), 67 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..86da27a --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,13 @@ +# [0.4.0-develop.1](https://git.lumeweb.com/LumeWeb/extension/compare/v0.3.0...v0.4.0-develop.1) (2023-08-07) + + +### Bug Fixes + +* **ci:** change publish step to prepare ([a3ba768](https://git.lumeweb.com/LumeWeb/extension/commit/a3ba768885d0102cbd941fce78c089876734be49)) +* **ci:** echo out url for release zip, and provide sha256 hash checksum. ([265bbe3](https://git.lumeweb.com/LumeWeb/extension/commit/265bbe3b9171b5711a58a89a70938dd0c709b3ea)) +* **ci:** strip out filename ([13c51dd](https://git.lumeweb.com/LumeWeb/extension/commit/13c51dd7d024da830055b7671c371d1292b2c06a)) + + +### Features + +* add new popup app to go to login, dashboard, and logout ([df1895f](https://git.lumeweb.com/LumeWeb/extension/commit/df1895f8243b515921210dd6248b4126a96564c6)) diff --git a/assets/manifest.json b/assets/manifest.json index 7307d17..585d3a2 100644 --- a/assets/manifest.json +++ b/assets/manifest.json @@ -1,73 +1,73 @@ { - "description": "Lume Web is your decentralized gateway into the web3 internet, the web owned and controlled by its users", - "manifest_version": 2, - "name": "Lume Web", - "version": "0.3.0.3", - "homepage_url": "https://lumeweb.com", - "icons": { - "48": "icon.png", - "96": "icon@2x.png" + "description": "Lume Web is your decentralized gateway into the web3 internet, the web owned and controlled by its users", + "manifest_version": 2, + "name": "Lume Web", + "version": "0.4.0-develop.1", + "homepage_url": "https://lumeweb.com", + "icons": { + "48": "icon.png", + "96": "icon@2x.png" + }, + "permissions": [ + "proxy", + "webRequest", + "webRequestBlocking", + "webNavigation", + "menus", + "" + ], + "background": { + "scripts": [ + "background.js" + ] + }, + "content_scripts": [ + { + "matches": [ + "http://kernel.lume/" + ], + "js": [ + "bootloader.js" + ], + "run_at": "document_end", + "all_frames": true }, - "permissions": [ - "proxy", - "webRequest", - "webRequestBlocking", - "webNavigation", - "menus", + { + "matches": [ "" - ], - "background": { - "scripts": [ - "background.js" - ] + ], + "js": [ + "bridge.js" + ], + "run_at": "document_end", + "all_frames": true }, - "content_scripts": [ - { - "matches": [ - "http://kernel.lume/" - ], - "js": [ - "bootloader.js" - ], - "run_at": "document_end", - "all_frames": true - }, - { - "matches": [ - "" - ], - "js": [ - "bridge.js" - ], - "run_at": "document_end", - "all_frames": true - }, - { - "matches": [ - "" - ], - "js": [ - "cryptoLoader.js" - ], - "run_at": "document_start", - "all_frames": true - } - ], - "web_accessible_resources": [ - "icon@2x.png", - "*.html", - "assets/*" - ], - "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", - "browser_specific_settings": { - "gecko": { - "id": "contact@lumeweb.com", - "strict_min_version": "91.1.0" - } - }, - "browser_action": { - "default_icon": "icon.png", - "default_title": "Lume Web", - "default_popup": "popup.html" + { + "matches": [ + "" + ], + "js": [ + "cryptoLoader.js" + ], + "run_at": "document_start", + "all_frames": true } + ], + "web_accessible_resources": [ + "icon@2x.png", + "*.html", + "assets/*" + ], + "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';", + "browser_specific_settings": { + "gecko": { + "id": "contact@lumeweb.com", + "strict_min_version": "91.1.0" + } + }, + "browser_action": { + "default_icon": "icon.png", + "default_title": "Lume Web", + "default_popup": "popup.html" + } }