diff --git a/Cargo.lock b/Cargo.lock index 03dd9b0d5..79689f778 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5072,7 +5072,7 @@ dependencies = [ [[package]] name = "theseus" -version = "0.8.2" +version = "0.8.3-1" dependencies = [ "async-recursion", "async-tungstenite", @@ -5124,7 +5124,7 @@ dependencies = [ [[package]] name = "theseus_gui" -version = "0.8.2" +version = "0.8.3-1" dependencies = [ "chrono", "cocoa 0.25.0", diff --git a/apps/app-frontend/package.json b/apps/app-frontend/package.json index f107d06b7..3d1187dc4 100644 --- a/apps/app-frontend/package.json +++ b/apps/app-frontend/package.json @@ -1,7 +1,7 @@ { "name": "@modrinth/app-frontend", "private": true, - "version": "0.8.2", + "version": "0.8.3-1", "type": "module", "scripts": { "dev": "vite", diff --git a/apps/app/Cargo.toml b/apps/app/Cargo.toml index 2ae072223..3dfc03ae8 100644 --- a/apps/app/Cargo.toml +++ b/apps/app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "theseus_gui" -version = "0.8.2" +version = "0.8.3-1" description = "A Tauri App" authors = ["you"] license = "" diff --git a/apps/app/tauri.conf.json b/apps/app/tauri.conf.json index 2c2ad1555..f88352422 100644 --- a/apps/app/tauri.conf.json +++ b/apps/app/tauri.conf.json @@ -8,7 +8,7 @@ }, "package": { "productName": "Modrinth App", - "version": "0.8.2" + "version": "0.8.3-1" }, "tauri": { "allowlist": { diff --git a/packages/app-lib/Cargo.toml b/packages/app-lib/Cargo.toml index dad97541c..1a683b9bd 100644 --- a/packages/app-lib/Cargo.toml +++ b/packages/app-lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "theseus" -version = "0.8.2" +version = "0.8.3-1" authors = ["Jai A "] edition = "2018" diff --git a/packages/app-lib/src/api/pack/import/mod.rs b/packages/app-lib/src/api/pack/import/mod.rs index eca40c767..f0195e492 100644 --- a/packages/app-lib/src/api/pack/import/mod.rs +++ b/packages/app-lib/src/api/pack/import/mod.rs @@ -257,7 +257,7 @@ pub async fn copy_dotminecraft( crate::api::profile::get_full_path(profile_path_id).await?; // Gets all subfiles recursively in src - let subfiles = get_all_subfiles(&dotminecraft, true).await?; + let subfiles = get_all_subfiles(&dotminecraft, false).await?; let total_subfiles = subfiles.len() as u64; let loading_bar = init_or_edit_loading( diff --git a/packages/app-lib/src/launcher/mod.rs b/packages/app-lib/src/launcher/mod.rs index 43f34bced..dcbf573b2 100644 --- a/packages/app-lib/src/launcher/mod.rs +++ b/packages/app-lib/src/launcher/mod.rs @@ -50,7 +50,7 @@ pub fn parse_rules( // if anything is disallowed, it should NOT be included // if anything is not disallowed, it shouldn't factor in final result -// if anything is not allowed, it shouldn't factor in final result +// if anything is not allowed, it should NOT be included // if anything is allowed, it should be included #[tracing::instrument] pub fn parse_rule( @@ -85,7 +85,7 @@ pub fn parse_rule( if res { Some(true) } else { - None + Some(false) } } RuleAction::Disallow => {