Skip to content

Commit b0bade1

Browse files
committed
🔀 Merge branch 'release/1.4.12'
2 parents df380fd + a647961 commit b0bade1

File tree

7 files changed

+45
-5
lines changed

7 files changed

+45
-5
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.12] - 2025-06-16
9+
10+
### Added
11+
12+
- New character: Skirk
13+
- New character: Dahlia
14+
15+
### Fixed
16+
17+
- Typo Alhatham -> Alhaitham
18+
819
## [1.4.11] - 2025-05-05
920

1021
### Added
@@ -270,6 +281,7 @@ Note: From now on I will release the characters for the whole patch instead of p
270281

271282
- Initial release
272283

284+
[1.4.12]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.11...1.4.12
273285
[1.4.11]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.10...1.4.11
274286
[1.4.10]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.9...1.4.10
275287
[1.4.9]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.8...1.4.9

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genshin-impact-team-randomizer",
3-
"version": "1.4.11",
3+
"version": "1.4.12",
44
"description": "A web app to randomize your Genshin Impact team based on the characters that you own",
55
"type": "module",
66
"files": [

public/img/characters/dahlia.png

Lines changed: 3 additions & 0 deletions
Loading

public/img/characters/skirk.png

Lines changed: 3 additions & 0 deletions
Loading

src/data/characters.ts

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ export const characters: GenshinCharacter[] = [
2525
},
2626
{
2727
id: 62,
28-
fullName: 'Alhatham',
29-
shortName: 'Alhatham',
28+
fullName: 'Alhaitham',
29+
shortName: 'Alhaitham',
3030
stars: 5,
3131
elements: ['dendro'],
3232
weapon: 'sword',
@@ -221,6 +221,17 @@ export const characters: GenshinCharacter[] = [
221221
selected: false,
222222
collab: false,
223223
},
224+
{
225+
id: 101,
226+
fullName: 'Dahlia',
227+
shortName: 'Dahlia',
228+
stars: 4,
229+
elements: ['hydro'],
230+
weapon: 'catalyst',
231+
gender: ['M'],
232+
selected: false,
233+
collab: false,
234+
},
224235
{
225236
id: 64,
226237
fullName: 'Dehya',
@@ -848,6 +859,17 @@ export const characters: GenshinCharacter[] = [
848859
selected: false,
849860
collab: false,
850861
},
862+
{
863+
id: 100,
864+
fullName: 'Skirk',
865+
shortName: 'Skirk',
866+
stars: 5,
867+
elements: ['cryo'],
868+
weapon: 'sword',
869+
gender: ['F'],
870+
selected: false,
871+
collab: false,
872+
},
851873
{
852874
id: 36,
853875
fullName: 'Sucrose',

0 commit comments

Comments
 (0)