You've already forked AstralRinth
forked from didirus/AstralRinth
* initial migration * barebones profiles * Finish profiles * Add back file watcher * UI support progress * Finish most of cache * Fix options page * Fix forge, finish modrinth auth * Accounts, process cache * Run SQLX prepare * Finish * Run lint + actions * Fix version to be compat with windows * fix lint * actually fix lint * actually fix lint again
25 lines
769 B
Rust
25 lines
769 B
Rust
use crate::api::Result;
|
|
use daedalus::minecraft::VersionManifest;
|
|
use daedalus::modded::Manifest;
|
|
|
|
pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
|
|
tauri::plugin::Builder::new("metadata")
|
|
.invoke_handler(tauri::generate_handler![
|
|
metadata_get_game_versions,
|
|
metadata_get_loader_versions,
|
|
])
|
|
.build()
|
|
}
|
|
|
|
/// Gets the game versions from daedalus
|
|
#[tauri::command]
|
|
pub async fn metadata_get_game_versions() -> Result<VersionManifest> {
|
|
Ok(theseus::metadata::get_minecraft_versions().await?)
|
|
}
|
|
|
|
/// Gets the fabric versions from daedalus
|
|
#[tauri::command]
|
|
pub async fn metadata_get_loader_versions(loader: &str) -> Result<Manifest> {
|
|
Ok(theseus::metadata::get_loader_versions(loader).await?)
|
|
}
|