From d5d6f58482441cc59b572551c5538a235282597d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20R=C3=B6bert?= Date: Mon, 23 Sep 2019 23:36:24 +0200 Subject: [PATCH] Version 1.8.3 + Fixed OR case --- CHANGELOG.md | 9 +++++++++ clearurls.js | 4 ++-- manifest.json | 2 +- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e39b3aa..0d1a815 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.8.3] - 2019-09-23 + +### Compatibility note +- Require Firefox >= 55 +- Require Chrome >= 22 + +### Fixed +- Fixed OR case + ## [1.8.2] - 2019-09-23 ### Compatibility note diff --git a/clearurls.js b/clearurls.js index b8fa160..cdb4f98 100644 --- a/clearurls.js +++ b/clearurls.js @@ -631,8 +631,8 @@ function start() * Cancel the active request. */ if(result.redirect && - request.type === 'main_frame' || - request.type === 'sub_frame') + (request.type === 'main_frame' || + request.type === 'sub_frame')) { if(providers[i].shouldForceRedirect() ) { browser.tabs.update(request.tabId, {url: result.url}); diff --git a/manifest.json b/manifest.json index f5288ec..1dd6c71 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "manifest_version": 2, "name": "ClearURLs", - "version": "1.8.2", + "version": "1.8.3", "author": "Kevin Röbert", "description": "Remove tracking elements from URLs.", "homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",