From e485dc762ee4f8ff2e7f49e44628de77bce3e5fb Mon Sep 17 00:00:00 2001 From: hensm Date: Tue, 19 Apr 2022 10:40:02 +0100 Subject: [PATCH] Bump version numbers --- app/package.json | 2 +- ext/bin/build.js | 2 +- ext/src/manifest.json | 100 ++++++++++++++++++++---------------------- 3 files changed, 50 insertions(+), 54 deletions(-) diff --git a/app/package.json b/app/package.json index 7160d18..75c8c3c 100644 --- a/app/package.json +++ b/app/package.json @@ -1,6 +1,6 @@ { "__applicationName": "fx_cast_bridge", - "__applicationVersion": "0.1.0", + "__applicationVersion": "0.2.0", "__applicationDirectoryName": "fx_cast", "__applicationExecutableName": "fx_cast_bridge", "scripts": { diff --git a/ext/bin/build.js b/ext/bin/build.js index 7cc8ad2..4d951cd 100644 --- a/ext/bin/build.js +++ b/ext/bin/build.js @@ -7,7 +7,7 @@ const minimist = require("minimist"); const webExt = require("web-ext"); const BRIDGE_NAME = "fx_cast_bridge"; -const BRIDGE_VERSION = "0.1.0"; +const BRIDGE_VERSION = "0.2.0"; const MIRRORING_APP_ID = "19A6F4AE"; diff --git a/ext/src/manifest.json b/ext/src/manifest.json index 0f551cd..55b68f8 100755 --- a/ext/src/manifest.json +++ b/ext/src/manifest.json @@ -1,70 +1,66 @@ { - "name": "__MSG_extensionName__" - , "description": "__MSG_extensionDescription__" - , "version": "0.1.2" - , "developer": { - "name": "Matt Hensman" - , "url": "https://matt.tf/" - } + "name": "__MSG_extensionName__", + "description": "__MSG_extensionDescription__", + "version": "0.2.0", + "developer": { + "name": "Matt Hensman", + "url": "https://matt.tf/" + }, - , "applications": { + "applications": { "gecko": { - "id": "fx_cast@matt.tf" - , "strict_min_version": "64.0" - , "update_url": "https://hensm.github.io/fx_cast/updates.json" + "id": "fx_cast@matt.tf", + "strict_min_version": "64.0", + "update_url": "https://hensm.github.io/fx_cast/updates.json" } - } - , "browser_action": { + }, + "browser_action": { "theme_icons": [ { - "light": "icons/cast-default-light.svg" - , "dark": "icons/cast-default-dark.svg" - , "size": 32 + "light": "icons/cast-default-light.svg", + "dark": "icons/cast-default-dark.svg", + "size": 32 } ] - } + }, - , "background": { - "scripts": [ "background/background.js" ] - } + "background": { + "scripts": ["background/background.js"] + }, - , "content_scripts": [ + "content_scripts": [ { - "all_frames": true - , "js": [ - "cast/content.js" - ] - , "matches": [ "" ] - , "run_at": "document_start" + "all_frames": true, + "js": ["cast/content.js"], + "matches": [""], + "run_at": "document_start" } - ] + ], - , "default_locale": "en" + "default_locale": "en", - , "icons": { - "48": "icons/icon.svg" - , "96": "icons/icon.svg" - } + "icons": { + "48": "icons/icon.svg", + "96": "icons/icon.svg" + }, - , "manifest_version": 2 + "manifest_version": 2, - , "options_ui": { + "options_ui": { "page": "ui/options/index.html" - } - , "permissions": [ - "history" - , "menus" - , "menus.overrideContext" - , "nativeMessaging" - , "notifications" - , "storage" - , "tabs" - , "webNavigation" - , "webRequest" - , "webRequestBlocking" - , "" - ] - , "web_accessible_resources": [ - "cast/index.js" - ] + }, + "permissions": [ + "history", + "menus", + "menus.overrideContext", + "nativeMessaging", + "notifications", + "storage", + "tabs", + "webNavigation", + "webRequest", + "webRequestBlocking", + "" + ], + "web_accessible_resources": ["cast/index.js"] }