Лицензия, редактор, пульт и сборка

- Main: license service, IPC, router; закрытие окон; yauzl закрытие zip (EMFILE), zipRead тест
- Editor: стабильный projectState без мигания, логотип и меню, строки UI, LayoutShell overlay
- Control: ластик для всех типов эффектов, затухание/нарастание музыки при смене сцены
- Сборка: vite, build/dev scripts, obfuscate-main и build-env скрипты с тестами; package.json

Made-with: Cursor
This commit is contained in:
Ivan Fontosh
2026-04-19 20:11:24 +08:00
parent 5e7dc5ea19
commit 2fa20da94d
40 changed files with 2629 additions and 211 deletions
+17
View File
@@ -0,0 +1,17 @@
import type { LicenseVerifyFailure } from './verifyReasons';
export type LicenseSnapshotReason = 'ok' | LicenseVerifyFailure | 'revoked_remote' | 'none';
export type LicenseSnapshot = {
active: boolean;
devSkip: boolean;
reason: LicenseSnapshotReason;
summary: {
sub: string;
pid: string;
exp: number;
did: string | null;
} | null;
eulaAcceptedVersion: number | null;
deviceId: string;
};