RustImplementation #23

Merged
mysticmomba merged 118 commits from RustImplementation into master 2025-11-04 18:13:24 -05:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 42de80fa15 - Show all commits
+1 -1
View File
@@ -17,7 +17,7 @@ dependencies = [
[[package]] [[package]]
name = "airlock_libs" name = "airlock_libs"
version = "1.0.0" version = "1.0.1"
dependencies = [ dependencies = [
"chrono", "chrono",
"indicatif", "indicatif",
+2 -2
View File
@@ -262,9 +262,9 @@ fn get_base_directory() -> PathBuf {
let appdata = env::var_os("APPDATA") let appdata = env::var_os("APPDATA")
.map(PathBuf::from) .map(PathBuf::from)
.unwrap_or_else(|| home.join("AppData").join("Roaming")); .unwrap_or_else(|| home.join("AppData").join("Roaming"));
appdata.join("AirlockTools") appdata.join("Loxide")
} }
_ => home.join(".local").join("share").join("AirlockTools"), _ => home.join(".local").join("share").join("Loxide"),
} }
} }