feat: Support URL Scheme for Windows

#165
This commit is contained in:
MystiPanda
2024-01-09 21:57:06 +08:00
parent b71367cd2a
commit 965f10698b
7 changed files with 381 additions and 14 deletions

View File

@@ -8,9 +8,9 @@ use tauri::{
};
#[cfg(not(feature = "verge-dev"))]
static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev";
pub static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev";
#[cfg(feature = "verge-dev")]
static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev.dev";
pub static APP_ID: &str = "io.github.clash-verge-rev.clash-verge-rev.dev";
pub static PORTABLE_FLAG: OnceCell<bool> = OnceCell::new();