This is a projection, not a development branch. The tree above was constructed from the internal source named below under a manifest that decides which paths may leave, then scanned as a whole tree rather than as a series of patches, and only then published. Public history starts here because the history before it was not admissible, and neither was the tree. What used to stand in this repository included a rescue copy of another machine, a directory of phone handoffs, deployment wired to one house, and a submodule pointing at a forge no stranger can reach. None of that was ever the product. It stays in the private forge, which is allowed to hold the whole working organism, and this is what was deliberately sent out instead. Three mechanisms produced this tree, in decreasing order of trust. A top-level path the manifest does not name never arrives at all, which is the one that catches directories nobody has thought of yet. Named internal files inside admitted roots are dropped. A short, reviewed table replaces deployment defaults that a public build must not carry -- an endpoint aimed at one LAN, a VPN profile belonging to one phone, packaging built from one checkout path. Everything after this commit is an ordinary publication with the same three trailers, so a force push stops being routine and starts meaning that something deliberate happened. The trailers bind the projection to its source without pretending the public SHA is the private one: same lineage, different tree, and the record says so. Source-Sha: 8f27b1e76a8fef560a336aba18e6990713ff1047 Policy-Sha: 6b261d2f3e6e1fb19874846ba4bb1dfe15565d25b8618c1c1afba0419c101d27 Tree-Digest: 18ec3563c5e5ef9a414993a9f6734b251ff9ed3cd56eebdd6cac01e45c6e3067
375 lines
14 KiB
QML
375 lines
14 KiB
QML
pragma Singleton
|
||
import Quickshell
|
||
|
||
Singleton {
|
||
id: root
|
||
|
||
/**
|
||
* Formats a string according to the args that are passed inc
|
||
* @param { string } str
|
||
* @param {...any} args
|
||
* @returns { string }
|
||
*/
|
||
function format(str, ...args) {
|
||
return str.replace(/{(\d+)}/g, (match, index) => typeof args[index] !== 'undefined' ? args[index] : match);
|
||
}
|
||
|
||
/**
|
||
* Returns the domain of the passed in url or null
|
||
* @param { string } url
|
||
* @returns { string| null }
|
||
*/
|
||
function getDomain(url) {
|
||
const match = url.match(/^(?:https?:\/\/)?(?:www\.)?([^\/]+)/);
|
||
return match ? match[1] : null;
|
||
}
|
||
|
||
/**
|
||
* Returns the base url of the passed in url or null
|
||
* @param { string } url
|
||
* @returns { string | null }
|
||
*/
|
||
function getBaseUrl(url) {
|
||
const match = url.match(/^(https?:\/\/[^\/]+)(\/.*)?$/);
|
||
return match ? match[1] : null;
|
||
}
|
||
|
||
/**
|
||
* Escapes single quotes in shell commands
|
||
* @param { string } str
|
||
* @returns { string }
|
||
*/
|
||
function shellSingleQuoteEscape(str) {
|
||
return String(str)
|
||
// .replace(/\\/g, '\\\\')
|
||
.replace(/'/g, "'\\''");
|
||
}
|
||
|
||
/**
|
||
* Splits markdown blocks into three different types: text, think, and code.
|
||
* @param { string } markdown
|
||
* @returns {Array<{type: "text" | "think" | "code", content: string, lang?: string, completed?: boolean}>}
|
||
*/
|
||
function splitMarkdownBlocks(markdown) {
|
||
const regex = /```(\w+)?\n([\s\S]*?)```|<think>([\s\S]*?)<\/think>/g;
|
||
/**
|
||
* @type {{type: "text" | "think" | "code"; content: string; lang: string | undefined; completed: boolean | undefined}[]}
|
||
*/
|
||
let result = [];
|
||
let lastIndex = 0;
|
||
let match;
|
||
while ((match = regex.exec(markdown)) !== null) {
|
||
if (match.index > lastIndex) {
|
||
const text = markdown.slice(lastIndex, match.index);
|
||
if (text.trim()) {
|
||
result.push({
|
||
type: "text",
|
||
content: text
|
||
});
|
||
}
|
||
}
|
||
if (match[0].startsWith('```')) {
|
||
if (match[2] && match[2].trim()) {
|
||
result.push({
|
||
type: "code",
|
||
lang: match[1] || "",
|
||
content: match[2],
|
||
completed: true
|
||
});
|
||
}
|
||
} else if (match[0].startsWith('<think>')) {
|
||
if (match[3] && match[3].trim()) {
|
||
result.push({
|
||
type: "think",
|
||
content: match[3],
|
||
completed: true
|
||
});
|
||
}
|
||
}
|
||
lastIndex = regex.lastIndex;
|
||
}
|
||
// Handle any remaining text after the last match
|
||
if (lastIndex < markdown.length) {
|
||
const text = markdown.slice(lastIndex);
|
||
// Check for unfinished <think> block
|
||
const thinkStart = text.indexOf('<think>');
|
||
const codeStart = text.indexOf('```');
|
||
if (thinkStart !== -1 && (codeStart === -1 || thinkStart < codeStart)) {
|
||
const beforeThink = text.slice(0, thinkStart);
|
||
if (beforeThink.trim()) {
|
||
result.push({
|
||
type: "text",
|
||
content: beforeThink
|
||
});
|
||
}
|
||
const thinkContent = text.slice(thinkStart + 7);
|
||
if (thinkContent.trim()) {
|
||
result.push({
|
||
type: "think",
|
||
content: thinkContent,
|
||
completed: false
|
||
});
|
||
}
|
||
} else if (codeStart !== -1) {
|
||
const beforeCode = text.slice(0, codeStart);
|
||
if (beforeCode.trim()) {
|
||
result.push({
|
||
type: "text",
|
||
content: beforeCode
|
||
});
|
||
}
|
||
// Try to detect language after ```
|
||
const codeLangMatch = text.slice(codeStart + 3).match(/^(\w+)?\n/);
|
||
let lang = "";
|
||
let codeContentStart = codeStart + 3;
|
||
if (codeLangMatch) {
|
||
lang = codeLangMatch[1] || "";
|
||
codeContentStart += codeLangMatch[0].length;
|
||
} else if (text[codeStart + 3] === '\n') {
|
||
codeContentStart += 1;
|
||
}
|
||
const codeContent = text.slice(codeContentStart);
|
||
if (codeContent.trim()) {
|
||
result.push({
|
||
type: "code",
|
||
lang,
|
||
content: codeContent,
|
||
completed: false
|
||
});
|
||
}
|
||
} else if (text.trim()) {
|
||
result.push({
|
||
type: "text",
|
||
content: text
|
||
});
|
||
}
|
||
}
|
||
// console.log(JSON.stringify(result, null, 2));
|
||
return result;
|
||
}
|
||
|
||
/**
|
||
* Returns the original string with backslashes escaped
|
||
* @param { string } str
|
||
* @returns { string }
|
||
*/
|
||
function escapeBackslashes(str) {
|
||
return str.replace(/\\/g, '\\\\');
|
||
}
|
||
|
||
// Pronunciation fixes for VibeVoice — word-boundary replacements so the
|
||
// model says names and acronyms correctly. Ported from lettabot's Matrix
|
||
// TTS (src/channels/matrix/tts.ts), tuned for this voice over time.
|
||
readonly property var _ttsPronunciation: ({
|
||
"Xzaviar": "X-zay-V-ar", "xzaviar": "X-zay-V-ar",
|
||
"Jean Luc": "Zhan-Look", "jean luc": "Zhan-Look",
|
||
"Sebastian": "Se-BASS-chen", "sebastian": "Se-BASS-chen",
|
||
"API": "A P I", "SDK": "S D K",
|
||
"E2EE": "end-to-end encrypted",
|
||
"TTS": "text to speech", "STT": "speech to text",
|
||
})
|
||
|
||
function _applyTtsPronunciation(text) {
|
||
let result = text;
|
||
for (const wrong in root._ttsPronunciation) {
|
||
const right = root._ttsPronunciation[wrong];
|
||
result = result.replace(new RegExp(`\\b${wrong.replace(/[.*+?^${}()|[\]\\]/g, "\\$&")}\\b`, "gi"), right);
|
||
}
|
||
return result;
|
||
}
|
||
|
||
/**
|
||
* Cleans assistant reply text for text-to-speech: strips <think> blocks,
|
||
* agent control tags, HTML, code fences, markdown, and most emoji, and
|
||
* applies pronunciation fixes — so only the spoken voice remains.
|
||
* Returns the cleaned text (empty string if nothing speakable survives).
|
||
* Order (ported from lettabot's cleanTextForTTS, plus Souveraine think
|
||
* blocks): control tags → color/spoiler → HTML → think → code/markdown →
|
||
* emoji → pronunciation → whitespace.
|
||
* @param { string } text
|
||
* @returns { string }
|
||
*/
|
||
function ttsClean(text) {
|
||
if (!text)
|
||
return "";
|
||
let cleaned = text;
|
||
// Strip agent control tags
|
||
cleaned = cleaned.replace(/\[silent\]/gi, "");
|
||
cleaned = cleaned.replace(/\[chromatophore\]/gi, "");
|
||
cleaned = cleaned.replace(/\[!c\]/gi, "");
|
||
cleaned = cleaned.replace(/\[!s\]/gi, "");
|
||
cleaned = cleaned.replace(/\[react:[^\]]*\]/gi, "");
|
||
// Strip color syntax {color|text} → keep text; spoilers ||text|| → keep text
|
||
cleaned = cleaned.replace(/\{[^}|]+\|([^}]+)\}/g, "$1");
|
||
// dotAll via [\s\S] (not the 's' flag — older Qt/V8 rejects it)
|
||
cleaned = cleaned.replace(/\|\|([\s\S]+?)\|\|/g, "$1");
|
||
// Remove <think>...</think> blocks entirely (Souveraine reasoning).
|
||
// MUST run before the HTML-tag strip, or the tags get eaten first and
|
||
// the reasoning survives as plain text. Also drop an unclosed <think>
|
||
// (stream cut mid-reasoning) so we never speak a half-thought — by
|
||
// default we want only the actual message, not the thinking.
|
||
cleaned = cleaned.replace(/<think>[\s\S]*?<\/think>/g, " ");
|
||
cleaned = cleaned.replace(/<think>[\s\S]*$/g, " ");
|
||
// Strip HTML tags (keep content)
|
||
cleaned = cleaned.replace(/<[^>]+>/g, "");
|
||
// Remove markdown headers, bold, italic, code fences
|
||
cleaned = cleaned.replace(/```[\s\S]*?```/g, " ");
|
||
cleaned = cleaned.replace(/#{1,6}\s/g, " ");
|
||
cleaned = cleaned.replace(/\*\*([^*]+)\*\*/g, "$1");
|
||
cleaned = cleaned.replace(/\*([^*]+)\*/g, "$1");
|
||
cleaned = cleaned.replace(/`([^`]+)`/g, "$1");
|
||
// Remove markdown links and images
|
||
cleaned = cleaned.replace(/!\[([^\]]*)\]\([^)]+\)/g, "$1");
|
||
cleaned = cleaned.replace(/\[([^\]]*)\]\([^)]+\)/g, "$1");
|
||
// Emoji: preserve ✨ and 🎤 (the model says those fine), strip the rest.
|
||
// Marker-swap so the preserved ones survive the broad Unicode strip.
|
||
const sparkle = cleaned.includes("✨"), mic = cleaned.includes("🎤");
|
||
cleaned = cleaned.replace(/✨/g, "SPK").replace(/🎤/g, "MIC");
|
||
cleaned = cleaned.replace(/[\u{1F600}-\u{1F64F}\u{1F300}-\u{1F5FF}\u{1F680}-\u{1F6FF}\u{1F1E0}-\u{1F1FF}\u{2702}-\u{27B0}\u{24C2}-\u{1F251}\u{1F900}-\u{1FAFF}]/gu, "");
|
||
cleaned = cleaned.replace(/SPK/g, sparkle ? "✨" : "").replace(/MIC/g, mic ? "🎤" : "");
|
||
// Pronunciation fixes
|
||
cleaned = root._applyTtsPronunciation(cleaned);
|
||
// Collapse whitespace
|
||
cleaned = cleaned.replace(/\s+/g, " ").trim();
|
||
return cleaned;
|
||
}
|
||
|
||
/**
|
||
* Wraps words to supplied maximum length
|
||
* @param { string | null } str
|
||
* @param { number } maxLen
|
||
* @returns { string }
|
||
*/
|
||
function wordWrap(str, maxLen) {
|
||
if (!str)
|
||
return "";
|
||
let words = str.split(" ");
|
||
let lines = [];
|
||
let current = "";
|
||
for (let i = 0; i < words.length; ++i) {
|
||
if ((current + (current.length > 0 ? " " : "") + words[i]).length > maxLen) {
|
||
if (current.length > 0)
|
||
lines.push(current);
|
||
current = words[i];
|
||
} else {
|
||
current += (current.length > 0 ? " " : "") + words[i];
|
||
}
|
||
}
|
||
if (current.length > 0)
|
||
lines.push(current);
|
||
return lines.join("\n");
|
||
}
|
||
|
||
/**
|
||
* Cleans up a music title by removing bracketed and special characters.
|
||
* @param { string } title
|
||
* @returns { string }
|
||
*/
|
||
function cleanMusicTitle(title) {
|
||
if (!title)
|
||
return "";
|
||
// Brackets
|
||
title = title.replace(/^ *\([^)]*\) */g, " "); // Round brackets
|
||
title = title.replace(/^ *\[[^\]]*\] */g, " "); // Square brackets
|
||
title = title.replace(/^ *\{[^\}]*\} */g, " "); // Curly brackets
|
||
// Japenis brackets
|
||
title = title.replace(/^ *【[^】]*】/, ""); // Touhou
|
||
title = title.replace(/^ *《[^》]*》/, ""); // ??
|
||
title = title.replace(/^ *「[^」]*」/, ""); // OP/ED thingie
|
||
title = title.replace(/^ *『[^』]*』/, ""); // OP/ED thingie
|
||
|
||
return title.trim();
|
||
}
|
||
|
||
/**
|
||
* Converts seconds to a friendly time string (e.g. 1:23 or 1:02:03).
|
||
* @param { number } seconds
|
||
* @returns { string }
|
||
*/
|
||
function friendlyTimeForSeconds(seconds) {
|
||
if (isNaN(seconds) || seconds < 0)
|
||
return "0:00";
|
||
seconds = Math.floor(seconds);
|
||
const h = Math.floor(seconds / 3600);
|
||
const m = Math.floor((seconds % 3600) / 60);
|
||
const s = seconds % 60;
|
||
if (h > 0) {
|
||
return `${h}:${m.toString().padStart(2, '0')}:${s.toString().padStart(2, '0')}`;
|
||
} else {
|
||
return `${m}:${s.toString().padStart(2, '0')}`;
|
||
}
|
||
}
|
||
|
||
/**
|
||
* Escapes HTML special characters in a string.
|
||
* @param { string } str
|
||
* @returns { string }
|
||
*/
|
||
function escapeHtml(str) {
|
||
if (typeof str !== 'string')
|
||
return str;
|
||
return str.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
|
||
}
|
||
|
||
/**
|
||
* Cleans a cliphist entry by removing leading digits and tab.
|
||
* @param { string } str
|
||
* @returns { string }
|
||
*/
|
||
function cleanCliphistEntry(str: string): string {
|
||
return str.replace(/^\d+\t/, "");
|
||
}
|
||
|
||
/**
|
||
* Checks if any substring in the list is contained in the string.
|
||
* @param { string } str
|
||
* @param { string[] } substrings
|
||
* @returns { boolean }
|
||
*/
|
||
function stringListContainsSubstring(str, substrings) {
|
||
for (let i = 0; i < substrings.length; ++i) {
|
||
if (str.includes(substrings[i])) {
|
||
return true;
|
||
}
|
||
}
|
||
return false;
|
||
}
|
||
|
||
/**
|
||
* Removes the given prefix from the string if present.
|
||
* @param { string } str
|
||
* @param { string } prefix
|
||
* @returns { string }
|
||
*/
|
||
function cleanPrefix(str, prefix) {
|
||
if (str.startsWith(prefix)) {
|
||
return str.slice(prefix.length);
|
||
}
|
||
return str;
|
||
}
|
||
|
||
/**
|
||
* Removes the first matching prefix from the string if present.
|
||
* @param { string } str
|
||
* @param { string[] } prefixes
|
||
* @returns { string }
|
||
*/
|
||
function cleanOnePrefix(str, prefixes) {
|
||
for (let i = 0; i < prefixes.length; ++i) {
|
||
if (str.startsWith(prefixes[i])) {
|
||
return str.slice(prefixes[i].length);
|
||
}
|
||
}
|
||
return str;
|
||
}
|
||
|
||
function toTitleCase(str) {
|
||
// Replace "-" and "_" with space, then capitalize each word
|
||
return str.replace(/[-_]/g, " ").replace(
|
||
/\w\S*/g,
|
||
function(txt) {
|
||
return txt.charAt(0).toUpperCase() + txt.substr(1).toLowerCase();
|
||
}
|
||
);
|
||
}
|
||
}
|