Version 1.9.3.1
+ Changed data and hash URL to GitLab Pages, to prevent hitting the GitLab infrastructure directly [#295](https://gitlab.com/KevinRoebert/ClearUrls/issues/295#note_245456134).
This commit is contained in:
		
							parent
							
								
									a645b52db0
								
							
						
					
					
						commit
						ecd5f82b77
					
				| 
						 | 
					@ -48,6 +48,5 @@ pages:
 | 
				
			||||||
  artifacts:
 | 
					  artifacts:
 | 
				
			||||||
    paths:
 | 
					    paths:
 | 
				
			||||||
      - public
 | 
					      - public
 | 
				
			||||||
      - rules.min.hash
 | 
					  only:
 | 
				
			||||||
      - data.minify.json
 | 
					    - master
 | 
				
			||||||
      - rules.minify.hash
 | 
					 | 
				
			||||||
| 
						 | 
					@ -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/),
 | 
					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).
 | 
					and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## [1.9.3.1] - 2019-11-15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Compatibility note
 | 
				
			||||||
 | 
					- Require Firefox >= 55
 | 
				
			||||||
 | 
					- Require Chrome >= 22
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					### Changed
 | 
				
			||||||
 | 
					- Changed data and hash URL to GitLab Pages, to prevent hitting the GitLab infrastructure directly [#295](https://gitlab.com/KevinRoebert/ClearUrls/issues/295#note_245456134).
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## [1.9.3] - 2019-11-15
 | 
					## [1.9.3] - 2019-11-15
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Compatibility note
 | 
					### Compatibility note
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -198,8 +198,8 @@ function initSettings() {
 | 
				
			||||||
    storage.log = {"log": []};
 | 
					    storage.log = {"log": []};
 | 
				
			||||||
    storage.statisticsStatus = true;
 | 
					    storage.statisticsStatus = true;
 | 
				
			||||||
    storage.badged_color = "ffa500";
 | 
					    storage.badged_color = "ffa500";
 | 
				
			||||||
    storage.hashURL = "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.minify.hash?job=hash%20rules";
 | 
					    storage.hashURL = "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
 | 
				
			||||||
    storage.ruleURL = "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules";
 | 
					    storage.ruleURL = "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
    storage.contextMenuEnabled = true;
 | 
					    storage.contextMenuEnabled = true;
 | 
				
			||||||
    storage.historyListenerEnabled = true;
 | 
					    storage.historyListenerEnabled = true;
 | 
				
			||||||
    storage.localHostsSkipping = true;
 | 
					    storage.localHostsSkipping = true;
 | 
				
			||||||
| 
						 | 
					@ -220,19 +220,23 @@ function initSettings() {
 | 
				
			||||||
function replaceOldURLs(url) {
 | 
					function replaceOldURLs(url) {
 | 
				
			||||||
    switch (url) {
 | 
					    switch (url) {
 | 
				
			||||||
        case "https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/rules.hash?flush_cache=true":
 | 
					        case "https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/rules.hash?flush_cache=true":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.minify.hash?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
 | 
				
			||||||
        case "https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/data.json?flush_cache=true":
 | 
					        case "https://raw.githubusercontent.com/KevinRoebert/ClearUrls/master/data/data.json?flush_cache=true":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/rules.hash":
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/rules.hash":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.minify.hash?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
 | 
				
			||||||
        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.json":
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.json":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
        case "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.min.hash?job=hash%20rules":
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.min.hash?job=hash%20rules":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.minify.hash?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
 | 
				
			||||||
        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.min.json":
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.min.json":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.minify.json":
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/raw/master/data/data.minify.json":
 | 
				
			||||||
            return "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules";
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/data.minify.json?job=hash%20rules":
 | 
				
			||||||
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
 | 
				
			||||||
 | 
					        case "https://gitlab.com/KevinRoebert/ClearUrls/-/jobs/artifacts/master/raw/rules.minify.hash?job=hash%20rules":
 | 
				
			||||||
 | 
					            return "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
 | 
				
			||||||
        default:
 | 
					        default:
 | 
				
			||||||
            return url;
 | 
					            return url;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
    "manifest_version": 2,
 | 
					    "manifest_version": 2,
 | 
				
			||||||
    "name": "ClearURLs",
 | 
					    "name": "ClearURLs",
 | 
				
			||||||
    "version": "1.9.3",
 | 
					    "version": "1.9.3.1",
 | 
				
			||||||
    "author": "Kevin Röbert",
 | 
					    "author": "Kevin Röbert",
 | 
				
			||||||
    "description": "Remove tracking elements from URLs.",
 | 
					    "description": "Remove tracking elements from URLs.",
 | 
				
			||||||
    "homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",
 | 
					    "homepage_url": "https://gitlab.com/KevinRoebert/ClearUrls",
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue
	
	Block a user