Commit graph

229 commits

Author SHA1 Message Date
Claude
b3011943c6
Add Android release signing configuration
- 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
2026-01-31 22:04:54 +00:00
Claude
2278fa2849
Add Capacitor live reload for quick device testing
- 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
2026-01-31 21:12:44 +00:00
MrPiglr
c963ed51ee modified: .claude/settings.local.json 2026-01-29 23:47:23 -07:00
MrPiglr
b8d5062f3e Add desktop app downloads page and release workflow
- Add GitHub Actions workflow for building desktop apps (Windows/macOS/Linux)
- Create /downloads page with GitHub releases integration
- Update README with download links
- Automated release creation on desktop-v* tags

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-01-29 23:32:02 -07:00
MrPiglr
bad838c659 modified: client/src/pages/os.tsx 2026-01-29 17:42:30 -07:00
MrPiglr
d1254106eb modified: server/index.ts 2026-01-29 11:10:47 -07:00
MrPiglr
b6833f0432 modified: shared/schema.ts 2026-01-29 10:24:03 -07:00
MrPiglr
5bc0bdaca6 modified: shared/schema.ts 2026-01-29 10:14:15 -07:00
MrPiglr
618152fcba modified: .dockerignore 2026-01-29 09:51:27 -07:00
MrPiglr
f00f6dd75c modified: nixpacks.toml 2026-01-29 09:47:16 -07:00
MrPiglr
cb2c936749 modified: nixpacks.toml 2026-01-29 01:37:43 -07:00
MrPiglr
7378b5eeb3 modified: nixpacks.toml 2026-01-29 01:35:21 -07:00
MrPiglr
d0a53b9c9d new file: .dockerignore 2026-01-29 01:33:05 -07:00
MrPiglr
de33a796f3 new file: .ruby-version 2026-01-29 01:12:34 -07:00
MrPiglr
b15a03f041 Resolve merge conflicts and complete merge 2026-01-25 20:45:57 -07:00
MrPiglr
28b08e1ddf Update .gitignore to exclude Linux build artifacts and binaries 2026-01-25 19:57:58 -07:00
c0119e07fe
Merge branch 'main' of https://github.com/AeThex-Corporation/AeThex-OS 2026-01-06 01:49:58 +00:00
09b989c508
modified: docs/GITHUB_PAGES_404_FIX.md 2026-01-06 01:48:12 +00:00
0005051e8e
renamed: AETHEX_LINUX.md -> docs/AETHEX_LINUX.md 2026-01-06 01:48:01 +00:00
dc87e1fa8f
Add code of conduct for AeThex | OS community
This document outlines the code of conduct for the AeThex | OS community, emphasizing respect, diversity, and constructive communication.
2026-01-05 18:25:57 -07:00
cdabd0a47f
docs: Add GitHub Pages 404 fix guide 2026-01-06 00:28:45 +00:00
bf4ea612a3
merge: Resolve conflicts and add GitHub Pages fix 2026-01-06 00:28:01 +00:00
5a81ebab1e
fix: Add Gemfile and fix Jekyll build workflow 2026-01-06 00:27:40 +00:00
9cebf53f19
docs: Set up GitHub Pages organization 2026-01-06 00:23:40 +00:00
4b84eedbd3 feat: Add revenue_events table and fix migration FK constraints
- Add revenue_events table to track org/project revenue with source tracking
- Add Drizzle schema for revenue_events with proper org/project references
- Create migration 0006_revenue_events.sql with indexes
- Fix migration 0004: Remove FK constraints to profiles.id (auth schema incompatibility)
- Document auth.users/profiles.id type mismatch (UUID vs VARCHAR)
- Harden profile update authorization (self-update or org admin/owner only)
- Complete org-scoping security audit implementation (42 gaps closed)
2026-01-05 04:54:12 +00:00
MrPiglr
3ae5fe6280 Merge branch 'main' of https://github.com/AeThex-Corporation/AeThex-OS 2026-01-03 23:57:02 -07:00
MrPiglr
7e275b020c new file: .gemini/settings.json 2026-01-03 23:56:43 -07:00
MrPiglr
308b047be0 modified: .vscode/settings.json 2026-01-03 23:56:24 -07:00
747991d6aa
Merge pull request #3 from AeThex-Corporation/claude/find-unfinished-flows-lfCk9
Find and mark unfinished flows
2026-01-03 23:55:58 -07:00
Claude
879abba10b
fix: Memory leak in battery API event listeners
The battery level and charging event listeners were added but never
cleaned up when the component unmounts. This caused memory leaks as
anonymous functions couldn't be removed.

