Skip to content

Commit

Permalink
Update version number
Browse files Browse the repository at this point in the history
  • Loading branch information
voliva committed Sep 15, 2022
1 parent e2828e6 commit c54ba7e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ A link to the latest release can be found within github: [releases](https://gith
- Configure win/lose points (at the moment it assumes 4 points when lose, 11 points when winning)
- Configure win/lose rate (at the moment it assumes 50-50)
- Configure days that the user can't play (at the moment it assumes all days are playable)
- Support mini-seasons (at the moment it only supports regular seasons)

## Technical details

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.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gw2-pvp-pips",
"version": "0.1.0",
"version": "0.2.0",
"private": true,
"dependencies": {
"@react-rxjs/core": "^0.9.8",
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

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

4 changes: 2 additions & 2 deletions src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "app"
version = "0.1.0"
version = "0.2.0"
description = "A Tauri App"
authors = ["you"]
authors = ["[email protected]"]
license = ""
repository = ""
default-run = "app"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
},
"package": {
"productName": "gw2-pvp-pips",
"version": "0.1.0"
"version": "0.2.0"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion src/service/gw2Api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export function getSeasonCurrentPips$(apiKey: string, season_id: string) {
map(
(result): number =>
result.find((line: any) => line.season_id === season_id)?.current
.total_points ?? 1
.total_points ?? 0
)
);
}

0 comments on commit c54ba7e

Please sign in to comment.