Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b98c9bf
refactor: improve core systems (CORS, logging, services consolidation)
Mar 27, 2026
23c3b5a
integrate: LoggerService, FileService, envConfig across all services
Mar 27, 2026
2642b34
Add improvements 11, 13, 15: Error Boundaries, Service Initializer, P…
Mar 27, 2026
45f533b
Add improvements 16, 17, 18, 19, 23: Security, State Management, Cach…
Mar 27, 2026
eb5dcfe
Enhance Keyboard Shortcuts: Add Macros, Analytics, Command Palette, V…
Mar 27, 2026
326913f
Improve: Enhanced build script with auto-dependency installation and …
Mar 27, 2026
358f2e6
Improve: Updated README files - main overview restored, App README re…
Mar 27, 2026
d4e9ffe
Fix: Replace yarn.cmd with npm for cross-platform compatibility
Mar 27, 2026
92c210a
WIP: Remove new services from App.tsx and add electron type definitio…
Mar 27, 2026
8991b02
Fix: Resolve all 118 TypeScript compilation errors - final fixes incl…
Mar 28, 2026
b4dd175
Chore: Fix build warnings - CSS comments and import optimization
Mar 28, 2026
1737892
Feat: Add comprehensive performance & UX improvements
Mar 28, 2026
de7211a
Refactor: Optimize build with aggressive code splitting
Mar 28, 2026
ff5f85f
Docs: Update PR description with build optimization details
Mar 28, 2026
2ac914d
Feat: Implement first 5 backend architecture services (Tier 1)
Mar 28, 2026
7f1a588
Tier 2: Complete 10 remaining backend architecture services (9-15)
Mar 28, 2026
a087335
Update PR_DESCRIPTION.md with complete Tier 2 backend services docume…
Mar 28, 2026
ad1297e
refactor: migrate backend to Node.js, add installer improvements
Apr 20, 2026
6a04232
Merge remote-tracking branch 'origin/main' into feature/refactor-core…
memuguenstig-lab Apr 20, 2026
760d6ad
fix: modern SVG window controls, splash close button, black screen fix
Apr 23, 2026
12783a4
fix: remove auto-open DevTools on startup
Apr 23, 2026
d021bff
feat: embedded LLM via node-llama-cpp, no Ollama install needed
Apr 23, 2026
eff827a
feat: persist panel widths, slim default chat panel (380px)
Apr 23, 2026
b2eaee0
fix: modern input bar with icon buttons, silent model discovery errors
Apr 23, 2026
aa8ef76
fix: skip backend start if already running (EADDRINUSE)
Apr 23, 2026
9caebc9
fix: remove cursor override and perf monitor that slowed mouse on Win…
Apr 23, 2026
1ad711e
perf: GPU flags, no-blocking Discord RPC, React.memo FileExplorer, be…
Apr 23, 2026
65f5e42
feat: slow down splash screen animation (2.4s pulse)
Apr 23, 2026
6e858c1
feat: VSCode-style drag-and-drop panel reordering (sidebar/chat swap)
Apr 23, 2026
2338a07
Merge latest from origin/main
memuguenstig-lab Apr 23, 2026
35ef01c
feat: VSCode-style layout with ActivityBar, improved Git view, Agent …
memuguenstig-lab Apr 23, 2026
80cc007
fix: remove blue outline/statusbar, VSCode-style multi-tab terminal
memuguenstig-lab Apr 23, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,8 @@ C:\
C:/
.vscode
.env
release/
installer/windows-offline/
installer/macos-offline/
*.msi
*.pkg
9 changes: 8 additions & 1 deletion App/.env.example
Original file line number Diff line number Diff line change
@@ -1 +1,8 @@
VITE_API_URL=http://localhost:23816
# Backend API URL (default: http://localhost:23816)
VITE_API_URL=http://localhost:23816

# Development server port (default: 3000)
VITE_DEV_SERVER_PORT=3000

# Allowed CORS origins for backend (comma-separated for multiple origins)
VITE_ALLOWED_ORIGINS=http://localhost:3000
Loading