Skip to content

Commit eef6723

Browse files
committed
Merge branch 'main' into release
2 parents 6559253 + a544599 commit eef6723

6 files changed

Lines changed: 26 additions & 15 deletions

File tree

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flc",
3-
"version": "7.3.1",
3+
"version": "7.4.1",
44
"description": "Foundry Lightweight Client",
55
"type": "module",
66
"scripts": {
@@ -13,8 +13,8 @@
1313
"format": "prettier --write .",
1414
"lint": "prettier --check . && eslint .",
1515
"tauri": "tauri",
16-
"ui:add": "bunx shadcn-svelte@next add",
17-
"ui:update": "bunx shadcn-svelte@next update"
16+
"ui:add": "bunx shadcn-svelte add",
17+
"ui:update": "bunx shadcn-svelte update"
1818
},
1919
"license": "MIT",
2020
"devDependencies": {

src-tauri/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "flc"
3-
version = "7.4.0"
3+
version = "7.4.1"
44
description = "Foundry Lightweight Client"
55
authors = ["phenomen"]
66
license = "MIT"

src-tauri/tauri.conf.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://schema.tauri.app/config/2",
33
"productName": "FLC",
4-
"version": "7.4.0",
4+
"version": "7.4.1",
55
"identifier": "com.phenomen.flc",
66
"build": {
77
"beforeDevCommand": "bun run dev",

src/lib/components/ServerCard.svelte

Lines changed: 19 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -68,17 +68,28 @@
6868
<ZapIcon />{status.partner}</Badge>
6969
{:else if status?.version}
7070
<Badge>
71-
<ZapIcon />Online</Badge>
72-
<Badge variant="secondary"><HexagonIcon />{status.version}</Badge>
73-
{#if status.system}<Badge variant="secondary"
74-
><DicesIcon />{status.system.toUpperCase()}</Badge>
71+
<ZapIcon />Online
72+
</Badge>
73+
<Badge variant="outline">
74+
<HexagonIcon />
75+
{status.version}
76+
</Badge>
77+
{#if status.system}
78+
<Badge variant="outline">
79+
<DicesIcon />
80+
{status.system.toUpperCase()}
81+
</Badge>
82+
{/if}
83+
{#if status.users !== undefined}
84+
<Badge variant="outline">
85+
<SmileIcon />
86+
{status.users}
87+
</Badge>
7588
{/if}
76-
{#if status.users !== undefined}<Badge variant="secondary"
77-
><SmileIcon />{status.users}</Badge
78-
>{/if}
7989
{:else}
8090
<Badge variant="destructive">
81-
<ZapIcon />Offline</Badge>
91+
<ZapIcon />Offline
92+
</Badge>
8293
{/if}
8394
</div>
8495
</div>

src/lib/components/WebGL.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<div
3030
class={cn(
3131
buttonVariants({ variant: "outline", size: "icon" }),
32-
"border-emerald-500 text-emerald-500 hover:text-emerald-500",
32+
" text-emerald-500 hover:text-emerald-400",
3333
!glEnabled && !highPerf && "border-destructive text-destructive hover:text-destructive"
3434
)}
3535
title="Performance Report">

0 commit comments

Comments
 (0)