diff --git a/CHANGELOG.md b/CHANGELOG.md index 7254721..325835f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,44 @@ All versions upwards from `2.0.0` project will be documented in this file. For all older version, please check the [Releases](https://github.com/marcopixel/r6operators/releases/) tab. +## 2.5.0 (2023-05-24) + +### ✨ Features + +- 🌟 Added Fenrir operator icon & metadata (thanks to @danielwerg, [557b359](https://github.com/marcopixel/r6operators/commit/557b359e7af2e9d761a67a58739e19c4ba6e41e2)) +- 🌟 Added Brava operator icon & metadata (thanks to @danielwerg, [afc28fa](https://github.com/marcopixel/r6operators/commit/afc28fa35fbb157e7e0d1d2ff1e04778dc45180f)) + +### πŸ› Bug Fixes + +- πŸ›  Updated operator metadata ([c457841](https://github.com/marcopixel/r6operators/commit/c4578413e73a71a1a172022e41db53003ebae618)) + +### 🚨 Breaking Changes + +- **BREAKING**: Replaced `[op].unit` with `[op].org` and `[op].squad` ([c457841](https://github.com/marcopixel/r6operators/commit/c4578413e73a71a1a172022e41db53003ebae618)) + +## 2.4.0 (2022-12-07) + +### ✨ Features + +- 🌟 Added Solis operator icon & metadata - thanks to @danielwerg for making the icon and collecting the metadata ([b6b1741](https://github.com/marcopixel/r6operators/commit/b6b17413ee3a8cb4b3dc4328c2ab36062363208a)) + +## 2.3.0 (2022-09-06) + +### ✨ Features + +- 🌟 Added Grim operator icon & metadata ([b812269](https://github.com/marcopixel/r6operators/commit/b81226947cedca55a62ac3dfb5ebe1f62548dbc5)) +- πŸ›  Added function to automatically calculate operator prices (by @danielwerg, [08989b6](https://github.com/marcopixel/r6operators/commit/08989b6666b2d1fc5fbe7fccdbb3b067fbdaea7a)) + +## 2.2.0 (2022-06-23) + +### ✨ Features + +- 🌟 Added Sens operator icon & metadata ([3132a88](https://github.com/marcopixel/r6operators/commit/3132a88e0d8f3b4dd4e7fd1acfb7fa1040651f99)) + +### πŸ› Bug Fixes + +- πŸ›  Updated operator prices + glaz rating (by @danielwerg, [6eaf958](https://github.com/marcopixel/r6operators/commit/6eaf958e24fcaba0b01ba5be7f351348606a867c)) + ## 2.1.0 (2022-03-16) ### ✨ Features diff --git a/README.md b/README.md index 9311f1d..966b43e 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,8 @@ r6operators.alibi // id: 'alibi', // name: 'Alibi', // role: 'Defender', -// unit: 'GIS', +// org: 'GIS', +// squad: 'VIPERSTRIKE', // ratings: { // health: 1, // speed: 3, @@ -95,7 +96,8 @@ r6operators.alibi // id: 'alibi', // name: 'Alibi', // role: 'Defender', -// unit: 'GIS', +// org: 'GIS', +// squad: 'VIPERSTRIKE', // ratings: { // health: 1, // speed: 3, @@ -187,6 +189,7 @@ Caught a mistake or want to contribute to the documentation? [Edit this page on - [@colebemis](https://github.com/colebemis) for his work on [feather](https://github.com/feathericons/feather), which gave me an awesome reference for this project. - [@dtSniper](https://twitter.com/sniperdt) for creating the IQ, Thatcher, Fuze, Glaz, Bandit, Kapkan, Tachanka, Pulse, Sledge and Doc icons. - [@joeyfjj](https://twitter.com/joeyfjj) for creating the Goyo, Mute, Smoke, JΓ€ger and Blitz icons. +- [@danielwerg](https://github.com/danielwerg/) for creating the Fenrir, Brava and Solis icons and his awesome price calculator function. - [@LaxisB](https://github.com/LaxisB/), [@NaughtyMuppet](https://github.com/NaughtyMuppet) & [@danielwerg](https://github.com/danielwerg) for general help on this project. <3 ## License diff --git a/scripts/config.ts b/scripts/config.ts index 435aee8..c043754 100644 --- a/scripts/config.ts +++ b/scripts/config.ts @@ -8,7 +8,7 @@ const DIST_DIR = path.resolve(`./dist`) const ENTRY_FILE = path.resolve("./src/index.ts") const DECLARATION_FILE = path.resolve("./src/types/index.d.ts") -const CURRENT_SEASON = "Y7S4" +const CURRENT_SEASON = "Y8S2" const SVGO_PLUGINS: PluginConfig[] = [ // "cleanupIDs" plugin is added at the build-optimized-svg script directly