- Add handleBootKeyPress to handle keyboard input during boot
- Attach onKeyDown handler to both mobile and desktop boot screens
- Add tabIndex={0} to make boot screens focusable
- Pressing Enter now triggers handleGuestContinue to enter system
Fixes: Enter key does nothing on boot screen
- Comment out user agent-based mobile detection
- Only detect mobile when native bridges present (Capacitor/Flutter/Cordova)
- Fixes web browsers showing mobile UI instead of desktop OS
- Users on aethex.app will now see desktop interface
Desktop browsers should show desktop OS, not mobile app UI
- Remove GET '/' endpoint that returned API status JSON
- Allows static middleware to serve React app at root
- Healthcheck still works at GET /health
- Fixes aethex.app showing JSON instead of web app
- Change server output from index.js to index.cjs
- Update start script to run index.cjs
- Fixes 'module is not defined' error on Railway
- CommonJS format explicit with .cjs extension
Resolves module format conflict where package.json has 'type: module'
but server bundle uses CommonJS format
- Change from '/' to '/health' to avoid static file catch-all
- Root '/' is caught by serveStatic() in production
- /health endpoint returns JSON status correctly
- Add root '/' endpoint that responds with JSON status
- Make download routes handle missing installers gracefully
- Add error handling around download routes registration
- Add logging for download routes initialization
Fixes Railway healthcheck failures by ensuring server responds at root path
Major Features:
- Custom .aethex programming language with cross-platform compilation
- Compiles to JavaScript, Lua (Roblox), Verse (UEFN), and C# (Unity)
- Built-in COPPA compliance and PII detection for safe metaverse development
Integration Points:
1. Terminal Integration
- Added 'aethex' command for in-terminal compilation
- Support for all compilation targets with --target flag
- Real-time error reporting and syntax highlighting
2. IDE Integration
- Native .aethex file support in Monaco editor
- One-click compilation with target selector
- Download compiled code functionality
- Two example files: hello.aethex and auth.aethex
3. Curriculum Integration
- New "AeThex Language" section in Foundry tech tree
- Three modules: Realities & Journeys, Cross-Platform Sync, COPPA Compliance
- Certification path for students
4. Documentation Site
- Complete docs at /docs route (client/src/pages/aethex-docs.tsx)
- Searchable documentation with sidebar navigation
- Language guide, standard library reference, and examples
- Ready for deployment to aethex.dev
5. npm Package Publishing
- @aethex.os/core@1.0.0 - Standard library (published)
- @aethex.os/cli@1.0.1 - Command line compiler (published)
- Both packages live on npm and globally installable
Domain Configuration:
- DNS setup for 29+ domains (aethex.app, aethex.co, etc.)
- nginx reverse proxy configuration
- CORS configuration for cross-domain requests
- OAuth redirect fixes for hash-based routing
Standard Library Features:
- Passport: Universal identity across platforms
- DataSync: Cross-platform data synchronization
- SafeInput: PII detection (phone, email, SSN, credit cards)
- Compliance: COPPA/FERPA age gates and audit logging
Documentation Package:
- Created aethex-dev-docs.zip with complete documentation
- Ready for static site deployment
- Includes examples, API reference, and quickstart guide
Technical Improvements:
- Fixed OAuth blank page issue (hash routing)
- Added .gitignore rules for temp files
- Cleaned up build artifacts and temporary files
- Updated all package references to @aethex.os namespace
Co-Authored-By: Claude <noreply@anthropic.com>
- Update build.gradle with signingConfigs for release builds
- Enable minification and resource shrinking for release
- Add keystore.properties.example template
- Update .gitignore to exclude keystore and credentials
https://claude.ai/code/session_01WzGEr7t8hWFyiANo22iokS
- Update capacitor.config.ts to support live reload via environment variables
(CAPACITOR_LIVE_RELOAD and CAPACITOR_SERVER_URL)
- Add script/capacitor-live-reload.ts to auto-detect local IP and configure sync
- Add script/capacitor-production.ts to revert to production bundled assets
- Add npm scripts: cap:live-reload, cap:production, dev:mobile
- Update vite.config.ts to use appropriate HMR settings for local vs cloud dev
https://claude.ai/code/session_01WzGEr7t8hWFyiANo22iokS