Лицензия, редактор, пульт и сборка
- 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:
@@ -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;
|
||||
};
|
||||
Reference in New Issue
Block a user