Backup before continuing from Codex 5.2 session - User storage, compaction suggestions, streaming improvements

This commit is contained in:
Gemini AI
2025-12-24 21:27:05 +04:00
Unverified
parent f9748391a9
commit e8c38b0add
93 changed files with 10615 additions and 2037 deletions

View File

@@ -1,33 +1,26 @@
@echo off
title NomadArch Launcher (Production Mode)
color 0A
setlocal enabledelayedexpansion
title NomadArch Launcher (Production Mode)
color 0A
echo.
echo ███╗ ██╗ ██████╗ ███╗ ███╗ █████╗ ██████╗ █████╗ ██████╗ ██████╗██╗ ██╗
echo ████╗ ██║██╔═══██╗████╗ ████║██╔══██╗██╔══██╗██╔══██╗██╔════╝██║ ██║
echo ██╔██╗ ██║██║ ██║██╔████╔██║███████║██║ ██║███████║██████╔╝██║ ███████║
echo ██║╚██╗██║██║ ██║██║╚██╔╝██║██╔══██║██║ ██║██╔══██║██╔══██╗██║ ██╔══██║
echo ██║ ╚████║╚██████╔╝██║ ╚═╝ ██║██║ ██║██████╔╝██║ ██║██║ ██║╚██████╗██║ ██║
echo ╚═╝ ╚═══╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝╚═╝ ╚═╝
echo.
echo PRODUCTION LAUNCHER - Using Pre-Built Enhanced UI
echo ═════════════════════════════════════════════════════════════════════════════
echo.
echo Features: SMART FIX / APEX / SHIELD / MULTIX MODE
echo NomadArch Launcher (Windows, Production Mode)
echo Version: 0.4.0
echo Features: SMART FIX / APEX / SHIELD / MULTIX MODE
echo.
cd /d "%~dp0"
set SCRIPT_DIR=%~dp0
set SCRIPT_DIR=%SCRIPT_DIR:~0,-1%
cd /d "%SCRIPT_DIR%"
echo [STEP 1/3] Checking Dependencies...
echo.
where node >nul 2>&1
if %ERRORLEVEL% neq 0 (
echo [ERROR] Node.js not found!
echo.
echo Please install Node.js first: https://nodejs.org/
echo.
echo [WARN] Node.js not found. Running installer...
call "%SCRIPT_DIR%\Install-Windows.bat"
echo [INFO] If Node.js was installed, open a new terminal and run Launch-Windows-Prod.bat again.
pause
exit /b 1
)
@@ -37,26 +30,22 @@ echo [OK] Node.js: %NODE_VERSION%
echo.
echo [STEP 2/3] Checking Pre-Built UI...
echo.
if exist "packages\electron-app\dist\renderer\assets\main-B67Oskqu.js" (
echo [OK] Enhanced UI build found with custom features
if exist "packages\electron-app\dist\renderer\assets" (
echo [OK] Pre-built UI assets found
) else (
echo [ERROR] Pre-built UI with enhancements not found!
echo [INFO] Run: npm run build to create the production build
echo [ERROR] Pre-built UI assets not found.
echo Run: npm run build
pause
exit /b 1
)
echo.
echo [STEP 3/3] Starting NomadArch (Production Mode)...
echo.
cd packages\electron-app
:: Run using npx electron with the built dist
echo [INFO] Starting Electron with pre-built enhanced UI...
pushd packages\electron-app
npx electron .
popd
if %ERRORLEVEL% neq 0 (
echo.
@@ -65,3 +54,4 @@ if %ERRORLEVEL% neq 0 (
)
pause
exit /b %ERRORLEVEL%