Changed AirlockTools directory to Loxide directory

This commit is contained in:
brotoskyj
2025-11-04 18:05:15 -05:00
parent 87b9bfa938
commit 42de80fa15
2 changed files with 3 additions and 3 deletions
+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"),
} }
} }