release: v1.0.0

This commit is contained in:
Troed Sångberg
2026-06-14 13:56:43 +02:00
parent 4efa9c58a5
commit 1d84017a8c
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@troed/oc-ls-stats",
"version": "0.0.69",
"version": "1.0.0",
"type": "module",
"exports": {
"./tui": {
+2 -2
View File
@@ -3,7 +3,7 @@ import type { TuiPlugin, TuiPluginModule } from "@opencode-ai/plugin/tui"
import { createMemo, createSignal } from "solid-js"
import { appendFileSync } from "fs"
const DEBUG_ENABLED = true
const DEBUG_ENABLED = false
const DEBUG_LOG = "/tmp/oc-ls-stats-debug.log"
function debug(...args: unknown[]) {
if (!DEBUG_ENABLED) return
@@ -308,7 +308,7 @@ const tui: TuiPlugin = async (api) => {
const slots = await fetchSlots(baseUrl, model)
const slotList = Array.isArray(slots) ? slots : slots ? Object.values(slots) : []
if (slotList.length === 0) {
tracker.failure = "no model found"
tracker.failure = "n/a"
bump()
continue
}