diff --git a/.editorconfig b/.editorconfig index 59d9a3a..9ce0756 100644 --- a/.editorconfig +++ b/.editorconfig @@ -3,14 +3,14 @@ root = true [*] charset = utf-8 -indent_style = space indent_size = 2 +indent_style = space insert_final_newline = true +max_line_length = 140 trim_trailing_whitespace = true [*.ts] quote_type = single [*.md] -max_line_length = off trim_trailing_whitespace = false diff --git a/.markdownlint.json b/.markdownlint.json index 365142d..85ecce0 100644 --- a/.markdownlint.json +++ b/.markdownlint.json @@ -1,4 +1,6 @@ { - "line-length": false, + "line-length": { + "line_length": 140 + }, "no-duplicate-heading": false } diff --git a/CHANGELOG.md b/CHANGELOG.md index ec7e673..9b18243 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this ### Added +### Changed + +### Deprecated + +### Removed + +### Fixed + +### Security + +## [2.1.0] - 2020-07-10 + +### Added + - Support for subdomain gateways - Strict mode - More icons @@ -20,14 +34,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this - Now uses `--chunker=buzhash` - Updated `bootstrap` and `ipfs-css` -### Deprecated - -### Removed - -### Fixed - -### Security - ## [2.0.0] - 2019-12-03 Now based on Angular! diff --git a/README.md b/README.md index d9911b3..29ef232 100644 --- a/README.md +++ b/README.md @@ -5,13 +5,14 @@ Cache a specific hash on a bunch of public gateways. -You can view this website on [GitLab Pages](https://natoboram.gitlab.io/public-gateway-cacher) and [IPFS](https://bafybeic4brgje76b5tv4g3qoux7vfxrolng2kmygigfq3ugubq7peae7ke.ipfs.dweb.link). +You can view this website on [GitLab Pages](https://natoboram.gitlab.io/public-gateway-cacher) and [IPFS](https://bafybeiagzg6lcrzuwb7pdxhs4bc7iiexriaxy2kx5fogdaemnqg4oiydl4.ipfs.dweb.link). ![Screenshot](https://bafybeie7txrbzw6ipb62lplnpzsjpz7s4o5q7uufb5rjfelol2cuxeyzye.ipfs.dweb.link/Screenshot_2020-07-09%20Public%20Gateway%20Cacher.png) **NOTE :** All of these (except `ipfs.io` and `dweb.link`) are hosted by third-parties and should be treated as such. -If you'd like to add a new public gateway, please go to [github.com/ipfs/public-gateway-checker](https://github.com/ipfs/public-gateway-checker), submit a pull request then open an issue [here](https://gitlab.com/NatoBoram/public-gateway-cacher/issues/new). +If you'd like to add a new public gateway, please go to +[github.com/ipfs/public-gateway-checker](https://github.com/ipfs/public-gateway-checker), submit a pull request then open an issue [here](https://gitlab.com/NatoBoram/public-gateway-cacher/issues/new). ## Angular diff --git a/package.json b/package.json index a465f37..81d8f2a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "public-gateway-cacher", - "version": "2.0.0", + "version": "2.1.0", "scripts": { "ng": "ng", "start": "ng serve --ssl",