diff --git a/website/src/.vitepress/theme/styles/tree.styl b/website/src/.vitepress/theme/styles/tree.styl index 61dccdfb..5e1970d4 100644 --- a/website/src/.vitepress/theme/styles/tree.styl +++ b/website/src/.vitepress/theme/styles/tree.styl @@ -24,6 +24,10 @@ &.main { color: var(--vp-c-brand-darker) } + + &.dynamic { + color: var(--vp-c-brand-darker) + } } &.file.zip { @@ -94,6 +98,10 @@ &.file.zip { color: var(--vp-c-brand-lighter) !important } + + &.dynamic { + color: var(--vp-c-brand-lightest) !important + } } } } diff --git a/website/src/docs/faq/storage.md b/website/src/docs/faq/storage.md index 3f0d905d..0faa6a26 100644 --- a/website/src/docs/faq/storage.md +++ b/website/src/docs/faq/storage.md @@ -10,26 +10,94 @@ Tachiyomi manages several things within a selected storage location, including a The following illustrates the folder structure: -```txt -/ -├── autobackup -│ ├── eu.kanade.tachiyomi_yyyy-mm-dd_hh-mm.tachibk -│ └── ... -├── downloads -│ └── Source name (LANG) -│ ├── Title -│ │ ├── Chapter01.cbz -│ │ └── ... -│ └── Other title -│ ├── Chapter01.cbz -│ └── ... -└── local - ├── Title - │ ├── Chapter01.cbz - │ └── ... - └── Other title - └── Chapter01.cbz -``` +:::info Example +
+ +
+::: Backup file name prefixes are unique for the app to avoid potential collisions between forks. @@ -53,3 +121,7 @@ Since Android 11, most apps are enforced to use [Scoped Storage](https://develop These functions may become slower due to **Scoped Storage**'s inherent latency, as discussed in detail [here](https://www.xda-developers.com/android-q-storage-access-framework-scoped-storage/). This can impact tasks like deleting chapters, library loading times, accessing local files like downloads or the local source, and more. As always, using internal storage is recommended over SD cards if latency is of concern. + + diff --git a/website/src/public/img/tachiyomi-book.png b/website/src/public/img/tachiyomi-book.png new file mode 100644 index 00000000..78804a17 Binary files /dev/null and b/website/src/public/img/tachiyomi-book.png differ