Skip to content

Commit d64bd0f

Browse files
committed
v0.2.1
1 parent 831eaf8 commit d64bd0f

File tree

7 files changed

+201
-202
lines changed

7 files changed

+201
-202
lines changed

package-lock.json

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

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "desktop-postflop",
33
"private": true,
4-
"version": "0.2.0",
4+
"version": "0.2.1",
55
"type": "module",
66
"license": "AGPL-3.0-or-later",
77
"scripts": {
@@ -19,24 +19,24 @@
1919
"pinia": "^2.0.28",
2020
"vue": "^3.2.45",
2121
"vue-chartjs": "^5.1.0",
22-
"vue-tippy": "^6.0.0-alpha.65"
22+
"vue-tippy": "^6.0.0"
2323
},
2424
"devDependencies": {
2525
"@rushstack/eslint-patch": "^1.2.0",
2626
"@tailwindcss/forms": "^0.5.3",
2727
"@tauri-apps/cli": "^1.2.2",
28-
"@types/node": "^18.11.17",
28+
"@types/node": "^18.11.18",
2929
"@vitejs/plugin-vue": "^4.0.0",
3030
"@vue/eslint-config-prettier": "^7.0.0",
3131
"@vue/eslint-config-typescript": "^11.0.2",
3232
"autoprefixer": "^10.4.13",
33-
"eslint": "^8.30.0",
33+
"eslint": "^8.31.0",
3434
"eslint-plugin-vue": "^9.8.0",
3535
"postcss": "^8.4.20",
3636
"prettier": "^2.8.1",
3737
"tailwindcss": "^3.2.4",
3838
"typescript": "^4.9.4",
3939
"vite": "^4.0.3",
40-
"vue-tsc": "^1.0.16"
40+
"vue-tsc": "^1.0.19"
4141
}
4242
}

src-tauri/Cargo.lock

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

src-tauri/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "desktop-postflop"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "The most advanced open-source GTO solver"
55
authors = ["Wataru Inariba"]
66
license = "AGPL-3.0-or-later"
@@ -19,7 +19,7 @@ serde = { version = "1.0", features = ["derive"] }
1919
tauri = { version = "1.2.3", features = ["dialog-save", "fs-write-file", "shell-open"] }
2020
postflop-solver = { git = "https://github.com/b-inary/postflop-solver", features = ["custom-alloc"] }
2121
rayon = "1.6.1"
22-
sysinfo = "0.27.1"
22+
sysinfo = "0.27.2"
2323

2424
[features]
2525
# by default Tauri runs in production mode

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"package": {
1010
"productName": "Desktop Postflop",
11-
"version": "0.2.0"
11+
"version": "0.2.1"
1212
},
1313
"tauri": {
1414
"allowlist": {

src/components/AboutPage.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<template>
2-
<p>Desktop Postflop v0.2.0</p>
2+
<p>Desktop Postflop v0.2.1</p>
33
<p>Copyright (C) 2022 Wataru Inariba</p>
44
<p>
55
<a

src/components/NavBar.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<div class="flex items-center z-10">
77
<div class="px-4">
88
<span class="text-lg font-semibold">Desktop Postflop</span>
9-
<span class="pl-2 font-semibold text-gray-400">v0.2.0</span>
9+
<span class="pl-2 font-semibold text-gray-400">v0.2.1</span>
1010
</div>
1111
</div>
1212

0 commit comments

Comments
 (0)