Skip to content

Commit

Permalink
v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
b-inary committed Jan 1, 2023
1 parent 831eaf8 commit d64bd0f
Show file tree
Hide file tree
Showing 7 changed files with 201 additions and 202 deletions.
359 changes: 179 additions & 180 deletions package-lock.json

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "desktop-postflop",
"private": true,
"version": "0.2.0",
"version": "0.2.1",
"type": "module",
"license": "AGPL-3.0-or-later",
"scripts": {
Expand All @@ -19,24 +19,24 @@
"pinia": "^2.0.28",
"vue": "^3.2.45",
"vue-chartjs": "^5.1.0",
"vue-tippy": "^6.0.0-alpha.65"
"vue-tippy": "^6.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.2.0",
"@tailwindcss/forms": "^0.5.3",
"@tauri-apps/cli": "^1.2.2",
"@types/node": "^18.11.17",
"@types/node": "^18.11.18",
"@vitejs/plugin-vue": "^4.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"eslint": "^8.30.0",
"eslint": "^8.31.0",
"eslint-plugin-vue": "^9.8.0",
"postcss": "^8.4.20",
"prettier": "^2.8.1",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.4",
"vite": "^4.0.3",
"vue-tsc": "^1.0.16"
"vue-tsc": "^1.0.19"
}
}
24 changes: 12 additions & 12 deletions 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,6 +1,6 @@
[package]
name = "desktop-postflop"
version = "0.2.0"
version = "0.2.1"
description = "The most advanced open-source GTO solver"
authors = ["Wataru Inariba"]
license = "AGPL-3.0-or-later"
Expand All @@ -19,7 +19,7 @@ serde = { version = "1.0", features = ["derive"] }
tauri = { version = "1.2.3", features = ["dialog-save", "fs-write-file", "shell-open"] }
postflop-solver = { git = "https://github.com/b-inary/postflop-solver", features = ["custom-alloc"] }
rayon = "1.6.1"
sysinfo = "0.27.1"
sysinfo = "0.27.2"

[features]
# by default Tauri runs in production mode
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": "Desktop Postflop",
"version": "0.2.0"
"version": "0.2.1"
},
"tauri": {
"allowlist": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/AboutPage.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<p>Desktop Postflop v0.2.0</p>
<p>Desktop Postflop v0.2.1</p>
<p>Copyright (C) 2022 Wataru Inariba</p>
<p>
<a
Expand Down
2 changes: 1 addition & 1 deletion src/components/NavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="flex items-center z-10">
<div class="px-4">
<span class="text-lg font-semibold">Desktop Postflop</span>
<span class="pl-2 font-semibold text-gray-400">v0.2.0</span>
<span class="pl-2 font-semibold text-gray-400">v0.2.1</span>
</div>
</div>

Expand Down

0 comments on commit d64bd0f

Please sign in to comment.