Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src-tauri/src/wine.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ use tauri::{AppHandle, Emitter, Manager};
/// Minimum required Wine version (major.minor)
const MIN_WINE_VERSION: (u32, u32) = (10, 5);

/// WebView2 installer URL (standalone archive version that works with Wine)
const WEBVIEW2_DOWNLOAD_URL: &str = "https://github.com/aedancullen/webview2-evergreen-standalone-installer-archive/releases/download/109.0.1518.78/MicrosoftEdgeWebView2RuntimeInstallerX64.exe";
/// WebView2 installer URL (standalone latest webview, acquired from the official mirror)
const WEBVIEW2_DOWNLOAD_URL: &str = "https://go.microsoft.com/fwlink/?linkid=2124701";

/// Marker file to track initialization state
const INIT_MARKER_FILE: &str = ".cm_launcher_initialized";
Expand Down
Loading