diff --git a/add-on/manifest.common.json b/add-on/manifest.common.json index e81a74896..13e199837 100644 --- a/add-on/manifest.common.json +++ b/add-on/manifest.common.json @@ -1,6 +1,6 @@ { "manifest_version": 3, - "name": "__MSG_manifest_extensionName__-RC-MV3", + "name": "__MSG_manifest_extensionName__", "short_name": "__MSG_manifest_shortExtensionName__", "version": "3.0.0", "description": "__MSG_manifest_extensionDescription__", diff --git a/ci/update-manifest.sh b/ci/update-manifest.sh index a4224e1e2..b46f8e17f 100755 --- a/ci/update-manifest.sh +++ b/ci/update-manifest.sh @@ -23,7 +23,7 @@ function set-manifest { # Name includes git revision to make QA and bug reporting easier for users :-) REVISION=$(git show-ref --head HEAD | head -c 7) if [ "$RELEASE_CHANNEL" = "beta" ]; then - set-manifest ".name = \"IPFS Companion (Beta @ $REVISION)\"" + set-manifest ".name = \"IPFS Companion RC-MV3 (Beta @ $REVISION)\"" else set-manifest ".name = \"IPFS Companion (Dev Build @ $REVISION)\"" fi diff --git a/package.json b/package.json index 636ccf8ac..1246e7c62 100644 --- a/package.json +++ b/package.json @@ -36,9 +36,11 @@ "bundle:firefox": "shx cat add-on/manifest.common.json add-on/manifest.firefox.json | json --deep-merge > add-on/manifest.json && web-ext build -a build/firefox/ && run-s build:rename-artifacts", "bundle:firefox:": "npm run bundle:firefox", "bundle:firefox:stable": "npm run bundle:firefox", + "bundle:firefox:beta": "npm run bundle:firefox", "bundle:brave": "shx cat add-on/manifest.common.json add-on/manifest.chromium.json add-on/manifest.brave.json | json --deep-merge > add-on/manifest.json && web-ext build -a build/brave/ && run-s build:rename-artifacts", "bundle:brave:": "npm run bundle:brave", "bundle:brave:stable": "npm run bundle:brave", + "bundle:brave:beta": "npm run bundle:brave", "watch": "npm-run-all build:copy --parallel watch:*", "watch:js": "run-p watch:js:*", "watch:js:webpack": "webpack --watch --mode development --devtool inline-source-map --config ./webpack.config.js",