Merge commit '9f977d082b0741116fef328c2b38e2b4b9afd94e' into feature-clean

This commit is contained in:
2024-10-22 22:20:16 +03:00
42 changed files with 6734 additions and 230 deletions

View File

@@ -28,7 +28,7 @@ tauri-plugin-single-instance = { version = "2.0.0-rc" }
tokio = { version = "1", features = ["full"] }
thiserror = "1.0"
futures = "0.3"
daedalus = "0.2.3"
daedalus = { path = "../../packages/daedalus" }
chrono = "0.4.26"
dirs = "5.0.1"

View File

@@ -13,6 +13,7 @@
},
"dependencies": {
"@modrinth/app-frontend": "workspace:*",
"@modrinth/app-lib": "workspace:*"
"@modrinth/app-lib": "workspace:*",
"@modrinth/daedalus": "workspace:*"
}
}

View File

@@ -316,7 +316,7 @@ fn main() {
MessageDialog::new()
.set_type(MessageType::Error)
.set_title("Initialization error")
.set_text("Your Microsoft Edge WebView2 installation is corrupt.\n\nMicrosoft Edge WebView2 is required to run Modrinth App.\n\nLearn how to repair it at https://docs.modrinth.com/faq/app/webview2")
.set_text("Your Microsoft Edge WebView2 installation is corrupt.\n\nMicrosoft Edge WebView2 is required to run Modrinth App.\n\nLearn how to repair it at https://support.modrinth.com/en/articles/8797765-corrupted-microsoft-edge-webview2-installation")
.show_alert()
.unwrap();