Bump version numbers

This commit is contained in:
hensm
2022-04-19 10:40:02 +01:00
parent 7a91a63435
commit e485dc762e
3 changed files with 50 additions and 54 deletions

View File

@@ -1,6 +1,6 @@
{ {
"__applicationName": "fx_cast_bridge", "__applicationName": "fx_cast_bridge",
"__applicationVersion": "0.1.0", "__applicationVersion": "0.2.0",
"__applicationDirectoryName": "fx_cast", "__applicationDirectoryName": "fx_cast",
"__applicationExecutableName": "fx_cast_bridge", "__applicationExecutableName": "fx_cast_bridge",
"scripts": { "scripts": {

View File

@@ -7,7 +7,7 @@ const minimist = require("minimist");
const webExt = require("web-ext"); const webExt = require("web-ext");
const BRIDGE_NAME = "fx_cast_bridge"; const BRIDGE_NAME = "fx_cast_bridge";
const BRIDGE_VERSION = "0.1.0"; const BRIDGE_VERSION = "0.2.0";
const MIRRORING_APP_ID = "19A6F4AE"; const MIRRORING_APP_ID = "19A6F4AE";

View File

@@ -1,70 +1,66 @@
{ {
"name": "__MSG_extensionName__" "name": "__MSG_extensionName__",
, "description": "__MSG_extensionDescription__" "description": "__MSG_extensionDescription__",
, "version": "0.1.2" "version": "0.2.0",
, "developer": { "developer": {
"name": "Matt Hensman" "name": "Matt Hensman",
, "url": "https://matt.tf/" "url": "https://matt.tf/"
} },
, "applications": { "applications": {
"gecko": { "gecko": {
"id": "fx_cast@matt.tf" "id": "fx_cast@matt.tf",
, "strict_min_version": "64.0" "strict_min_version": "64.0",
, "update_url": "https://hensm.github.io/fx_cast/updates.json" "update_url": "https://hensm.github.io/fx_cast/updates.json"
} }
} },
, "browser_action": { "browser_action": {
"theme_icons": [ "theme_icons": [
{ {
"light": "icons/cast-default-light.svg" "light": "icons/cast-default-light.svg",
, "dark": "icons/cast-default-dark.svg" "dark": "icons/cast-default-dark.svg",
, "size": 32 "size": 32
} }
] ]
} },
, "background": { "background": {
"scripts": [ "background/background.js" ] "scripts": ["background/background.js"]
} },
, "content_scripts": [ "content_scripts": [
{ {
"all_frames": true "all_frames": true,
, "js": [ "js": ["cast/content.js"],
"cast/content.js" "matches": ["<all_urls>"],
] "run_at": "document_start"
, "matches": [ "<all_urls>" ]
, "run_at": "document_start"
} }
] ],
, "default_locale": "en" "default_locale": "en",
, "icons": { "icons": {
"48": "icons/icon.svg" "48": "icons/icon.svg",
, "96": "icons/icon.svg" "96": "icons/icon.svg"
} },
, "manifest_version": 2 "manifest_version": 2,
, "options_ui": { "options_ui": {
"page": "ui/options/index.html" "page": "ui/options/index.html"
} },
, "permissions": [ "permissions": [
"history" "history",
, "menus" "menus",
, "menus.overrideContext" "menus.overrideContext",
, "nativeMessaging" "nativeMessaging",
, "notifications" "notifications",
, "storage" "storage",
, "tabs" "tabs",
, "webNavigation" "webNavigation",
, "webRequest" "webRequest",
, "webRequestBlocking" "webRequestBlocking",
, "<all_urls>" "<all_urls>"
] ],
, "web_accessible_resources": [ "web_accessible_resources": ["cast/index.js"]
"cast/index.js"
]
} }