From 95782ebd7affb2f88a34cec28b38040ea8c186c5 Mon Sep 17 00:00:00 2001 From: Sander Ronde Date: Tue, 3 Mar 2020 19:11:47 +0100 Subject: [PATCH] 2.2.9 --- README.md | 8 +++++--- app/elements/util/change-log/changelog.js | 6 ++++++ app/manifest.chrome.json | 2 +- app/manifest.edge.json | 2 +- app/manifest.firefox.json | 2 +- app/manifest.opera.json | 2 +- package.json | 2 +- 7 files changed, 16 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 990904a0..6d316e33 100644 --- a/README.md +++ b/README.md @@ -53,13 +53,15 @@ you clicked on (page, link, selection, image, video or audio). ### Installing from your browser's web store -> [2.2.8](https://github.com/SanderRonde/CustomRightClickMenu/releases/tag/2.2.8.2) is the current latest version +> [2.2.9](https://github.com/SanderRonde/CustomRightClickMenu/releases/tag/2.2.9) is the current latest version. -* [Chrome Webstore](https://chrome.google.com/webstore/detail/custom-right-click-menu/onnbmgmepodkilcbdodhfepllfmafmlj) - On version 2.2.8 +* [Chrome Webstore](https://chrome.google.com/webstore/detail/custom-right-click-menu/onnbmgmepodkilcbdodhfepllfmafmlj) - On version 2.2.9 * [Firefox Add-on](https://addons.mozilla.org/nl/firefox/addon/custom-right-click-menu/) - On 2.2.8 -* [Edge Extension](https://www.microsoft.com/store/apps/9P6T9NZ0QML9) - On 2.2.7, 2.2.8 certification in progress +* [Edge Extension](https://www.microsoft.com/store/apps/9P6T9NZ0QML9) - On 2.2.8 certification in progress * Opera extension - Under certification for initial release (no changes in review status since submission in may 2018) +**Note**: 2.2.9 is a downgrade of 2.2.8 to comply with Google's mysterious web store policies, I wouldn't recommend upgrading from 2.2.8 to 2.2.9 if you have the choice. + ### Installing from repo Clone the repo, run [yarn --ignore-engines](https://yarnpkg.com) to install dependencies and run `yarn build` to build. Load the dist that matches your browser from dist/{browser}. diff --git a/app/elements/util/change-log/changelog.js b/app/elements/util/change-log/changelog.js index d95b6486..54e0e805 100644 --- a/app/elements/util/change-log/changelog.js +++ b/app/elements/util/change-log/changelog.js @@ -200,6 +200,12 @@ 'Hide root node when empty', 'Add another CRM API function (crmAPI.fetchBackground) that can do a fetch' + ' without running into [CORB](https://www.chromestatus.com/feature/5629709824032768) issues' + ], + '2.2.9': [ + 'Remove detection of extensions installed alongside this one such as Tampermonkey and Stylish' + + ' because Google thinks the permissions used are extraneous', + 'Remove greasemonkey-style resources because Google thinks the permissions used are extraneous', + 'Remove activeTab permission since it is overshadowed by the tabs permission' ] }; diff --git a/app/manifest.chrome.json b/app/manifest.chrome.json index 0f095c73..d9915d57 100644 --- a/app/manifest.chrome.json +++ b/app/manifest.chrome.json @@ -4,7 +4,7 @@ "options_page": "html/options.html", "name": "Custom Right-Click Menu", "description": "Create a custom right-click menu and choose the links and scripts you want in it.", - "version": "2.2.8", + "version": "2.2.9", "short_name": "CRM-dev", "minimum_chrome_version": "26", diff --git a/app/manifest.edge.json b/app/manifest.edge.json index 83cda48d..9f9bbe5b 100644 --- a/app/manifest.edge.json +++ b/app/manifest.edge.json @@ -5,7 +5,7 @@ "options_page": "html/options.html", "name": "Custom Right-Click Menu for Microsoft Edge", "description": "Create a custom right-click menu and choose the links and scripts you want in it.", - "version": "2.2.8", + "version": "2.2.9", "short_name": "CRM-dev", "background": { diff --git a/app/manifest.firefox.json b/app/manifest.firefox.json index e72e63aa..a0319550 100644 --- a/app/manifest.firefox.json +++ b/app/manifest.firefox.json @@ -8,7 +8,7 @@ }, "name": "Custom Right-Click Menu", "description": "Create a custom right-click menu and choose the links and scripts you want in it.", - "version": "2.2.8", + "version": "2.2.9", "short_name": "CRM-dev", "applications": { "gecko": { diff --git a/app/manifest.opera.json b/app/manifest.opera.json index 157bd80d..9890be25 100644 --- a/app/manifest.opera.json +++ b/app/manifest.opera.json @@ -4,7 +4,7 @@ "options_page": "html/options.html", "name": "Custom Right-Click Menu", "description": "Create a custom right-click menu and choose the links and scripts you want in it.", - "version": "2.2.8", + "version": "2.2.9", "short_name": "CRM-dev", "minimum_opera_version": "51.0", diff --git a/package.json b/package.json index 77a7689a..2cf1f3dd 100644 --- a/package.json +++ b/package.json @@ -208,6 +208,6 @@ "package": "gulp genCRX && gulp genXPI && yarn genAppx", "postinstall": "node -e \"try { require('fs').symlinkSync(require('path').resolve('node_modules/@bower_components'), 'app/bower_components', 'junction') } catch (e) { }\"" }, - "version": "2.2.8", + "version": "2.2.9", "dependencies": {} }