Fix:
- Store handler references in variables
- Properly cleanup event listeners in useEffect return function
- Prevents memory leaks on component unmount/remount cycles
2026-01-04 06:48:21 +00:00
Claude
776bd2c6d9
docs: Add comprehensive flow tracking and mark unfinished flows
- Create FLOWS.md with complete inventory of all 16 flows in codebase
- Mark 5 complete, 7 partial, and 4 not started flows
- Add [UNFINISHED FLOW] TODO markers to affected files:
  - wine-launcher.sh: VM launcher not implemented
  - execute.ts: Non-JS/TS language support missing
  - app-registry.ts: Stub implementation only
  - OAUTH_IMPLEMENTATION.md: Unlink endpoint needed
  - DEPLOYMENT_STATUS.md: Railway deployment pending
- Add FLOWS.md reference to PROJECT_RUNDOWN.md
2026-01-04 06:39:45 +00:00
MrPiglr
a1e4b35669 Add Railway deployment config 2025-12-29 00:22:23 +00:00
MrPiglr
abad9eb1ca Merge branch 'main' of https://github.com/AeThex-Corporation/AeThex-OS 2025-12-28 12:35:49 -07:00
MrPiglr
8947454dd9 new file: build.log 2025-12-28 12:35:16 -07:00
MrPiglr
2913cd8eb2 ci: Use full OS build script with Wine + Docker 2025-12-28 10:08:21 -07:00
MrPiglr
19a9f93788 Revise SECURITY.md to enhance security policy details
Expanded the security policy to include detailed sections on purpose, organizational boundaries, reporting vulnerabilities, severity assessment, response timelines, disclosure policy, bug bounty, security best practices, and safe harbor.
2025-12-28 10:08:21 -07:00
copilot-swe-agent[bot]
a020714bc7 Add GitHub Pages deployment workflow and documentation landing page
Co-authored-by: MrPiglr <31398225+MrPiglr@users.noreply.github.com>
2025-12-28 10:08:21 -07:00
copilot-swe-agent[bot]
de279519d5 Initial plan 2025-12-28 10:08:21 -07:00
MrPiglr
5a645f23fe ci: Use full OS build script with Wine + Docker 2025-12-28 10:08:03 -07:00
MrPiglr
de8ed76e57 feat: Full layered OS architecture - Wine + Docker + Dev Tools 2025-12-28 10:07:42 -07:00
MrPiglr
7f4b4ca907 feat: Full layered OS architecture - Wine + Docker + Dev Tools 2025-12-28 10:07:32 -07:00
MrPiglr
61d695deb7
Revise SECURITY.md to enhance security policy details
Expanded the security policy to include detailed sections on purpose, organizational boundaries, reporting vulnerabilities, severity assessment, response timelines, disclosure policy, bug bounty, security best practices, and safe harbor.
2025-12-28 10:02:34 -07:00
MrPiglr
74fc4f9ae9
Merge pull request #2 from AeThex-Corporation/copilot/activate-github-pages-docs
Add GitHub Pages deployment for documentation
2025-12-28 09:59:10 -07:00
MrPiglr
94af016898 feat: Use self-hosted runner for full ISO build 2025-12-28 09:53:54 -07:00
MrPiglr
d054755ca3 fix: Add bufferutil to dependencies for Railway 2025-12-28 09:40:34 -07:00
MrPiglr
20494df296 modified: package.json 2025-12-28 09:37:21 -07:00
MrPiglr
c398bf4cab fix: Regenerate package-lock.json for Railway 2025-12-28 09:32:48 -07:00
MrPiglr
f341569022 fix: Use GitLab shared runners 2025-12-28 09:29:43 -07:00
MrPiglr
a5dd7617b2 chore: Remove build artifact 2025-12-28 09:21:21 -07:00
MrPiglr
1b7636310c refactor: Simplified ISO build for Docker (no privileged mode) 2025-12-28 09:17:24 -07:00