@thelioo/opencode-balancer 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9,6 +9,7 @@ import {
9
9
  onMount,
10
10
  Show,
11
11
  } from "solid-js";
12
+ import packageJson from "../../../package.json" with { type: "json" };
12
13
  import { listAccounts } from "../../core/accounts";
13
14
  import { getBalancingEnabled, setBalancingEnabled } from "../../core/priority";
14
15
  import { getUsageSnapshot } from "../../core/usage/store";
@@ -314,7 +315,7 @@ export function Dashboard(props: {
314
315
  >
315
316
  <box flexDirection="column" flexShrink={0} gap={0} paddingBottom={1}>
316
317
  <text fg={theme().primary} overflow="hidden" truncate wrapMode="none">
317
- opencode-balancer{compact() ? "" : " control center"}
318
+ opencode-balancer v{packageJson.version}
318
319
  </text>
319
320
  <Show when={!compact()}>
320
321
  <text
package/package.json CHANGED
@@ -59,5 +59,5 @@
59
59
  "version": "changeset version"
60
60
  },
61
61
  "type": "module",
62
- "version": "0.2.2"
62
+ "version": "0.2.3"
63
63
  }