style: only allow user to switch between releases

This commit is contained in:
zhom
2025-06-14 21:55:18 +04:00
parent d3a63c37bf
commit 821cd4ea82
11 changed files with 518 additions and 118 deletions
+6
View File
@@ -20,6 +20,7 @@ export interface BrowserProfile {
proxy?: ProxySettings;
process_id?: number;
last_launch?: number;
release_type: string; // "stable" or "nightly"
}
export interface DetectedProfile {
@@ -29,6 +30,11 @@ export interface DetectedProfile {
description: string;
}
export interface BrowserReleaseTypes {
stable?: string;
nightly?: string;
}
export interface AppUpdateInfo {
current_version: string;
new_version: string;