Files
NomadArch/packages/electron-app
Gemini AI 3cd44dd0c2 feat: add API Key Manager button, fix overflow, update branding
Changes:
1. Fixed MULTIX overflow issue - added max-h-full and overflow-hidden to prevent content from pushing interface out of frame

2. Added API Key Manager button in header:
   - Key icon with emerald hover effect
   - Opens modal with provider list (NomadArch Free, Ollama Cloud, OpenAI, Anthropic, OpenRouter)
   - Shows provider status and configuration

3. Updated branding:
   - Window title: 'NomadArch 1.0'
   - Loading screen: 'NomadArch 1.0 - A fork of OpenCode'
   - Updated page titles

4. Added Settings and Key icons to imports
3cd44dd0c2 · 2025-12-23 14:04:11 +04:00
History
..

CodeNomad App

This package contains the native desktop application shell for CodeNomad, built with Electron.

Overview

The Electron app wraps the CodeNomad UI and Server into a standalone executable. It provides deeper system integration, such as:

  • Native window management
  • Global keyboard shortcuts
  • Application menu integration

Development

To run the Electron app in development mode:

npm run dev

This will start the renderer (UI) and the main process with hot reloading.

Building

To build the application for your current platform:

npm run build

To build for specific platforms (requires appropriate build tools):

  • macOS: npm run build:mac
  • Windows: npm run build:win
  • Linux: npm run build:linux

Structure

  • electron/main: Main process code (window creation, IPC).
  • electron/preload: Preload scripts for secure bridge between main and renderer.
  • electron/resources: Static assets like icons.