commit
1017fe7182
|
@ -3,14 +3,14 @@ root = true
|
||||||
|
|
||||||
[*]
|
[*]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
indent_style = space
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
max_line_length = 140
|
||||||
trim_trailing_whitespace = true
|
trim_trailing_whitespace = true
|
||||||
|
|
||||||
[*.ts]
|
[*.ts]
|
||||||
quote_type = single
|
quote_type = single
|
||||||
|
|
||||||
[*.md]
|
[*.md]
|
||||||
max_line_length = off
|
|
||||||
trim_trailing_whitespace = false
|
trim_trailing_whitespace = false
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
{
|
{
|
||||||
"line-length": false,
|
"line-length": {
|
||||||
|
"line_length": 140
|
||||||
|
},
|
||||||
"no-duplicate-heading": false
|
"no-duplicate-heading": false
|
||||||
}
|
}
|
||||||
|
|
22
CHANGELOG.md
22
CHANGELOG.md
|
@ -8,6 +8,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
### Deprecated
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
### Security
|
||||||
|
|
||||||
|
## [2.1.0] - 2020-07-10
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
- Support for subdomain gateways
|
- Support for subdomain gateways
|
||||||
- Strict mode
|
- Strict mode
|
||||||
- More icons
|
- More icons
|
||||||
|
@ -20,14 +34,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
||||||
- Now uses `--chunker=buzhash`
|
- Now uses `--chunker=buzhash`
|
||||||
- Updated `bootstrap` and `ipfs-css`
|
- Updated `bootstrap` and `ipfs-css`
|
||||||
|
|
||||||
### Deprecated
|
|
||||||
|
|
||||||
### Removed
|
|
||||||
|
|
||||||
### Fixed
|
|
||||||
|
|
||||||
### Security
|
|
||||||
|
|
||||||
## [2.0.0] - 2019-12-03
|
## [2.0.0] - 2019-12-03
|
||||||
|
|
||||||
Now based on Angular!
|
Now based on Angular!
|
||||||
|
|
|
@ -5,13 +5,14 @@
|
||||||
|
|
||||||
Cache a specific hash on a bunch of public gateways.
|
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)
|
![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.
|
**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
|
## Angular
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "public-gateway-cacher",
|
"name": "public-gateway-cacher",
|
||||||
"version": "2.0.0",
|
"version": "2.1.0",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"ng": "ng",
|
"ng": "ng",
|
||||||
"start": "ng serve --ssl",
|
"start": "ng serve --ssl",
|
||||||
|
|
Loading…
Reference in New Issue