From b97bbfe295e08fe69a3c75212ba94d08289c6f5d Mon Sep 17 00:00:00 2001 From: sereneblue Date: Fri, 8 May 2020 23:40:17 -0400 Subject: [PATCH] chore: update version --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- package-lock.json | 2 +- package.json | 2 +- src/manifest.json | 40 ++++++++++++++++++++-------------------- 5 files changed, 35 insertions(+), 23 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bfb2560d..549a68f8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ + + +## [v0.20.4-rc](https://github.com/sereneblue/chameleon/compare/v0.20.3-rc...v0.20.4-rc) (2020-05-08) + +### Bug Fixes + +- only call contextmenu if platform is not android +- listener for external connections +- **font spoofing:** add support for loaded fonts; [#360](https://github.com/sereneblue/chameleon/issues/360) +- **popup:** prevent multiple clicks for profile change +- **profiles:** add viewport to iOS devices; [#347](https://github.com/sereneblue/chameleon/issues/347) + ## [v0.20.3-rc](https://github.com/sereneblue/chameleon/compare/v0.20.2-rc...v0.20.3-rc) (2020-05-04) diff --git a/README.md b/README.md index 1b47ad83..b174fb1b 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Chameleon -![Chameleon version](https://img.shields.io/badge/version-0.20.3-brightgreen.svg) +![Chameleon version](https://img.shields.io/badge/version-0.20.4-brightgreen.svg) ![GPL v3 License](https://img.shields.io/badge/license-GPL%20v3-blue.svg) [![Crowdin](https://d322cqt584bo4o.cloudfront.net/chameleon/localized.svg)](https://crowdin.com/project/chameleon) diff --git a/package-lock.json b/package-lock.json index a8b9fb21..2d25cd1d 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "chameleon-ext", - "version": "0.20.3", + "version": "0.20.4", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index dfad1d92..af34fca3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "chameleon-ext", - "version": "0.20.3", + "version": "0.20.4", "description": "Spoof your browser profile. Includes a few privacy enhancing options.", "author": "sereneblue", "license": "GPLv3", diff --git a/src/manifest.json b/src/manifest.json index 547f7a0b..bdb2ef50 100644 --- a/src/manifest.json +++ b/src/manifest.json @@ -1,27 +1,27 @@ { - "name": "Chameleon", - "description": "__MSG_extDescription__", - "author": "sereneblue", - "version": "0.20.3.1", - "version_name": "0.20.3", - "manifest_version": 2, - "browser_specific_settings": { - "gecko": { - "id": "{3579f63b-d8ee-424f-bbb6-6d0ce3285e6a}", - "strict_min_version": "59.0a1" + "name" : "Chameleon", + "description" : "__MSG_extDescription__", + "author" : "sereneblue", + "version" : "0.20.4.0", + "version_name" : "0.20.4-rc", + "manifest_version" : 2, + "browser_specific_settings" : { + "gecko" : { + "id" : "{3579f63b-d8ee-424f-bbb6-6d0ce3285e6a}", + "strict_min_version" : "59.0a1" } }, - "default_locale": "en", - "icons": { - "48": "icons/icon.svg", - "128": "icons/icon.svg" + "default_locale" : "en", + "icons" : { + "48" : "icons/icon.svg", + "128" : "icons/icon.svg" }, - "browser_action": { - "default_icon": "icons/icon.svg", - "default_popup": "popup/popup.html" + "browser_action" : { + "default_icon" : "icons/icon.svg", + "default_popup" : "popup/popup.html" }, - "background": { - "scripts": ["background.js"] + "background" : { + "scripts" : ["background.js"] }, - "permissions": ["", "alarms", "contextMenus", "notifications", "privacy", "storage", "tabs", "webRequest", "webRequestBlocking"] + "permissions" : ["", "alarms", "contextMenus", "notifications", "privacy", "storage", "tabs", "webRequest", "webRequestBlocking"] }