You've already forked AstralRinth
forked from didirus/AstralRinth
Fix forge again (#2268)
This commit is contained in:
4
Cargo.lock
generated
4
Cargo.lock
generated
@@ -5072,7 +5072,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "theseus"
|
name = "theseus"
|
||||||
version = "0.8.2"
|
version = "0.8.3-1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-recursion",
|
"async-recursion",
|
||||||
"async-tungstenite",
|
"async-tungstenite",
|
||||||
@@ -5124,7 +5124,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "theseus_gui"
|
name = "theseus_gui"
|
||||||
version = "0.8.2"
|
version = "0.8.3-1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"chrono",
|
"chrono",
|
||||||
"cocoa 0.25.0",
|
"cocoa 0.25.0",
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "@modrinth/app-frontend",
|
"name": "@modrinth/app-frontend",
|
||||||
"private": true,
|
"private": true,
|
||||||
"version": "0.8.2",
|
"version": "0.8.3-1",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "theseus_gui"
|
name = "theseus_gui"
|
||||||
version = "0.8.2"
|
version = "0.8.3-1"
|
||||||
description = "A Tauri App"
|
description = "A Tauri App"
|
||||||
authors = ["you"]
|
authors = ["you"]
|
||||||
license = ""
|
license = ""
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
},
|
},
|
||||||
"package": {
|
"package": {
|
||||||
"productName": "Modrinth App",
|
"productName": "Modrinth App",
|
||||||
"version": "0.8.2"
|
"version": "0.8.3-1"
|
||||||
},
|
},
|
||||||
"tauri": {
|
"tauri": {
|
||||||
"allowlist": {
|
"allowlist": {
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "theseus"
|
name = "theseus"
|
||||||
version = "0.8.2"
|
version = "0.8.3-1"
|
||||||
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
authors = ["Jai A <jaiagr+gpg@pm.me>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
|
|||||||
@@ -257,7 +257,7 @@ pub async fn copy_dotminecraft(
|
|||||||
crate::api::profile::get_full_path(profile_path_id).await?;
|
crate::api::profile::get_full_path(profile_path_id).await?;
|
||||||
|
|
||||||
// Gets all subfiles recursively in src
|
// 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 total_subfiles = subfiles.len() as u64;
|
||||||
|
|
||||||
let loading_bar = init_or_edit_loading(
|
let loading_bar = init_or_edit_loading(
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ pub fn parse_rules(
|
|||||||
|
|
||||||
// if anything is disallowed, it should NOT be included
|
// 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 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
|
// if anything is allowed, it should be included
|
||||||
#[tracing::instrument]
|
#[tracing::instrument]
|
||||||
pub fn parse_rule(
|
pub fn parse_rule(
|
||||||
@@ -85,7 +85,7 @@ pub fn parse_rule(
|
|||||||
if res {
|
if res {
|
||||||
Some(true)
|
Some(true)
|
||||||
} else {
|
} else {
|
||||||
None
|
Some(false)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
RuleAction::Disallow => {
|
RuleAction::Disallow => {
|
||||||
|
|||||||
Reference in New Issue
Block a user