From 45740c4e428dc6e26383ce47e4fc68cf362dda1c Mon Sep 17 00:00:00 2001 From: Lilith Date: Fri, 2 Jan 2026 06:57:34 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20styled=20version=20banner=20t?= =?UTF-8?q?o=20macOS=20client=20console?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Display branded version badge on initialization for debugging 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .../conversation-assistant/frontend-macos-client/app.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/features/conversation-assistant/frontend-macos-client/app.js b/features/conversation-assistant/frontend-macos-client/app.js index 157fcde5d..23b611ddd 100644 --- a/features/conversation-assistant/frontend-macos-client/app.js +++ b/features/conversation-assistant/frontend-macos-client/app.js @@ -141,6 +141,13 @@ async function initialize() { state.isAuthenticated = status.isAuthenticated; state.needsFullDiskAccess = status.needsFullDiskAccess || false; + // Log version banner + console.log( + '%c Conversation Assistant %c v' + state.version + ' ', + 'background: #6366f1; color: white; font-weight: bold; padding: 2px 6px; border-radius: 3px 0 0 3px;', + 'background: #1e1b4b; color: #a5b4fc; padding: 2px 6px; border-radius: 0 3px 3px 0;' + ); + if (state.isAuthenticated) { updateFromStatus(status); startPolling();