Skip to content

Commit

Permalink
🔀 Merge branch 'release/1.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
Pustur committed Jul 26, 2022
2 parents 00bc2c0 + 241d0d9 commit a58296f
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 6 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,21 @@ 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.0.1] - 2022-07-26

### Added

- New character: Shikanoin Heizou
- Full name when hovering a card

### Fixed

- Center Kuki Shinobu icon
- Typo in readme

## [1.0.0] - 2022-07-24

- Initial release

[1.0.1]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.0.0...1.0.1
[1.0.0]: https://github.com/Pustur/genshin-impact-team-randomizer/releases/tag/1.0.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
## Usage

Click on the character icons to select / remove them from the pool of selectable options.
The selection is stored in locally so you don't need to re-enter all your characters on subsequent visits.
The selection is stored locally so you don't need to re-enter all your characters on subsequent visits.

Once your roster is set, hit the "Generate teams" button.

Expand Down
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.

5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
{
"name": "genshin-impact-team-randomizer",
"version": "1.0.0",
"version": "1.0.1",
"description": "A web app to randomize your Genshin Impact team based on the characters that you own",
"files": [
"dist"
],
"scripts": {
"format": "prettier --write .",
"start": "vite",
Expand Down
4 changes: 2 additions & 2 deletions public/img/characters/kuki-shinobu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions public/img/characters/shikanoin-heizou.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/components/Card/Card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ const DisplayCard: Component<IDisplayCard> = props => {
[styles.fiveStar]: props.character.stars === 5,
[styles.collab]: props.character.collab,
}}
title={props.character.fullName}
>
<img
class={styles.characterImage}
Expand Down Expand Up @@ -98,6 +99,7 @@ const InteractiveCard: Component<IInteractiveCard> = props => {
),
}}
onClick={props.onClick}
title={props.character.fullName}
>
<div
class={styles.imageHolder}
Expand Down
9 changes: 9 additions & 0 deletions src/data/characters.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,6 +316,15 @@ export const characters: GenshinCharacter[] = [
selected: false,
collab: false,
},
{
id: 51,
fullName: 'Shikanoin Heizou',
shortName: 'Heizou',
stars: 4,
elements: ['anemo'],
selected: false,
collab: false,
},
{
id: 36,
fullName: 'Sucrose',
Expand Down

0 comments on commit a58296f

Please sign in to comment.