feat: Add TURN server support
All checks were successful
Queue Release Build / prepare (push) Successful in 15s
Deploy Web Apps / deploy (push) Successful in 5m35s
Queue Release Build / build-linux (push) Successful in 24m45s
Queue Release Build / build-windows (push) Successful in 13m52s
Queue Release Build / finalize (push) Successful in 23s
All checks were successful
Queue Release Build / prepare (push) Successful in 15s
Deploy Web Apps / deploy (push) Successful in 5m35s
Queue Release Build / build-linux (push) Successful in 24m45s
Queue Release Build / build-windows (push) Successful in 13m52s
Queue Release Build / finalize (push) Successful in 23s
This commit is contained in:
31
electron/README.md
Normal file
31
electron/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
# Electron Shell
|
||||
|
||||
Electron main-process package for MetoYou / Toju. This directory owns desktop bootstrap, the preload bridge, IPC handlers, desktop persistence glue, updater integration, and window-level behavior.
|
||||
|
||||
## Commands
|
||||
|
||||
- `npm run build:electron` builds the Electron TypeScript output to `dist/electron`.
|
||||
- `npm run electron` builds the product client and Electron, then launches the desktop app.
|
||||
- `npm run electron:dev` starts the Angular client and Electron together.
|
||||
- `npm run dev` starts the full desktop stack: server, Angular client, and Electron.
|
||||
- `npm run electron:build`, `npm run electron:build:win`, `npm run electron:build:mac`, and `npm run electron:build:linux` create packaged desktop builds.
|
||||
|
||||
## Structure
|
||||
|
||||
| Path | Description |
|
||||
| --- | --- |
|
||||
| `main.ts` | Electron app bootstrap and process entry point |
|
||||
| `preload.ts` | Typed renderer-facing preload bridge |
|
||||
| `app/` | App lifecycle and startup composition |
|
||||
| `ipc/` | Renderer-invoked IPC handlers |
|
||||
| `cqrs/` | Local database command/query handlers and mappings |
|
||||
| `db/`, `entities/`, `migrations/` | Desktop persistence and schema evolution |
|
||||
| `audio/` | Desktop audio integrations |
|
||||
| `update/` | Desktop updater flow |
|
||||
| `window/` | Window creation and window-level behavior |
|
||||
|
||||
## Notes
|
||||
|
||||
- When adding a renderer-facing capability, update the Electron implementation, `preload.ts`, and the renderer bridge in `toju-app/` together.
|
||||
- Treat `dist/electron/` and `dist-electron/` as generated output.
|
||||
- See [AGENTS.md](AGENTS.md) for package-level editing rules.
|
||||
@@ -500,7 +500,7 @@ async function performUpdateCheck(
|
||||
setDesktopUpdateState({
|
||||
lastCheckedAt: Date.now(),
|
||||
status: 'checking',
|
||||
statusMessage: `Checking for MetoYou ${targetRelease.version}…`,
|
||||
statusMessage: `Checking for MetoYou ${targetRelease.version}...`,
|
||||
targetVersion: targetRelease.version
|
||||
});
|
||||
|
||||
@@ -687,7 +687,7 @@ export function initializeDesktopUpdater(): void {
|
||||
|
||||
setDesktopUpdateState({
|
||||
status: 'checking',
|
||||
statusMessage: 'Checking for desktop updates…'
|
||||
statusMessage: 'Checking for desktop updates...'
|
||||
});
|
||||
});
|
||||
|
||||
@@ -698,7 +698,7 @@ export function initializeDesktopUpdater(): void {
|
||||
setDesktopUpdateState({
|
||||
lastCheckedAt: Date.now(),
|
||||
status: 'downloading',
|
||||
statusMessage: `Downloading MetoYou ${nextVersion ?? 'update'}…`,
|
||||
statusMessage: `Downloading MetoYou ${nextVersion ?? 'update'}...`,
|
||||
targetVersion: nextVersion
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user