🐛 Fix migration to Angular 12
parent
28f89c6b09
commit
37060f2a5f
|
@ -3,6 +3,10 @@ image: node:14
|
||||||
before_script:
|
before_script:
|
||||||
- yarn
|
- yarn
|
||||||
|
|
||||||
|
variables:
|
||||||
|
# https://stackoverflow.com/a/69746937/5083247
|
||||||
|
NODE_OPTIONS: --openssl-legacy-provider
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
key:
|
key:
|
||||||
files:
|
files:
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
"johnpapa.angular2",
|
"johnpapa.angular2",
|
||||||
"ms-vscode.vscode-typescript-next",
|
"ms-vscode.vscode-typescript-next",
|
||||||
"ms-vscode.vscode-typescript-tslint-plugin",
|
"ms-vscode.vscode-typescript-tslint-plugin",
|
||||||
"msjsdiag.debugger-for-chrome",
|
|
||||||
"visualstudioexptteam.vscodeintellicode"
|
"visualstudioexptteam.vscodeintellicode"
|
||||||
],
|
],
|
||||||
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
||||||
|
|
42
CHANGELOG.md
42
CHANGELOG.md
|
@ -10,6 +10,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
* Upgraded to Angular 12
|
||||||
|
|
||||||
### Deprecated
|
### Deprecated
|
||||||
|
|
||||||
### Removed
|
### Removed
|
||||||
|
@ -22,33 +24,33 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Added some accessibility tags
|
* Added some accessibility tags
|
||||||
- Added some VSCode settings
|
* Added some VSCode settings
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Updated to Angular 11
|
* Updated to Angular 11
|
||||||
- Updated gateways
|
* Updated gateways
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
- Corrected the title from "Public IPFS Cacher" to "Public Gateway Cacher".
|
* Corrected the title from "Public IPFS Cacher" to "Public Gateway Cacher".
|
||||||
|
|
||||||
## [2.1.0] - 2020-07-10
|
## [2.1.0] - 2020-07-10
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- Support for subdomain gateways
|
* Support for subdomain gateways
|
||||||
- Strict mode
|
* Strict mode
|
||||||
- More icons
|
* More icons
|
||||||
- IPFS colours
|
* IPFS colours
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
- Better screenshot
|
* Better screenshot
|
||||||
- Upgraded to Angular 10
|
* Upgraded to Angular 10
|
||||||
- Now uses `--chunker=buzhash`
|
* Now uses `--chunker=buzhash`
|
||||||
- Updated `bootstrap` and `ipfs-css`
|
* Updated `bootstrap` and `ipfs-css`
|
||||||
|
|
||||||
## [2.0.0] - 2019-12-03
|
## [2.0.0] - 2019-12-03
|
||||||
|
|
||||||
|
@ -58,7 +60,7 @@ Tests were done with `ipfs-npm` : They weren't successful. `ipfs-css` is only mi
|
||||||
|
|
||||||
### Added
|
### Added
|
||||||
|
|
||||||
- GitLab Pages - <https://natoboram.gitlab.io/public-gateway-cacher/>
|
* GitLab Pages - <https://natoboram.gitlab.io/public-gateway-cacher/>
|
||||||
|
|
||||||
## [1.0.0] - 2019-11-28
|
## [1.0.0] - 2019-11-28
|
||||||
|
|
||||||
|
@ -66,9 +68,9 @@ This version is a fork of [github.com/ipfs/public-gateway-checker](https://githu
|
||||||
|
|
||||||
## Types of changes
|
## Types of changes
|
||||||
|
|
||||||
- `Added` for new features.
|
* `Added` for new features.
|
||||||
- `Changed` for changes in existing functionality.
|
* `Changed` for changes in existing functionality.
|
||||||
- `Deprecated` for soon-to-be removed features.
|
* `Deprecated` for soon-to-be removed features.
|
||||||
- `Removed` for now removed features.
|
* `Removed` for now removed features.
|
||||||
- `Fixed` for any bug fixes.
|
* `Fixed` for any bug fixes.
|
||||||
- `Security` in case of vulnerabilities.
|
* `Security` in case of vulnerabilities.
|
||||||
|
|
|
@ -58,4 +58,4 @@
|
||||||
"tslint-rxjs-subject-restrictions-rule": "^1.0.4",
|
"tslint-rxjs-subject-restrictions-rule": "^1.0.4",
|
||||||
"typescript": "~4.3.5"
|
"typescript": "~4.3.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
@import "~@angular/material/core/theming/palette";
|
||||||
|
|
||||||
$ipfs-colour-navy: (default: #0B3A53,
|
$ipfs-colour-navy: (default: #0B3A53,
|
||||||
lighter: #3e6480,
|
lighter: #3e6480,
|
||||||
darker: #00142a,
|
darker: #00142a,
|
||||||
|
|
Loading…
Reference in New Issue