Add styled version banner to macOS client console

Display branded version badge on initialization for debugging

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Lilith 2026-01-02 06:57:34 -08:00
parent d0b17bbf56
commit 45740c4e42

View file

@ -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();