Updates
Rolling release / release (push) Failing after 15m37s

This commit is contained in:
2026-09-12 14:12:51 -04:00
parent de422053d9
commit 05aa6da269
14 changed files with 747 additions and 5 deletions
+2
View File
@@ -1,6 +1,8 @@
{
"name": "@jarvis-qvac/control-center",
"private": true,
"license": "AGPL-3.0-or-later",
"author": "HoneyPeer, LLC",
"type": "module",
"scripts": { "start": "python3 main.py" }
}
@@ -2,6 +2,8 @@ export const BRAND = {
name: 'Jarvis',
product: 'Jarvis QVAC',
tagline: 'Local voice for your desktop',
publisher: 'HoneyPeer, LLC',
license: 'AGPL-3.0-or-later',
applicationId: 'io.qvac.Jarvis.Control',
uuid: '[email protected]',
colors: {
@@ -2,6 +2,8 @@
"name": "Jarvis",
"product": "Jarvis QVAC",
"tagline": "Local voice for your desktop",
"publisher": "HoneyPeer, LLC",
"license": "AGPL-3.0-or-later",
"voice": "Precise, warm, local-first. Gold is presence. Cyan is thought.",
"applicationId": "io.qvac.Jarvis.Control",
"uuid": "[email protected]",
@@ -20,7 +20,7 @@ function applyBrandCss(directory) {
}
function brandBanner(directory) {
const row = new Adw.ActionRow({ title: BRAND.product, subtitle: BRAND.tagline });
const row = new Adw.ActionRow({ title: BRAND.product, subtitle: `${BRAND.tagline} · ${BRAND.publisher}` });
try {
const image = Gtk.Image.new_from_file(`${directory}/brand/icons/jarvis-mark.svg`);
image.set_pixel_size(36);