Skip to content

Commit

Permalink
chore: update version
Browse files Browse the repository at this point in the history
  • Loading branch information
sereneblue committed May 9, 2020
1 parent 0a76fb7 commit b97bbfe
Show file tree
Hide file tree
Showing 5 changed files with 35 additions and 23 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
<a name="v0.20.4-rc"></a>

## [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)

<a name="v0.20.3-rc"></a>

## [v0.20.3-rc](https://github.com/sereneblue/chameleon/compare/v0.20.2-rc...v0.20.3-rc) (2020-05-04)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
40 changes: 20 additions & 20 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -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": ["<all_urls>", "alarms", "contextMenus", "notifications", "privacy", "storage", "tabs", "webRequest", "webRequestBlocking"]
"permissions" : ["<all_urls>", "alarms", "contextMenus", "notifications", "privacy", "storage", "tabs", "webRequest", "webRequestBlocking"]
}

0 comments on commit b97bbfe

Please sign in to comment.