diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f3bd21..16e8bf9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.1.4] - 2022-09-27 + +### Added + +- New character: Cyno +- New character: Candace + ## [1.1.3] - 2022-09-08 ### Added @@ -48,6 +55,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release +[1.1.4]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.1.3...1.1.4 [1.1.3]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.1.2...1.1.3 [1.1.2]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.1.1...1.1.2 [1.1.1]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.1.0...1.1.1 diff --git a/package-lock.json b/package-lock.json index 1912fd9..431502e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "genshin-impact-team-randomizer", - "version": "1.1.3", + "version": "1.1.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "genshin-impact-team-randomizer", - "version": "1.1.3", + "version": "1.1.4", "license": "MIT", "dependencies": { "solid-js": "1.4.7" diff --git a/package.json b/package.json index a1d267a..cbe5fad 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "genshin-impact-team-randomizer", - "version": "1.1.3", + "version": "1.1.4", "description": "A web app to randomize your Genshin Impact team based on the characters that you own", "files": [ "dist" diff --git a/public/img/characters/candace.png b/public/img/characters/candace.png new file mode 100644 index 0000000..6536ca6 --- /dev/null +++ b/public/img/characters/candace.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:976d01032ff7fddcb3f521dd1328ea3bbda5c985195f14988de6019df5f1b962 +size 77428 diff --git a/public/img/characters/cyno.png b/public/img/characters/cyno.png new file mode 100644 index 0000000..8cca5bd --- /dev/null +++ b/public/img/characters/cyno.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1bd3c18e811419e7df772e49d950337f3bea3c58f2e3ec50068dad8e0319f43 +size 76749 diff --git a/src/data/characters.ts b/src/data/characters.ts index 1bd71f0..850a491 100644 --- a/src/data/characters.ts +++ b/src/data/characters.ts @@ -64,6 +64,15 @@ export const characters: GenshinCharacter[] = [ selected: false, collab: false, }, + { + id: 55, + fullName: 'Candace', + shortName: 'Candace', + stars: 4, + elements: ['hydro'], + selected: false, + collab: false, + }, { id: 8, fullName: 'Chongyun', @@ -82,6 +91,15 @@ export const characters: GenshinCharacter[] = [ selected: false, collab: false, }, + { + id: 56, + fullName: 'Cyno', + shortName: 'Cyno', + stars: 5, + elements: ['electro'], + selected: false, + collab: false, + }, { id: 9, fullName: 'Diluc',