feature: Display version in Electron window title

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

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Jan-Henrik Bruhn 2025-12-12 20:50:29 +01:00
parent b2fa76d0dd
commit ae13001f25

View file

@ -31,6 +31,7 @@ function createWindow() {
minWidth: 1280, // Prevent layout from breaking into single-column mobile view minWidth: 1280, // Prevent layout from breaking into single-column mobile view
minHeight: 800, minHeight: 800,
autoHideMenuBar: true, // Hide the menu bar (can be toggled with Alt key) autoHideMenuBar: true, // Hide the menu bar (can be toggled with Alt key)
title: `Respira v${app.getVersion()}`,
webPreferences: { webPreferences: {
preload: join(__dirname, 'preload.js'), preload: join(__dirname, 'preload.js'),
nodeIntegration: false, nodeIntegration: false,