From ce4e79676854e50bbe43b1f6b1134fe05046257d Mon Sep 17 00:00:00 2001 From: gramps Date: Mon, 13 Jul 2026 09:20:14 -0700 Subject: [PATCH] v0.17.8: show jcscreenie.png as welcome screen graphic instead of text --- templates/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/index.html b/templates/index.html index ebab70d..314bc66 100644 --- a/templates/index.html +++ b/templates/index.html @@ -143,6 +143,7 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var( .chat-container { flex:1; overflow-y:auto; padding:20px; display:flex; flex-direction:column; gap:16px; } .welcome-screen { flex:1; display:flex; flex-direction:column; align-items:center; justify-content:center; color:var(--text-muted); text-align:center; gap:12px; } .welcome-screen .logo { font-family:var(--font-mono); font-size:48px; color:var(--accent-dim); opacity:0.5; } +.welcome-screen .welcome-logo { max-width:70%; height:auto; object-fit:contain; opacity:0.85; } .welcome-screen p { font-size:14px; max-width:420px; line-height:1.6; } .ws-hint { font-size:12px; color:var(--text-muted); display:block; margin-top:8px; } .ws-hint code { background:var(--bg-tertiary); padding:1px 5px; border-radius:3px; font-family:var(--font-mono); font-size:11px; } @@ -419,8 +420,7 @@ body { font-family: var(--font-body); background: var(--bg-primary); color: var(
- -

cAIc — conversational AI for your homelab cluster
Profile & memory injected automatically • Web search on uncertainty
Use 🔍 to force search • Say "remember that..." to teach me
For code completion & FIM, connect your IDE to /v1/chat/completions with API key

+
@@ -1104,7 +1104,7 @@ function newChat() { function escapeHtml(str) { const div = document.createElement('div'); div.textContent = str; return div.innerHTML; } function showWelcome() { - document.getElementById('chatContainer').innerHTML = '

cAIc — conversational AI for your homelab cluster
Profile & memory injected automatically • Web search on uncertainty
Use 🔍 to force search • Say "remember that..." to teach me
For code completion & FIM, connect your IDE to /v1/chat/completions with API key

'; + document.getElementById('chatContainer').innerHTML = '
'; } async function sendSearch() {