diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2023-01-13 01:01:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-13 01:01:34 +0100 |
commit | eb6726fb016c468d39a674cf7707f2438093db1a (patch) | |
tree | 65593ff1f812347575cf0f9ac23104eec1b13548 /src-tauri/src/lib.rs | |
parent | 1df421ba963ae0d740c2915b2e038dfb2f6b8f95 (diff) | |
download | FlightCore-eb6726fb016c468d39a674cf7707f2438093db1a.tar.gz FlightCore-eb6726fb016c468d39a674cf7707f2438093db1a.zip |
refactor: Bump libthermite (#133)
* chore: Bump libthermite to v0.4.0-rc.1
And update broken code in FlightCore accordingly
* chore: Bump libthermite to v0.4.0
And update broken code in FlightCore accordingly
* feat: Parse TS mod string using new standard
Instead of reading `mod.json`, we now build Thunderstore mod string
using `manifest.json` and `thunderstore_author.txt`.
The old method for reading is still supported for now but will likely
be replaced by a converted function in the future.
See also discussion in https://github.com/0neGal/viper/issues/165
Diffstat (limited to 'src-tauri/src/lib.rs')
-rw-r--r-- | src-tauri/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index f0ffa8de..2df1e243 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -184,7 +184,7 @@ async fn do_install(nmod: &thermite::model::ModVersion, game_path: &std::path::P let download_path = format!("{}/{}", download_directory.clone(), filename); println!("{}", download_path); - let nfile = thermite::core::actions::download_file(&nmod.url, download_path) + let nfile = thermite::core::manage::download_file(&nmod.url, download_path) .await .unwrap(); |