feat: Implement VRChat custom protocol handling

This commit is contained in:
2026-06-28 21:14:38 +07:00
parent 851b696f67
commit 23748b15ae
12 changed files with 268 additions and 23 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
export type EnhancementId = "linux-screenshot-symlink";
export type EnhancementId = "linux-screenshot-symlink" | "vrchat-protocol-handler";
export type OsPlatform = "linux" | "win32" | "darwin";
+1
View File
@@ -1,4 +1,5 @@
export interface GameStatus {
running: boolean;
supported: boolean;
launching?: boolean;
}