fix(kon): remove all Ramble references — titles, exports, copy, version bump to v1.0

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
jake
2026-03-17 02:09:51 +00:00
parent 11bf7163da
commit ad31249e88
7 changed files with 7 additions and 7 deletions

View File

@@ -65,7 +65,7 @@
<h3 class="text-[18px] font-semibold text-text mb-2">Download Whisper Model</h3>
<p class="text-[13px] text-text-secondary mb-1">
Ramble needs the <span class="font-medium text-text">{modelSize}</span> model to transcribe speech.
Kon needs the <span class="font-medium text-text">{modelSize}</span> model to transcribe speech.
</p>
<p class="text-[11px] text-text-tertiary mb-6">
{modelInfo[modelSize]?.size ?? "?"} · {modelInfo[modelSize]?.accuracy ?? "?"} accuracy · 100% offline

View File

@@ -129,7 +129,7 @@
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
a.href = url;
a.download = `ramble-file-${new Date().toISOString().slice(0, 10)}.${ext}`;
a.download = `kon-file-${new Date().toISOString().slice(0, 10)}.${ext}`;
a.click();
URL.revokeObjectURL(url);
}

View File

@@ -627,7 +627,7 @@
{/each}
</div>
<p class="text-[11px] text-text-tertiary mt-5">Ramble v0.2 · Powered by whisper.cpp · Built by CORBEL Ltd</p>
<p class="text-[11px] text-text-tertiary mt-5">Kon v1.0 · Powered by whisper.cpp · Built by CORBEL Ltd</p>
</div>
</Card>
</div>

View File

@@ -59,7 +59,7 @@ function toHTML(text, segments) {
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ramble Transcript</title>
<title>Kon Transcript</title>
<style>
body { font-family: "DM Sans", system-ui, sans-serif; max-width: 700px; margin: 2rem auto; padding: 0 1rem; color: #1a1816; line-height: 1.7; }
h1 { font-family: "Instrument Serif", Georgia, serif; font-style: italic; }