All checks were successful
Queue Release Build / prepare (push) Successful in 20s
Deploy Web Apps / deploy (push) Successful in 9m2s
Queue Release Build / build-windows (push) Successful in 28m8s
Queue Release Build / build-linux (push) Successful in 47m26s
Queue Release Build / build-android (push) Successful in 19m52s
Queue Release Build / finalize (push) Successful in 4m42s
Stream large receives to disk with chunk acks to cap renderer RAM, evict off-screen display blobs, and route exports through a disk-aware download service. Fix the high-memory dialog (backdrop dismiss, copy, log actions), allow diagnostics paths in the path jail, and restore persisted image hydration after reload. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
886 B
TypeScript
27 lines
886 B
TypeScript
export { isPerfDiagEnabled, PERF_DIAG_ENV, PERF_DIAG_FORCE_ENV } from './diagnostics.flags';
|
|
export {
|
|
clearHighMemoryAlert,
|
|
readHighMemoryAlert,
|
|
resolveHighMemoryAlertPath,
|
|
writeHighMemoryAlert
|
|
} from './high-memory-alert.store';
|
|
export type { HighMemoryAlertRecord } from './high-memory-alert.store';
|
|
export {
|
|
exceedsHighMemoryThreshold,
|
|
formatWorkingSetGb,
|
|
HIGH_MEMORY_THRESHOLD_KB
|
|
} from './high-memory-alert.rules';
|
|
export {
|
|
attachRendererDiagnosticsHooks,
|
|
ensurePerfDiagIpcRegistered,
|
|
getActivePerfDiagWriter,
|
|
HIGH_MEMORY_ALERT_PENDING_CHANNEL,
|
|
isPerfDiagActive,
|
|
shutdownHighMemoryMonitoring,
|
|
shutdownPerfDiagnostics,
|
|
startHighMemoryMonitoring,
|
|
startPerfDiagnostics
|
|
} from './diagnostics.lifecycle';
|
|
export type { PerfDiagEntry, PerfDiagEntryType, PerfDiagSource } from './diagnostics.models';
|
|
export { PerfDiagWriter } from './diagnostics.writer';
|