Skip to content

Commit

Permalink
deps: update some deps and conditionally render beta alert
Browse files Browse the repository at this point in the history
  • Loading branch information
xTVaser committed Oct 10, 2023
1 parent 1fa54a4 commit e917c68
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 25 deletions.
100 changes: 77 additions & 23 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
Expand Up @@ -12,7 +12,7 @@ rust-version = "1.61"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[build-dependencies]
tauri-build = { version = "1.4.0", features = [] }
tauri-build = { version = "1.5.0", features = [] }

[dependencies]
backtrace = "0.3.69"
Expand All @@ -32,7 +32,7 @@ serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.107"
sysinfo = "0.29.10"
tar = "0.4.40"
tauri = { version = "1.4.1", features = ["api-all", "devtools", "reqwest-client"] }
tauri = { version = "1.5.1", features = ["api-all", "devtools", "reqwest-client"] }
thiserror = "1.0.49"
tokio = { version = "1", features = ["full"] }
walkdir = "2.4.0"
Expand Down
2 changes: 2 additions & 0 deletions src/routes/Game.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@
on:job={runGameJob}
/>
{:else}
{#if gameInBeta}
<Alert color="red" rounded={false} class="border-t-4">
<span class="font-bold">{$_("gameControls_beta_headerA")}</span>
<em>{$_("gameControls_beta_headerB")}</em>
Expand Down Expand Up @@ -162,6 +163,7 @@
</li>
</ul>
</Alert>
{/if}
<GameControls
{activeGame}
on:change={updateGameState}
Expand Down

0 comments on commit e917c68

Please sign in to comment.