From c78acc4d0c08489e18e890d8c035d7869b2eea07 Mon Sep 17 00:00:00 2001 From: Thomas Schmid Date: Sun, 12 Apr 2020 21:16:51 +0200 Subject: [PATCH] Bump Version to 0.4.1 closes #0.4.1 --- package.json | 4 ++-- src/wx/manifest.json | 46 ++++++++++++++++++++++++++++++++------------ 2 files changed, 36 insertions(+), 14 deletions(-) diff --git a/package.json b/package.json index 6bc25222de..05796d92bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sieve", - "version": "0.4.0", + "version": "0.4.1", "description": "Configures server-side sieve email filters", "directories": { "doc": "docs", @@ -35,4 +35,4 @@ "url": "https://github.com/thsmi/sieve/issues" }, "homepage": "https://github.com/thsmi/sieve#readme" -} +} \ No newline at end of file diff --git a/src/wx/manifest.json b/src/wx/manifest.json index d274505bf4..daada3847f 100644 --- a/src/wx/manifest.json +++ b/src/wx/manifest.json @@ -1,9 +1,9 @@ { "name": "Sieve", "description": "Manages Sieve Message Filters", - "version": "0.4.0", - "icons" : { - "64" : "libs/icons/linux.png" + "version": "0.4.1", + "icons": { + "64": "libs/icons/linux.png" }, "applications": { "gecko": { @@ -15,33 +15,55 @@ }, "manifest_version": 2, "permissions": [ - "accountsRead", "tabs", "storage" + "accountsRead", + "tabs", + "storage" ], - "experiment_apis": { "SieveAccountsApi": { "schema": "api/sieve/SieveAccountsApi.json", "parent": { - "scopes": ["addon_parent"], + "scopes": [ + "addon_parent" + ], "script": "api/sieve/SieveAccountsApi.js", - "paths": [["sieve", "accounts"]] + "paths": [ + [ + "sieve", + "accounts" + ] + ] } }, "SieveSessionApi": { "schema": "api/sieve/SieveSessionApi.json", "parent": { - "scopes": ["addon_parent"], + "scopes": [ + "addon_parent" + ], "script": "api/sieve/SieveSessionApi.js", - "paths": [["sieve", "session"]] + "paths": [ + [ + "sieve", + "session" + ] + ] } }, "SieveMenuApi": { "schema": "api/sieve/SieveMenuApi.json", "parent": { - "scopes": ["addon_parent"], + "scopes": [ + "addon_parent" + ], "script": "api/sieve/SieveMenuApi.js", - "paths": [["sieve", "menu"]] + "paths": [ + [ + "sieve", + "menu" + ] + ] } } } -} +} \ No newline at end of file