diff --git a/electron-app/README.md b/electron-app/README.md index 4eecf6b9..146d8d64 100644 --- a/electron-app/README.md +++ b/electron-app/README.md @@ -31,7 +31,6 @@ When running in development mode (unpackaged), the application creates temporary **Note**: These files and directories are created in the `electron-app/` directory root during development. In production (packaged) mode: - **Configuration and Logs**: Stored in `{UserConfigDir}/hyperloop-control-station/` (using Go's `os.UserConfigDir()`) - - Config files and backups: `{UserConfigDir}/hyperloop-control-station/configs/` - Trace/log files: `{UserConfigDir}/hyperloop-control-station/trace-*.json` diff --git a/electron-app/main.js b/electron-app/main.js index 2ccc19c9..ef5841b5 100644 --- a/electron-app/main.js +++ b/electron-app/main.js @@ -18,6 +18,8 @@ const { autoUpdater } = pkg; // Setup IPC handlers for renderer process communication setupIpcHandlers(); +app.setName("hyperloop-control-station"); + // App lifecycle: wait for Electron to be ready app.whenReady().then(async () => { // Initialize ConfigManager and ensure config exists BEFORE starting backend