almost downloading complete

This commit is contained in:
2026-02-16 14:35:00 -06:00
parent a1e1ae7e7d
commit 6d5b4eec1d
4 changed files with 929 additions and 5 deletions

View File

@@ -32,4 +32,13 @@ pub fn app_cache_dir() -> Option<PathBuf> {
pub fn posters_cache_dir() -> Option<PathBuf> {
app_cache_dir().map(|d| d.join("posters"))
}
}
pub fn downloads_dir() -> Option<PathBuf> {
app_config_dir().map(|d| d.join("downloads"))
}
pub fn temp_downloads_dir() -> Option<PathBuf> {
app_config_dir().map(|d| d.join("temp"))
}