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:
@@ -1,7 +1,7 @@
|
|||||||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Instrument+Serif:ital@0;1&display=swap');
|
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300..700;1,9..40,300..700&family=Instrument+Serif:ital@0;1&display=swap');
|
||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
/* === Ramble Design Tokens === */
|
/* === Kon Design Tokens === */
|
||||||
@theme {
|
@theme {
|
||||||
/* Surfaces — warm layered depth */
|
/* Surfaces — warm layered depth */
|
||||||
--color-bg: #0f0e0c;
|
--color-bg: #0f0e0c;
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<meta charset="utf-8" />
|
<meta charset="utf-8" />
|
||||||
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
<link rel="icon" href="%sveltekit.assets%/favicon.png" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||||
<title>Ramble</title>
|
<title>Kon</title>
|
||||||
%sveltekit.head%
|
%sveltekit.head%
|
||||||
</head>
|
</head>
|
||||||
<body data-sveltekit-preload-data="hover">
|
<body data-sveltekit-preload-data="hover">
|
||||||
|
|||||||
@@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
<h3 class="text-[18px] font-semibold text-text mb-2">Download Whisper Model</h3>
|
<h3 class="text-[18px] font-semibold text-text mb-2">Download Whisper Model</h3>
|
||||||
<p class="text-[13px] text-text-secondary mb-1">
|
<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>
|
||||||
<p class="text-[11px] text-text-tertiary mb-6">
|
<p class="text-[11px] text-text-tertiary mb-6">
|
||||||
{modelInfo[modelSize]?.size ?? "?"} · {modelInfo[modelSize]?.accuracy ?? "?"} accuracy · 100% offline
|
{modelInfo[modelSize]?.size ?? "?"} · {modelInfo[modelSize]?.accuracy ?? "?"} accuracy · 100% offline
|
||||||
|
|||||||
@@ -129,7 +129,7 @@
|
|||||||
const url = URL.createObjectURL(blob);
|
const url = URL.createObjectURL(blob);
|
||||||
const a = document.createElement("a");
|
const a = document.createElement("a");
|
||||||
a.href = url;
|
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();
|
a.click();
|
||||||
URL.revokeObjectURL(url);
|
URL.revokeObjectURL(url);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -627,7 +627,7 @@
|
|||||||
{/each}
|
{/each}
|
||||||
</div>
|
</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>
|
</div>
|
||||||
</Card>
|
</Card>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -59,7 +59,7 @@ function toHTML(text, segments) {
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>Ramble Transcript</title>
|
<title>Kon Transcript</title>
|
||||||
<style>
|
<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; }
|
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; }
|
h1 { font-family: "Instrument Serif", Georgia, serif; font-style: italic; }
|
||||||
|
|||||||
@@ -246,7 +246,7 @@
|
|||||||
data-tauri-drag-region
|
data-tauri-drag-region
|
||||||
>
|
>
|
||||||
<span class="text-[12px] font-medium text-text-secondary tracking-wide" data-tauri-drag-region>
|
<span class="text-[12px] font-medium text-text-secondary tracking-wide" data-tauri-drag-region>
|
||||||
Ramble - Viewer
|
Kon - Viewer
|
||||||
</span>
|
</span>
|
||||||
<div class="flex-1" data-tauri-drag-region></div>
|
<div class="flex-1" data-tauri-drag-region></div>
|
||||||
<button
|
<button
|
||||||
|
|||||||
Reference in New Issue
Block a user