diff --git a/CHANGELOG.md b/CHANGELOG.md
index 42ccae6..ad6a1da 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -7,6 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Ongoing
- Rewrite ClearURLs completely form scratch in typescript
- Add features from the milestone [%1](https://gitlab.com/KevinRoebert/ClearUrls/-/milestones/1)
+- Dedicated documentation page like [docs.drasyl.org](https://docs.drasyl.org)
## [1.20.0] - 2020-11-20
@@ -20,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Changed url decoding to prevent endless loop
- Performance optimizations for rules by [@thexeos](https://gitlab.com/thexeos)
+- Changed default rules and hash host to Github Pages
+- Changed rules changelog button `href` to the new rules submodule repo
## [1.19.0] - 2020-07-22
diff --git a/core_js/storage.js b/core_js/storage.js
index 5cf17da..be780ad 100644
--- a/core_js/storage.js
+++ b/core_js/storage.js
@@ -193,8 +193,8 @@ function initSettings() {
storage.log = {"log": []};
storage.statisticsStatus = true;
storage.badged_color = "#ffa500";
- storage.hashURL = "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash";
- storage.ruleURL = "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json";
+ storage.hashURL = "https://rules2.clearurls.xyz/rules.minify.hash";
+ storage.ruleURL = "https://rules2.clearurls.xyz/data.minify.json";
storage.contextMenuEnabled = true;
storage.historyListenerEnabled = true;
storage.localHostsSkipping = true;
@@ -238,6 +238,10 @@ function replaceOldURLs(url) {
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";
+ case "https://kevinroebert.gitlab.io/ClearUrls/data/data.minify.json":
+ return "https://rules2.clearurls.xyz/data.minify.json";
+ case "https://kevinroebert.gitlab.io/ClearUrls/data/rules.minify.hash":
+ return "https://rules2.clearurls.xyz/rules.minify.hash";
default:
return url;
}
diff --git a/html/popup.html b/html/popup.html
index d018f5b..ae39e8e 100644
--- a/html/popup.html
+++ b/html/popup.html
@@ -136,7 +136,7 @@ along with this program. If not, see