Skip to content

Commit

Permalink
🔀 Merge branch 'release/1.2.9'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Aug 16, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
2 parents c4bfc0b + af37f80 commit e2e9d00
Showing 6 changed files with 24 additions and 16 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.2.9] - 2023-08-16

### Fixed

- Wrong character name: Liney -> Lyney
- Wrong character name: Linette -> Lynette

## [1.2.8] - 2023-08-15

### Added
@@ -125,6 +132,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Initial release

[1.2.9]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.2.8...1.2.9
[1.2.8]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.2.7...1.2.8
[1.2.7]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.2.6...1.2.7
[1.2.6]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.2.5...1.2.6
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "genshin-impact-team-randomizer",
"version": "1.2.8",
"version": "1.2.9",
"description": "A web app to randomize your Genshin Impact team based on the characters that you own",
"files": [
"dist"
File renamed without changes
File renamed without changes
26 changes: 13 additions & 13 deletions src/data/characters.ts
Original file line number Diff line number Diff line change
@@ -316,33 +316,33 @@ export const characters: GenshinCharacter[] = [
selected: false,
collab: false,
},
{
id: 25,
fullName: 'Lisa',
shortName: 'Lisa',
stars: 4,
elements: ['electro'],
selected: true,
collab: false,
},
{
id: 69,
fullName: 'Linette',
shortName: 'Linette',
fullName: 'Lynette',
shortName: 'Lynette',
stars: 4,
elements: ['anemo'],
selected: true,
collab: false,
},
{
id: 70,
fullName: 'Liney',
shortName: 'Liney',
fullName: 'Lyney',
shortName: 'Lyney',
stars: 5,
elements: ['pyro'],
selected: false,
collab: false,
},
{
id: 25,
fullName: 'Lisa',
shortName: 'Lisa',
stars: 4,
elements: ['electro'],
selected: true,
collab: false,
},
{
id: 65,
fullName: 'Mika',

0 comments on commit e2e9d00

Please sign in to comment.