Skip to content

Commit 1402094

Browse files
committed
fix: won't pass "none" as WL version anymore
also removed the client buttons for the sidebar, they were redundant. settings will be another day
1 parent b16f131 commit 1402094

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src-tauri/src/simba.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ pub async fn run_simba(path: PathBuf, args: Vec<String>) {
355355
cmd.env("SCRIPT_SIMBA_VERSION", &args[1]);
356356
}
357357

358-
if args[2] != "latest" {
358+
if (args[2] != "latest") && (args[2] != "none") {
359359
cmd.env("SCRIPT_WASPLIB_VERSION", &args[2]);
360360
}
361361

src/routes/Sidebar.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts">
22
import { page } from "$app/state"
3-
import ExecuteButton from "$lib/components/ExecuteButton.svelte"
3+
/* import ExecuteButton from "$lib/components/ExecuteButton.svelte" */
44
import { devModeStore, devPathStore, devUpdatesStore } from "$lib/store"
55
import { Tooltip, Portal } from "@skeletonlabs/skeleton-svelte"
66
import type { Session } from "@supabase/supabase-js"
@@ -104,8 +104,8 @@
104104
</Portal>
105105
</Tooltip>
106106

107-
<ExecuteButton icon="⚡" label="RuneLite" exe="runelite" args={[]} />
108-
<ExecuteButton icon="🔥" label="OSClient" exe="osclient" args={[]} />
107+
<!-- <ExecuteButton icon="⚡" label="RuneLite" exe="runelite" args={[]} />
108+
<ExecuteButton icon="🔥" label="OSClient" exe="osclient" args={[]} /> -->
109109

110110
<Tooltip positioning={{ placement: "top" }} openDelay={700}>
111111
<Tooltip.Trigger class="underline">

0 commit comments

Comments
 (0)