Version 1.9.1

- Fixed badged in quiet mode
This commit is contained in:
Kevin Röbert 2019-10-24 20:13:38 +02:00
parent 902605f8ee
commit 92d582b8d2
3 changed files with 13 additions and 6 deletions

View File

@ -4,6 +4,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.9.1] - 2019-10-24
### Compatibility note
- Require Firefox >= 55
- Require Chrome >= 22
### Fixed
- Fixed badged in quiet mode
## [1.9.0] - 2019-10-22
### Compatibility note

View File

@ -78,8 +78,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false)
checkOSAndroid().then((res) => {
if(!res) {
if(storage.badgedStatus) {
if(storage.badgedStatus && !quiet) {
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
}
else
@ -159,8 +158,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false)
checkOSAndroid().then((res) => {
if(!res) {
if(storage.badgedStatus) {
if(storage.badgedStatus && !quiet) {
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
}
else
@ -193,7 +191,7 @@ function removeFieldsFormURL(provider, pureUrl, quiet = false)
checkOSAndroid().then((res) => {
if(!res) {
if(storage.badgedStatus) {
if(storage.badgedStatus && !quiet) {
browser.browserAction.setBadgeText({text: (++badges[tabid]).toString(), tabId: tabid});
}
else

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "ClearURLs",
"version": "1.9.0",
"version": "1.9.1",
"author": "Kevin Röbert",
"description": "Remove tracking elements from URLs.",
"homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",