mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-10-31 23:15:05 +01:00
Misc. rewording (#46)
This commit is contained in:
parent
31e86d1b74
commit
16cf08e614
@ -2,7 +2,7 @@ import type { DefaultTheme } from "vitepress"
|
||||
|
||||
const nav: DefaultTheme.NavItem[] = [
|
||||
{
|
||||
text: "Get {app_version}",
|
||||
text: "Get v{app_version}",
|
||||
activeMatch: "^/*?(download|changelogs)/*?$",
|
||||
items: [
|
||||
{
|
||||
|
@ -55,8 +55,8 @@ function defaultSidebar(): DefaultTheme.SidebarItem[] {
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "Local sources",
|
||||
link: "/docs/faq/application/browse/local-sources",
|
||||
text: "Local source",
|
||||
link: "/docs/faq/application/browse/local-source",
|
||||
},
|
||||
],
|
||||
},
|
||||
@ -68,10 +68,6 @@ function defaultSidebar(): DefaultTheme.SidebarItem[] {
|
||||
text: "Reader",
|
||||
link: "/docs/faq/application/reader",
|
||||
},
|
||||
{
|
||||
text: "User interface",
|
||||
link: "/docs/faq/application/user-interface",
|
||||
},
|
||||
{
|
||||
text: "Android 11+",
|
||||
link: "/docs/faq/application/android-11+",
|
||||
@ -80,10 +76,13 @@ function defaultSidebar(): DefaultTheme.SidebarItem[] {
|
||||
text: "Shizuku",
|
||||
link: "/docs/faq/application/shizuku",
|
||||
},
|
||||
{
|
||||
text: "Miscellaneous",
|
||||
link: "/docs/faq/application/miscellaneous",
|
||||
},
|
||||
],
|
||||
},
|
||||
{ text: "Extensions", link: "/docs/faq/extensions" },
|
||||
{ text: "Miscellaneous", link: "/docs/faq/miscellaneous" },
|
||||
],
|
||||
},
|
||||
{
|
||||
@ -116,13 +115,13 @@ function defaultSidebar(): DefaultTheme.SidebarItem[] {
|
||||
{ text: "Tracking", link: "/docs/guides/tracking" },
|
||||
{ text: "Categories", link: "/docs/guides/categories" },
|
||||
{
|
||||
text: "Local series",
|
||||
link: "/docs/guides/local-series/",
|
||||
text: "Local source",
|
||||
link: "/docs/guides/local-source/",
|
||||
collapsed: true,
|
||||
items: [
|
||||
{
|
||||
text: "Advanced editing",
|
||||
link: "/docs/guides/local-series/advanced",
|
||||
link: "/docs/guides/local-source/advanced",
|
||||
},
|
||||
],
|
||||
},
|
||||
|
@ -9,7 +9,7 @@ const downloadInformation = computed(() => ({
|
||||
.find((a) => /^tachiyomi-r\d{4,}.apk/.test(a.name)),
|
||||
},
|
||||
stable: {
|
||||
tagName: release.stable.tag_name?.slice(1) ?? "0.00.0",
|
||||
tagName: release.stable.tag_name ?? "v0.00.0",
|
||||
asset: (release.stable.assets ?? [])
|
||||
.find((a) => /^tachiyomi-v\d+\.\d+\.\d+.apk/.test(a.name)),
|
||||
},
|
||||
|
@ -13,6 +13,6 @@ import ChangelogsList from "@theme/components/ChangelogsList.vue";
|
||||
|
||||
# Changelogs
|
||||
|
||||
Changelogs of all Tachiyomi stable releases. Also available [on GitHub](https://github.com/tachiyomiorg/tachiyomi/releases).
|
||||
Changelogs of all Tachiyomi stable releases, which are also available [on GitHub](https://github.com/tachiyomiorg/tachiyomi/releases). Preview releases can be seen [on GitHub](https://github.com/tachiyomiorg/tachiyomi-preview/releases).
|
||||
|
||||
<ChangelogsList />
|
||||
|
@ -4,13 +4,10 @@ description: Find out how to help translate or build the app and extensions.
|
||||
---
|
||||
|
||||
# Contribute
|
||||
|
||||
Find out how to help translate or build the app and extensions.
|
||||
|
||||
## Code
|
||||
|
||||
Skilled at code? Know how to improve something or you generally want to support the creation of the app?
|
||||
|
||||
Know how to code and want to improve something or you generally want to support the creation of the app?
|
||||
|
||||
[![tachiyomiorg/tachiyomi - GitHub](https://gh-card.dev/repos/tachiyomiorg/tachiyomi.svg)](https://github.com/tachiyomiorg/tachiyomi)
|
||||
|
||||
@ -19,18 +16,15 @@ Skilled at code? Know how to improve something or you generally want to support
|
||||
[![tachiyomiorg/website - GitHub](https://gh-card.dev/repos/tachiyomiorg/website.svg)](https://github.com/tachiyomiorg/website)
|
||||
|
||||
## Translation
|
||||
|
||||
![Graph of Weblate Translations](https://hosted.weblate.org/widgets/tachiyomi/-/strings/open-graph.png)
|
||||
|
||||
Want to help translate the app to your language? You can easily help by utilizing a service we use called **Weblate**.
|
||||
|
||||
### Helpful links
|
||||
|
||||
* [Translators guide](https://docs.weblate.org/en/latest/user/translating.html)
|
||||
* [Secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages)
|
||||
* [Secondary languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages)
|
||||
* [Subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions)
|
||||
* [Glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary)
|
||||
|
||||
## Donation
|
||||
|
||||
If you can't contribute code or translations but you still wish to help, then you can choose to contribute directly to the projects founder, [Inorichi](https://github.com/inorichi/) using Ko-fi.
|
||||
If you're unable to contribute code nor translations but still wish to help, then you can choose to contribute directly to the projects founder [Inorichi](https://github.com/inorichi/) using [Ko-fi](https://ko-fi.com/inorichi).
|
||||
|
@ -6,7 +6,7 @@ description: Understanding Android 11 Changes.
|
||||
# Android 11+
|
||||
Understanding **Android 11** Changes.
|
||||
|
||||
## Android 11 Modifications
|
||||
## Android 11 modifications
|
||||
**Android 11** introduced changes related to [Scoped Storage](https://developer.android.com/about/versions/11/privacy/storage), which was initially introduced in **Android 5.0 Lollipop**.
|
||||
|
||||
However, the enforcement of **Scoped Storage** was initiated by **Google** with **Android 11**.
|
||||
@ -20,7 +20,7 @@ These functions may become slower due to **Scoped Storage**'s inherent latency,
|
||||
|
||||
This impact encompasses tasks like deleting chapters, library loading times, accessing folders outside data directories for downloads and reading, and more.
|
||||
|
||||
## Enhancing Performance
|
||||
## Enhancing performance
|
||||
For potential performance improvements, consider utilizing the following ADB command if you are comfortable with it.
|
||||
|
||||
```bash
|
||||
|
@ -6,15 +6,15 @@ description: Frequently Asked Questions about Browse.
|
||||
# Browse
|
||||
Frequently Asked Questions about Browse.
|
||||
|
||||
## Why Can't I See Installed Sources?
|
||||
## Why can't I see installed sources?
|
||||
|
||||
### If the Extension Language Differs from Your Phone's Primary Language
|
||||
### If the extension language differs from your device's primary language
|
||||
Enable the source's language at <nav to="sources">, tap on **Filter**, then turn on the language of the desired source.
|
||||
|
||||
### If It's an NSFW Extension
|
||||
### If it's an NSFW extension
|
||||
Navigate to <nav to="browse"> and check the **Show in sources and extensions list** option.
|
||||
|
||||
## How Can I Locate a Specific Series?
|
||||
## How can I locate a specific series?
|
||||
At times, locating a source containing the series you want to read can be challenging.
|
||||
|
||||
Here are strategies to help you find it:
|
||||
@ -25,10 +25,10 @@ Here are strategies to help you find it:
|
||||
1. If you still can't find the series on any source:
|
||||
- Search for an extension for the website you found in *step 1* within the [extensions list](/extensions/).
|
||||
|
||||
### If You Find the Series on a Specific Scanlator or Aggregator With an Extension
|
||||
### If you find the series on a specific scanlator or aggregator with an extension
|
||||
Download the relevant extension, locate it under <nav to="sources">, and proceed to search for the series there.
|
||||
|
||||
### If You Find the Series on a Specific Scanlator or Aggregator Without an Extension
|
||||
### If you find the series on a specific scanlator or aggregator without an extension
|
||||
Check if a request has been made to add the site as an extension [here](https://github.com/tachiyomiorg/tachiyomi-extensions/issues) and confirm it's not on the [list of extensions that won't be added back](https://github.com/tachiyomiorg/tachiyomi-extensions/issues/3475).
|
||||
|
||||
If it's not requested and not on the exclusion list, you can [submit a request here](https://github.com/tachiyomiorg/tachiyomi-extensions/issues/new/choose).
|
||||
|
@ -1,24 +1,23 @@
|
||||
---
|
||||
title: Local sources
|
||||
description: Frequently Asked Questions about Local sources.
|
||||
title: Local source
|
||||
description: Frequently Asked Questions about the Local source.
|
||||
---
|
||||
|
||||
# Local sources
|
||||
Frequently Asked Questions about Local sources.
|
||||
# Local source
|
||||
Frequently Asked Questions about the Local source.
|
||||
|
||||
## How Can I Import My Downloaded Series into Tachiyomi?
|
||||
## How can I import my downloaded series?
|
||||
For a step-by-step process, we recommend referring to [this guide](/docs/guides/local-source/).
|
||||
|
||||
For a step-by-step process, we recommend referring to [this guide](/docs/guides/local-series/).
|
||||
|
||||
## What Should I Do If I Can't Find the Tachiyomi Folder?
|
||||
## What should I do if I can't find the Tachiyomi folder?
|
||||
In case the **Tachiyomi** folder is not visible, create one using a file manager.
|
||||
|
||||
## How Can I Resolve Empty/Blank Covers on My Local Series?
|
||||
## How can I resolve empty/blank covers?
|
||||
Occasionally, cover images for local series might not appear.
|
||||
|
||||
1. Confirm that you've organized the folder structure correctly.
|
||||
* To verify, access the series with the missing cover and see if you can read chapters within the app.
|
||||
* If not, follow the [provided guide](/docs/guides/local-series/#folder-structure) first.
|
||||
* If not, follow the [provided guide](/docs/guides/local-source/#folder-structure) first.
|
||||
1. Capture a screenshot of the read chapters, then remove the series from your library.
|
||||
1. Navigate to <nav to="advanced"> and tap **Clear database**.
|
||||
* This action will only affect series not in your library.
|
@ -6,17 +6,17 @@ description: Frequently Asked Question about Downloads.
|
||||
# Downloads
|
||||
Frequently Asked Question about Downloads.
|
||||
|
||||
## Downloading Multiple Chapters or Series Concurrently
|
||||
## Downloading multiple chapters or series concurrently
|
||||
The app does not support parallel downloads from a single source to prevent potential IP bans due to excessive requests.
|
||||
While this might impact speed, it's preferable to rendering a source inaccessible.
|
||||
|
||||
However, if you're downloading series from various sources, up to five different sources can be downloaded simultaneously.
|
||||
|
||||
## Downloads Stopping Midway
|
||||
## Downloads stopping midway
|
||||
Downloads stopping midway may relate to network connection issues or source problems.
|
||||
**Tachiyomi** will provide notifications regarding encountered errors during download attempts.
|
||||
|
||||
## Undetected Downloads Reasons
|
||||
## Downloads aren't detected
|
||||
Downloads might not be detected due to multiple factors:
|
||||
|
||||
* Inaccessibility of the download location.
|
||||
@ -26,21 +26,21 @@ Downloads might not be detected due to multiple factors:
|
||||
* Series title modifications by the source.
|
||||
> Adjust the folder title to the updated name.
|
||||
|
||||
## Managing Download Queue
|
||||
## Managing download queue
|
||||
Navigate to <nav to="download-queue"> to interact with queued downloads.
|
||||
|
||||
Cancel all items by clicking the **Overflow** button beside a series chapter or the top right corner.
|
||||
|
||||
To reorder the queue, long-press the `=` icon next to a queue item.
|
||||
|
||||
## Internal Storage and External SD-Card Storage
|
||||
## Internal storage and external SD card storage
|
||||
As of now, this option isn't available.
|
||||
You could explore using symlinks, but this requires device rooting.
|
||||
|
||||
For more details on rooting your device, refer to [this guide](https://www.xda-developers.com/root/).
|
||||
|
||||
## Series Pages in Device Photo Gallery
|
||||
## Series pages in device photo gallery
|
||||
**Tachiyomi** typically prevents series pages in downloads from appearing in your device's photo gallery by default through a `.nomedia` file.
|
||||
However, in some cases, this might not function as intended.
|
||||
|
||||
A quick solution is to create the `.nomedia` file yourself, name it as such, and place it in your downloads folder. If the issue pertains to local series, put the `.nomedia` file in the respective local folder.
|
||||
A quick solution is to create the `.nomedia` file yourself, name it as such, and place it in your downloads folder. If the issue pertains to local source, put the `.nomedia` file in the respective local folder.
|
||||
|
@ -6,14 +6,14 @@ description: Frequently Asked Questions about the Application.
|
||||
# Application
|
||||
Frequently Asked Questions about the Application.
|
||||
|
||||
## Tachiyomi Preview
|
||||
## What is Tachiyomi Preview?
|
||||
|
||||
**Tachiyomi Preview** is a regularly updated beta version of the app.
|
||||
It showcases potential upcoming features, but it's more prone to bugs and crashes.
|
||||
|
||||
Ideal for users seeking the latest **Tachiyomi** experience, it's essential to [enable auto-backup](/docs/guides/backups#enabling-automatic-backups) to prevent library loss due to issues.
|
||||
|
||||
## Automatic Updates Not Working
|
||||
## Why aren't library updates working?
|
||||
|
||||
Some Android skins (e.g., **MIUI**) aggressively save battery, potentially shutting down apps in the background.
|
||||
|
||||
@ -21,7 +21,5 @@ Whitelist **Tachiyomi** from your battery saver by going to <nav to="advanced">
|
||||
|
||||
If unsuccessful, try [DontKillMyApp](https://dontkillmyapp.com/) for battery-saving options on your device and workarounds.
|
||||
|
||||
## Uninstall Issues
|
||||
|
||||
On **Android 10**, a bug emerged preventing **Tachiyomi** uninstallation if a MicroSD card was present.
|
||||
To resolve this, remove the MicroSD card from your device before uninstalling **Tachiyomi**.
|
||||
## Why is taking screenshots blocked?
|
||||
Turn off **Secure Screen** in <nav to="security-and-privacy">.
|
||||
|
@ -6,11 +6,11 @@ description: Frequently Asked Questions about the Library.
|
||||
# Library
|
||||
Frequently Asked Questions about the Library.
|
||||
|
||||
## How Can I Monitor My Downloaded Chapters?
|
||||
## How can I see the number of downloaded chapters?
|
||||
You can enable badges by navigating to <nav to="main_library">, then going to **Filter** and clicking the **Display** tab.
|
||||
Then, at the bottom, select **Download badges**.
|
||||
|
||||
## Why Does Global Update Skip Certain Entries?
|
||||
## Why is Global Update skipping entries?
|
||||
The app's default behavior is to skip updates for entries that meet the following criteria:
|
||||
|
||||
* Have unread chapters
|
||||
@ -24,7 +24,7 @@ We recommend sticking with the default settings and prioritizing unread chapters
|
||||
|
||||
If you wish to disable the notification about skipped items, you can do so at <nav to="advanced"> and then **Manage notifications** (doing so requires Android 8 or above).
|
||||
|
||||
## Why Am I Warned About Large Bulk Updates and Downloads?
|
||||
## Why am I warned about large bulk updates and downloads?
|
||||
Excessive server queries and superfluous site interactions could trigger anti-**Tachiyomi** measures from sources. See the previous question for more context. Long-running update checks and downloads might also impact your device's battery life.
|
||||
|
||||
To mitigate these concerns:
|
||||
@ -35,7 +35,7 @@ To mitigate these concerns:
|
||||
* Update only the Reading category by navigating to <nav to="library">, then tap **Categories** under **Global update**.
|
||||
* If the warning persists, create a new category for infrequently updated entries (like monthly series or those on hiatus) and set global updates to target the more frequently updated reading category.
|
||||
|
||||
## How Can I Ignore Duplicate Chapters?
|
||||
## How can I ignore duplicate chapters?
|
||||
Dealing with series translated by multiple groups that result in duplicate chapter releases?
|
||||
|
||||
Bookmark or mark as read the undesired chapters, then open the **Filter** menu, ensure you're on the **Filter** tab, then double-tap **Bookmarked** or single-tap **Unread**.
|
||||
@ -46,11 +46,14 @@ Ensure [Skip filtered chapters](/docs/guides/reader-settings#skip-filtered-chapt
|
||||
Alternatively, migrate to a source without duplicates.
|
||||
Refer to the [migration guide](/docs/guides/source-migration) for detailed instructions.
|
||||
|
||||
## Why Are Some Cover Thumbnails Corrupted or Blank?
|
||||
## Why are some cover thumbnails corrupted or blank?
|
||||
If cover thumbnails appear corrupted, blank, or broken, it's likely due to an incomplete download. Fix this by refreshing the covers in settings.
|
||||
|
||||
Refresh your covers at <nav to="advanced"> then tap **Refresh library covers**.
|
||||
|
||||
## Why Have Some Series Chapters Been Marked as Unread?
|
||||
## Why have some chapters been marked as unread?
|
||||
If certain series chapters are marked as unread without your interaction, it could be due to changed URLs.
|
||||
**Tachiyomi** detects these changes and interprets the chapters as new.
|
||||
|
||||
## Why can't I disable the Downloaded filter?
|
||||
Deactivate **Download only** via <nav to="downloaded-only">.
|
||||
|
@ -6,13 +6,10 @@ description: Frequently Asked Questions that don't fit other categories.
|
||||
# Miscellaneous
|
||||
Frequently Asked Questions that don't fit other categories.
|
||||
|
||||
## What's a Fork?
|
||||
Forks are alternate **Tachiyomi** versions with distinct features. Get more details here.
|
||||
|
||||
## Pausing Reading History or Going Incognito
|
||||
## How do I pause reading history?
|
||||
Activate **Incognito Mode** through <nav to="incognito-mode">.
|
||||
|
||||
## Reading Downloaded Chapters Only
|
||||
## Reading downloaded chapters only
|
||||
Activate **Download only** via <nav to="downloaded-only">.
|
||||
|
||||
## Understanding DNS over HTTPS
|
||||
@ -21,8 +18,5 @@ Learn more [here](https://www.cloudflare.com/learning/dns/dns-over-tls/).
|
||||
|
||||
Enable in <nav to="advanced">.
|
||||
|
||||
## Screenshots Blocked?
|
||||
Turn off **Secure Screen** in <nav to="security-and-privacy">.
|
||||
|
||||
## Automatic Library Backup and Data Transfer
|
||||
## Automatic library backup and data transfer
|
||||
Learn about automatic backup and restore [here](/docs/guides/backups) and enabling auto backups [here](/docs/guides/backups#enabling-automatic-backups).
|
@ -6,21 +6,21 @@ description: Frequently Asked Questions about the Reader.
|
||||
# Reader
|
||||
Frequently Asked Questions about the Reader.
|
||||
|
||||
## Unseen Images in Reader
|
||||
## Unseen images in reader
|
||||
Besides network-related problems, **Tachiyomi** may occasionally fail to recognize certain images.
|
||||
To address this, simply exit and re-enter the reader, often resolving the issue.
|
||||
|
||||
## Dual-Page Reader Implementation
|
||||
## Dual-page reader implementation
|
||||
Creating an effective dual-page reader that accommodates scanlator page inconsistencies and other complexities poses challenges.
|
||||
Consequently, implementing this feature is unlikely at present.
|
||||
|
||||
## Settings
|
||||
|
||||
### Modifying Tapping Zones
|
||||
### Modifying tapping zones
|
||||
For detailed instructions on changing tapping zones, please consult the guides section on the website [here](/docs/guides/reader-settings#tap-zones-pages).
|
||||
|
||||
### Reversing Tapping Direction
|
||||
### Reversing tapping direction
|
||||
To reverse the direction of tapping for navigation, follow the instructions available [here](/docs/guides/reader-settings#invert-tap-zones-pages).
|
||||
|
||||
### Volume Rocker Page Turning
|
||||
### Volume rocker page turning
|
||||
For using the volume keys to navigate pages, refer to the instructions provided [here](/docs/guides/reader-settings#volume-keys).
|
||||
|
@ -4,30 +4,25 @@ description: Using Shizuku with Tachiyomi.
|
||||
---
|
||||
|
||||
# Shizuku
|
||||
Using **Shizuku** with **Tachiyomi**.
|
||||
|
||||
## Understanding Shizuku
|
||||
**Shizuku** serves as an alternative method for installing and updating extensions in **Tachiyomi**.
|
||||
**Shizuku** is an alternative method for installing and updating extensions in **Tachiyomi**.
|
||||
|
||||
It taps into system APIs to directly install packages without requiring user interaction.
|
||||
|
||||
To get a detailed understanding of **Shizuku**, its purpose, and how it operates, refer to the information provided [here](https://shizuku.rikka.app/introduction/).
|
||||
|
||||
## Is Shizuku Necessary?
|
||||
No, **Shizuku** is not obligatory.
|
||||
## Is Shizuku necessary?
|
||||
No. It can be considered if you wish to bypass installation prompts during extension setup.
|
||||
|
||||
It should be considered if you wish to bypass installation prompts during extension setup.
|
||||
|
||||
## Setting Up Shizuku
|
||||
## Setting up Shizuku
|
||||
To set up **Shizuku**, follow the instructions [here](https://shizuku.rikka.app/guide/setup/).
|
||||
|
||||
After configuring it, activate **Shizuku** within **Tachiyomi** by navigating to <nav to="advanced"> then changing the **Installer** setting.
|
||||
|
||||
## Comparing Installers
|
||||
## Comparing installers
|
||||
Three installer options are available:
|
||||
|
||||
* **Legacy**: A fallback installer if the standard **PackageInstaller** faces complications.
|
||||
> This is the default for **MIUI**.
|
||||
* **Legacy**: A fallback installer if the standard **PackageInstaller** doesn't work.
|
||||
> This is the default for **MIUI** (i.e. Xiaomi devices).
|
||||
* **PackageInstaller**: The primary installer option with additional features dependent on the Android version.
|
||||
> For instance, it can bypass user prompts when updating extensions on **Android 12**.
|
||||
* **Shizuku**: Refer to the above section for details on **Shizuku**'s functionality.
|
||||
|
@ -1,14 +0,0 @@
|
||||
---
|
||||
title: User interface
|
||||
description: Frequently Asked Questions about the User Interface.
|
||||
---
|
||||
|
||||
# User interface
|
||||
Frequently Asked Questions about the User Interface.
|
||||
|
||||
## Can I Change the App Language?
|
||||
|
||||
Yes.
|
||||
With the introduction of [Per-app language preferences](https://developer.android.com/guide/topics/resources/app-languages) in **Android 13**.
|
||||
|
||||
To enhance the translation quality in your preferred language, you can contribute [here](https://hosted.weblate.org/projects/tachiyomi/).
|
@ -6,7 +6,7 @@ description: Frequently Asked Questions about Extensions.
|
||||
# Extensions
|
||||
Frequently Asked Questions about Extensions.
|
||||
|
||||
## Recommended Extensions and Sources
|
||||
## Recommended extensions and sources
|
||||
|
||||
**Tachiyomi** does not endorse or recommend any source, and there is no best extension.
|
||||
|
||||
@ -17,18 +17,18 @@ What works well for somebody else might not work well for you.
|
||||
**Tachiyomi** isn't responsible for slow, down, missing chapters, or subpar image quality of sources as it doesn't host content.
|
||||
:::
|
||||
|
||||
## Scanlator Sources
|
||||
## Scanlator sources
|
||||
Non-officially licensed series are translated by scanlators, often found on their websites or [MangaDex](https://mangadex.org/).
|
||||
Compare with official sources like [MANGA Plus By SHUEISHA](https://mangaplus.shueisha.co.jp) or [VIZ Shonen Jump](https://www.viz.com/shonenjump).
|
||||
Learn more in this [Wikipedia article](https://en.wikipedia.org/wiki/Scanlation).
|
||||
|
||||
## Requesting New Extensions
|
||||
## Requesting new extensions
|
||||
[Open an issue](https://github.com/tachiyomiorg/tachiyomi-extensions/issues) on **GitHub** if not already there.
|
||||
Check the removed [extensions list](https://github.com/tachiyomiorg/tachiyomi-extensions/issues/3475) first.
|
||||
|
||||
You can find the list of extensions to download [here](/extensions/)
|
||||
|
||||
## Enabling Third-Party Installations
|
||||
## Enabling third-party installations
|
||||
::::tabs
|
||||
== Android 8.0 and higher
|
||||
When prompted while installing your first extension, allow unknown apps installation from that source. For newer Androids, enable per-app in **Install unknown apps**.
|
||||
@ -52,14 +52,14 @@ When prompted while installing your first extension, allow unknown apps installa
|
||||
:::
|
||||
::::
|
||||
|
||||
## Uninstalling an Extension
|
||||
## Uninstalling an extension
|
||||
Uninstall extensions like regular apps: through device settings or in **Tachiyomi**.
|
||||
|
||||
::: tip Uninstalling an Extension
|
||||
In **Tachiyomi**, uninstall an extension via <nav to="extensions">, then tap **Uninstall** on the chosen extension.
|
||||
:::
|
||||
|
||||
## Removed Extensions
|
||||
## Removed extensions
|
||||
Extensions can disappear due to several reasons:
|
||||
|
||||
* Frequent website changes.
|
||||
|
@ -6,13 +6,7 @@ description: Frequently Asked Questions
|
||||
# General
|
||||
Frequently Asked Questions
|
||||
|
||||
## iOS Availability
|
||||
There is no iOS version and neither are there plans for one.
|
||||
Porting is difficult due to the separate codebases of iOS and Android apps.
|
||||
|
||||
Any app proclaiming to be "**Tachiyomi for iOS**" is not by us and should be treated as a scam.
|
||||
|
||||
## Google Play Store Availability
|
||||
## Why isn't Tachiyomi on the Google Play Store?
|
||||
**Tachiyomi** won't be on the **Google Play Store**.
|
||||
|
||||
APK-based extensions conflict with [Google Play's content policy](https://play.google.com/about/developer-content-policy/).
|
||||
@ -20,7 +14,13 @@ APK-based extensions conflict with [Google Play's content policy](https://play.g
|
||||
|
||||
To report **Tachiyomi** copycats on the **Google Play Store**, fill out [this form](https://support.google.com/googleplay/android-developer/contact/takedown) following [these steps](https://pastebin.com/08eeuJxH).
|
||||
|
||||
## Migrating from F-Droid
|
||||
## Is Tachiyomi available for iOS/iPadOS?
|
||||
There is no iOS or iPadOS version and neither are there plans for one.
|
||||
Porting is difficult due to the separate codebases of iOS and Android apps.
|
||||
|
||||
Any app proclaiming to be "**Tachiyomi for iOS**" is not by us and should be treated as a scam.
|
||||
|
||||
## How do I update from the F-Droid builds?
|
||||
**Tachiyomi** on **F-Droid** lacks official support, updates aren't guaranteed.
|
||||
|
||||
To migrate to official builds:
|
||||
@ -33,14 +33,17 @@ To migrate to official builds:
|
||||
Hosting an **F-Droid** repo isn't planned, as **Tachiyomi** manages updates independently, rendering **F-Droid** usage redundant.
|
||||
Refer to [this GitHub comment](https://github.com/tachiyomiorg/tachiyomi/issues/6736#issuecomment-1059608058) for details.
|
||||
|
||||
## Light Novels Compatibility
|
||||
## Can I read light novels?
|
||||
**Tachiyomi** can't read light novels; it's an image parser, not a text parser.
|
||||
|
||||
## Anime Streaming
|
||||
## Can I stream anime?
|
||||
**Tachiyomi** isn't designed for anime streaming.
|
||||
|
||||
Projects using the **Tachiyomi** name for anime streaming aren't affiliated with the main project.
|
||||
|
||||
## Device Syncing
|
||||
## Can I sync between multiple devices?
|
||||
**Tachiyomi** can't sync between devices.
|
||||
Use its [backup and restore](/docs/guides/backups) features for series database and content migration to another device.
|
||||
|
||||
## What's a fork?
|
||||
Forks are alternate **Tachiyomi** versions with distinct features. Get more details here.
|
||||
|
@ -7,7 +7,7 @@ description: Backups helps you prevent losing your library if something happens.
|
||||
|
||||
Backups in **Tachiyomi** are compatible between different versions of the app, with a few exceptions listed under forks information.
|
||||
|
||||
## What's Included in a Backup?
|
||||
## What's included in a backup?
|
||||
|
||||
Backups store the following information:
|
||||
|
||||
@ -28,7 +28,7 @@ Backups store the following information:
|
||||
![Backup and Restore](/docs/guides/backups/backup.dark.webp#dark =414x215)
|
||||
:::
|
||||
|
||||
## Restoring a Backup
|
||||
## Restoring a backup
|
||||
|
||||
Restoring a backup can be done through the Backup and Restore settings.
|
||||
To ensure a smooth restoration process, remember to:
|
||||
@ -36,11 +36,11 @@ To ensure a smooth restoration process, remember to:
|
||||
1. Log into the Tracking services you previously used.
|
||||
1. Download any extensions you've used in your backup.
|
||||
|
||||
## Transferring Downloads to a New Installation
|
||||
## Transferring downloads to a new installation
|
||||
|
||||
You can transfer downloaded series chapters from one version of **Tachiyomi** to another.
|
||||
|
||||
## Enabling Automatic Backups
|
||||
## Enabling automatic backups
|
||||
|
||||
It is highly recommended to enable automatic backups to ensure you can recover in case of any issues.
|
||||
|
||||
@ -54,7 +54,7 @@ This way, you can recover from catastrophic failures.
|
||||
![Automatic Backupse](/docs/guides/backups/automatic_backups.dark.webp#dark =414x402)
|
||||
:::
|
||||
|
||||
## Forks Information
|
||||
## Forks information
|
||||
|
||||
Some forks of **Tachiyomi** have specific limitations regarding backup restoration:
|
||||
|
||||
|
@ -7,44 +7,17 @@ description: Organize your favorite series effortlessly with categories that dec
|
||||
|
||||
Organize your favorite series effortlessly with categories that declutter and structure your library.
|
||||
|
||||
To manage your categories, navigate to <nav to="categories">.
|
||||
|
||||
- You can name and sort categories as you prefer (e.g., by `Genre`, `Reading Status`).
|
||||
- Add series to multiple categories and control update options through Library settings, even auto-download chapters from chosen categories.
|
||||
> If you've enabled **Download new chapters** in the Downloads settings.
|
||||
|
||||
|
||||
## Customization
|
||||
|
||||
There are various things you can do to categories to help enhance your library.
|
||||
|
||||
To makes changes to your categories, first navigate to <nav to="categories">.
|
||||
|
||||
:::: tabs
|
||||
== Create
|
||||
### Create a category
|
||||
|
||||
1. Press the **+ Add** button in the bottom right.
|
||||
1. Enter a name and press **OK**.
|
||||
== Edit
|
||||
### Edit a category
|
||||
|
||||
1. Long press a category.
|
||||
1. Tap **EDIT** on the top-right.
|
||||
== Reorder
|
||||
### Change category display order
|
||||
|
||||
1. Click the arrows to move the category to your preferred position.
|
||||
> The category in the top-most position will be the first one in your library.
|
||||
== Delete
|
||||
### Delete a category
|
||||
|
||||
1. Long press a category.
|
||||
1. Tap **DELETE** on the top-right.
|
||||
::::
|
||||
|
||||
## Content
|
||||
|
||||
Categories would be useless without any content in them.
|
||||
Below is some tips for utilizing them.
|
||||
Below are some tips for using them.
|
||||
|
||||
:::: tabs
|
||||
== Add entries
|
||||
|
@ -7,27 +7,23 @@ description: Essential information to help you get set up with Tachiyomi.
|
||||
|
||||
Essential information to help you get set up with Tachiyomi.
|
||||
|
||||
## Installation Guide
|
||||
## Installation guide
|
||||
|
||||
### 1. Downloading Tachiyomi
|
||||
|
||||
To get started with **Tachiyomi**, follow these steps:
|
||||
|
||||
1. Visit our [download](/download/) page to get the latest version of **Tachiyomi**.
|
||||
1. After the download is complete, open the `tachiyomi-*.apk` file.
|
||||
1. Proceed with the installation process.
|
||||
|
||||
### 2. Installing Extensions
|
||||
### 2. Adding sources
|
||||
|
||||
Once **Tachiyomi** is installed on your device, you can add extensions to access a wide range of sources.
|
||||
|
||||
Here's how:
|
||||
Once **Tachiyomi** is installed on your device, you can install extensions to access a wide range of sources.
|
||||
|
||||
1. Open the **Tachiyomi** app.
|
||||
1. Navigate to the "**Browse**" section.
|
||||
1. Tap on the **Extensions** tab.
|
||||
1. Tap on the "**Extensions**" tab.
|
||||
1. Look for the extension you want to use and press the "**INSTALL**" button next to it.
|
||||
1. Accept the installation prompt that appears.
|
||||
1. Proceed with the installation process.
|
||||
|
||||
![Installing extensions](/docs/guides/getting-started/installing-extensions.light.webp#light =414x245)
|
||||
|
||||
@ -41,30 +37,30 @@ Depending on your device settings, you might need to grant **Tachiyomi** permiss
|
||||
> Relevant guide: [Enabling Third-Party Installations](/docs/faq/extensions#enabling-third-party-installations)
|
||||
:::
|
||||
|
||||
### 3. Adding Series to Your Library
|
||||
### 3. Adding series to your library
|
||||
|
||||
After installing the desired extension, you'll find it in the **Sources** tab, which contains all your sources obtained through extensions.
|
||||
After installing the desired extension, you'll find it in the **Sources** tab.
|
||||
|
||||
Here's how you can add series to your library:
|
||||
|
||||
1. Select the source you'd like to browse.
|
||||
1. You can use the **Popular**/**Latest** filters to browse, or you can search for the series name.
|
||||
1. Once you've found the series that you want to add, click on it for more details.
|
||||
1. You can use the **Popular**/**Latest** listings to browse, or you can search for the series name.
|
||||
1. Once you've found the series that you want to add, tap on it for more details.
|
||||
1. Press the "**Add to library**" button, and the series will be added to your Library, ready to be read!
|
||||
|
||||
## Additional Setup
|
||||
## Additional setup
|
||||
|
||||
### Series Search Options
|
||||
### Series search options
|
||||
|
||||
If you want to search for series across all your sources, you can use the global search feature.
|
||||
If you want to search for series across all your sources, you can use the Global Search feature.
|
||||
|
||||
Follow these steps:
|
||||
|
||||
1. Go to the "**Browse**" section.
|
||||
1. Tap on **Sources** located at the top-right corner.
|
||||
1. Use the Search function to find series from all available sources.
|
||||
1. Ensure you're on the "**Sources**" tab located at the top-right corner.
|
||||
1. Use the Search icon in the toolbar to find series from all available sources.
|
||||
|
||||
### Trouble Finding a Specific Series?
|
||||
### Trouble finding a specific series?
|
||||
|
||||
If you encounter difficulties while searching for a specific series, consider the following points:
|
||||
|
||||
|
@ -9,7 +9,7 @@ Advanced local series metadata editing for enhanced library organization.
|
||||
## Editing local series details
|
||||
|
||||
It is possible to add details to local series.
|
||||
Like series from other catalogs, you add information about the series such as the `author`, `artist`, `description`, and `genre` tags.
|
||||
Like series from other sources, you add information about the series such as the `author`, `artist`, `description`, and `genre` tags.
|
||||
|
||||
To import details along with your local series, you have to create a JSON file.
|
||||
It can be named anything but it must be placed within the **Series** folder.
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
title: Local series
|
||||
title: Local source
|
||||
description: For users who would like to download and organize their own media.
|
||||
---
|
||||
|
||||
# Local series
|
||||
# Local source
|
||||
|
||||
If you like to download and organize your media, then you want to know how to manage your own series in Tachiyomi.
|
||||
|
||||
@ -28,7 +28,7 @@ But expect better performance with directories and `ZIP`/`CBZ`.
|
||||
|
||||
Remember to give the app storage permissions on **Android 6** and newer.
|
||||
|
||||
### Folder Structure
|
||||
### Folder structure
|
||||
|
||||
Tachiyomi requires a specific folder structure for local series to be correctly processed.
|
||||
Local series will be read from the `Tachiyomi/local` folder.
|
||||
@ -127,7 +127,7 @@ You can refer to the following example:
|
||||
Tachiyomi will see four chapters in a single series.
|
||||
The path to the folder with images must contain both the series title and the chapter name (as seen above).
|
||||
|
||||
### Archive Files
|
||||
### Archive files
|
||||
|
||||
Archive files such as `ZIP`/`CBZ` are supported but the folder structure inside is not.
|
||||
Any folders inside the archive file are ignored.
|
@ -43,12 +43,10 @@ TBA
|
||||
## General questions
|
||||
|
||||
### How do I login into trackers?
|
||||
|
||||
1. Go to <nav to="tracking">.
|
||||
1. Tap the desired tracker to begin login.
|
||||
|
||||
### How do I set up tracking for each series?
|
||||
|
||||
1. Open the series.
|
||||
1. Tap **Tracking**.
|
||||
1. Tap **Add tracking** for the desired service.
|
||||
@ -58,11 +56,9 @@ You can also change the search query if there is no match.
|
||||
:::
|
||||
|
||||
### How do I log in with Kitsu?
|
||||
|
||||
To log in with Kitsu, you need to use your email address as your username.
|
||||
|
||||
### Can't Find a Series on MyAnimeList?
|
||||
|
||||
### Can't find a series on MyAnimeList?
|
||||
If you cannot find a series by name, you can look it up on MyAnimeList and then search for it in **Tachiyomi** using the following format: `id:<id from series URL>`.
|
||||
|
||||
You can also search for a series on your MAL profile list by searching in the following format: `my:<series name>`.
|
||||
@ -71,6 +67,6 @@ You can also search for a series on your MAL profile list by searching in the fo
|
||||
Related GitHub issue: [#65](https://github.com/tachiyomiorg/tachiyomi/issues/65)
|
||||
:::
|
||||
|
||||
### Check Tracked/Untracked Series in Library
|
||||
### Finding tracked/intracked series in your library
|
||||
Go to <nav to="main_library">, then **Filter (top right) -> Filter tab** then **Toggle Tracked**.
|
||||
If you are logged into more than one tracker, toggle the tracker you want to include or exclude.
|
||||
|
@ -41,7 +41,7 @@ Wait or check for an extension update if you have not already.
|
||||
There are no ETAs for updates.
|
||||
:::
|
||||
|
||||
## Personalized Issue
|
||||
## Personalized issue
|
||||
If you're the only one facing a problem, you might be encountering [Cloudflare](/docs/guides/troubleshooting/#cloudflare) protection, an IP ban, or other countermeasures set by website owners against programs like **Tachiyomi**.
|
||||
|
||||
**To minimize future issues:**
|
||||
@ -52,7 +52,7 @@ If you're the only one facing a problem, you might be encountering [Cloudflare](
|
||||
These are general guidelines as each site has its specific undisclosed limits and triggers.
|
||||
:::
|
||||
|
||||
## Widespread Issue
|
||||
## Widespread issue
|
||||
When everyone experiences a problem, it could be with the extension or app:
|
||||
|
||||
1. Check open issues [for the app](https://github.com/tachiyomiorg/tachiyomi/issues) and/or [**extensions**](https://github.com/tachiyomiorg/tachiyomi-extensions/issues).
|
||||
|
@ -10,16 +10,16 @@ Here's how to troubleshoot.
|
||||
|
||||
## WebView
|
||||
|
||||
### Accessing Websites via WebView
|
||||
### Accessing websites via WebView
|
||||
|
||||
::: tabs
|
||||
== Using Browse
|
||||
== From Browse
|
||||
1. Open **Browse** from the bottom navbar.
|
||||
1. Tap the desired source.
|
||||
1. Tap the **WebView** icon in the top toolbar.
|
||||
1. Complete a **CAPTCHA** if one is shown.
|
||||
1. Close by tapping `X` at the top-left.
|
||||
== Using Series
|
||||
== From a Series
|
||||
1. Open a series.
|
||||
1. Tap the **WebView** icon button.
|
||||
1. Complete a **CAPTCHA** if one is shown.
|
||||
@ -27,26 +27,26 @@ Here's how to troubleshoot.
|
||||
:::
|
||||
|
||||
Repeat if needed.
|
||||
Alternatively, try opening the website in your browser using the **Overflow** icon and solve any **CAPTCHA** there.
|
||||
Alternatively, try opening the website in your browser using the **Overflow** icon in the WebView screen and solve any **CAPTCHA** there.
|
||||
|
||||
![Open WebView](/docs/guides/troubleshooting/open-webview.dark.webp =1079x520)
|
||||
|
||||
### Clearing cookies and WebView data
|
||||
::: info Clearing cookies and WebView data
|
||||
This resets your WebView to a clean state, including any login states.
|
||||
|
||||
1. Navigate to <nav to="advanced">.
|
||||
1. Tap **Clear cookies**.
|
||||
1. Tap **Clear WebView data**.
|
||||
:::
|
||||
|
||||
### WebView Update
|
||||
### WebView update
|
||||
To update WebView, you need to find what WebView implementation is used on your device.
|
||||
|
||||
In general, default implementation depends on the Android version as follows:
|
||||
Typical default implementation depends on the Android version as follows:
|
||||
|
||||
::: tabs
|
||||
== Android 10 and above
|
||||
[Android System WebView](https://play.google.com/store/apps/details?id=com.google.android.webview)
|
||||
== Android 7-9
|
||||
== Android 7 - 9
|
||||
[Google Chrome](https://play.google.com/store/apps/details?id=com.android.chrome)
|
||||
== Android 6 and below
|
||||
[Android System WebView](https://play.google.com/store/apps/details?id=com.google.android.webview)
|
||||
@ -57,9 +57,9 @@ Newer Android users can check/change WebView in [Developer Options](https://deve
|
||||
:::
|
||||
|
||||
::: warning Caution with Non-Standard WebView
|
||||
Using non-standard WebView (like Firefox) might cause **Tachiyomi** malfunction or crashes.
|
||||
Using non-standard WebView (like Firefox) might cause **Tachiyomi** to malfunction or crash.
|
||||
|
||||
It's best to choose [Android System WebView](https://play.google.com/store/apps/details?id=com.google.android.webview) or [Google Chrome](https://play.google.com/store/apps/details?id=com.android.chrome).
|
||||
It's best to use the standard [Android System WebView](https://play.google.com/store/apps/details?id=com.google.android.webview) or [Google Chrome](https://play.google.com/store/apps/details?id=com.android.chrome).
|
||||
:::
|
||||
|
||||
## Cloudflare
|
||||
@ -67,8 +67,8 @@ It's best to choose [Android System WebView](https://play.google.com/store/apps/
|
||||
**Cloudflare**, an anti-bot mechanism, is used by some sources.
|
||||
Some sources intentionally have higher **Cloudflare** protection to deter apps like **Tachiyomi**.
|
||||
|
||||
### Dealing with Cloudflare Looping
|
||||
Certain sources may employ more advanced **Cloudflare** protection, leading to WebView continuously loading when bypassing using the above solution.
|
||||
### Dealing with Cloudflare looping
|
||||
Certain sources may employ more advanced **Cloudflare** protection, leading to WebView continuously reloading when bypassing using the above solution.
|
||||
If this occurs, try [Accessing the Website via WebView](#accessing-websites-via-webview).
|
||||
|
||||
### Changing your user agent
|
||||
@ -77,7 +77,7 @@ While some sources have specific user agent strings, most rely on the app's defa
|
||||
|
||||
::: info Changing your user agent
|
||||
1. Navigate to <nav to="advanced">.
|
||||
1. Modify **Default user agent string** to another value.
|
||||
1. Modify **Default user agent string** to another value. You may need to experiment to find one that works.
|
||||
> [Here's a reference](https://www.whatismybrowser.com/guides/the-latest-user-agent/).
|
||||
1. Restart the app and retry source access.
|
||||
:::
|
||||
@ -88,22 +88,22 @@ Wait for the source to lower its protection or switch to different sources.
|
||||
|
||||
## General
|
||||
|
||||
### Obtaining Logcats
|
||||
To diagnose abnormal app behavior, record device logs using a [Logcat Reader](https://play.google.com/store/apps/details?id=com.dp.logcatapp).
|
||||
|
||||
### Obtaining Crash Logs
|
||||
### Obtaining crash/error logs
|
||||
For crash investigations, navigate to <nav to="advanced"> and tap **Dump crash logs**.
|
||||
|
||||
![Dump crashlogs](/docs/guides/troubleshooting/dump-crash-logs.dark.webp =512x386)
|
||||
|
||||
### App or Extension Installation Issues
|
||||
Problematic with app or extension installation?
|
||||
### Obtaining more logs
|
||||
To diagnose abnormal app behavior, record device logs using a [Logcat Reader](https://play.google.com/store/apps/details?id=com.dp.logcatapp).
|
||||
|
||||
### App or extension installation issues
|
||||
Encountering problems while trying to install app or extension `.apk` files?
|
||||
Follow these steps:
|
||||
|
||||
1. Install [Split APK Installer](https://play.google.com/store/apps/details?id=com.aefyr.sai) from Google Play Store.
|
||||
1. Utilize it to install the `.apk`.
|
||||
1. Install [Split APK Installer](https://play.google.com/store/apps/details?id=com.aefyr.sai) from the Google Play Store.
|
||||
1. Try installing your `.apk` from Split APK Installer.
|
||||
|
||||
**Split APK Installer** clarifies issues or successfully installs.
|
||||
**Split APK Installer** helps show better error messages or may even successfully install your `.apk` without issue.
|
||||
Common errors include:
|
||||
|
||||
::: details `INSTALL_FAILED_UPDATE_INCOMPATIBLE: Package eu.kanade.tachiyomi signatures do not match the previously installed version; ignoring!`
|
||||
@ -113,10 +113,10 @@ Data backup, uninstall, and fresh installation are required.
|
||||
|
||||
::: details `DISPLAY_NAME column is null`
|
||||
Seeing this error points to a corrupted `.apk`.
|
||||
Redownload repeatedly to resolve.
|
||||
Try redownloading the `.apk`.
|
||||
:::
|
||||
|
||||
::: details `INSTALL_FAILED_NO_MATCHING_ABIS`
|
||||
Seeing this error suggests the `.apk` is incompatible with your CPU architecture.
|
||||
Obtain the appropriate version or a universal `.apk`.
|
||||
Obtain the appropriate version or a universal `.apk` (i.e. the option with largest file size on GitHub).
|
||||
:::
|
||||
|
@ -30,5 +30,5 @@ features:
|
||||
link: /extensions/
|
||||
- title: Customization
|
||||
details: Make it yours with multiple reading modes, custom color filters, and many other settings.
|
||||
icon: <svg height="24" width="24" viewbox="0 0 48 48" x="0.0" y="0.0"><g transform="translate(0.000000,0.000000) scale(0.013200,-0.013200)"><path class="st0" d="M1761.7-8.5l-305-5l13.3-163.3c6.7-88.3,13.3-198.3,13.3-245v-83.3H800H116.7l5-298.3l5-298.3l111.7,11.7 c253.3,23.3,1691.7,30,2436.7,11.7c426.7-11.7,786.7-23.3,800-26.7c21.7-6.7,25,33.3,25,296.7v303.3l-638.3-6.7 c-350-3.3-663.3,0-696.7,5l-58.3,11.7l5,250c5,213.3,1.7,248.3-20,245C2078.3-1.9,1930-6.9,1761.7-8.5z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path><path class="st0" d="M816.7-1290.2c-213.3-83.3-266.7-111.7-263.3-135c1.7-16.7,36.7-121.7,78.3-233.3 c96.7-255,206.7-640,276.7-963.3c30-136.7,56.7-251.7,58.3-255c3.3-3.3,138.3,41.7,303.3,100l298.3,105l-20,100 c-58.3,280-413.3,1393.3-445,1390C1091.7-1183.5,963.3-1231.9,816.7-1290.2z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path><path class="st0" d="M2376.7-1458.5c-173.3-695-381.7-1386.7-451.7-1501.7l-31.7-51.7l-288.3-5c-333.3-5-1521.7,15-1571.7,26.7 c-31.7,8.3-33.3,0-33.3-300v-310l83.3,10c46.7,5,863.3,15,1816.7,20l1733.3,11.7v293.3v293.3l-141.7-11.7 c-78.3-5-325-11.7-548.3-11.7c-318.3-1.7-403.3,3.3-396.7,20c5,10,36.7,83.3,70,161.7C2725-2560.2,3110-1375.2,3090-1356.9 c-6.7,6.7-543.3,156.7-608.3,171.7C2448.3-1178.5,2441.7-1196.9,2376.7-1458.5z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path></g></svg>
|
||||
icon: <svg height="24" width="24" viewbox="0 0 48 48"><g transform="scale(0.013200,-0.013200)"><path class="st0" d="M1761.7-8.5l-305-5l13.3-163.3c6.7-88.3,13.3-198.3,13.3-245v-83.3H800H116.7l5-298.3l5-298.3l111.7,11.7 c253.3,23.3,1691.7,30,2436.7,11.7c426.7-11.7,786.7-23.3,800-26.7c21.7-6.7,25,33.3,25,296.7v303.3l-638.3-6.7 c-350-3.3-663.3,0-696.7,5l-58.3,11.7l5,250c5,213.3,1.7,248.3-20,245C2078.3-1.9,1930-6.9,1761.7-8.5z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path><path class="st0" d="M816.7-1290.2c-213.3-83.3-266.7-111.7-263.3-135c1.7-16.7,36.7-121.7,78.3-233.3 c96.7-255,206.7-640,276.7-963.3c30-136.7,56.7-251.7,58.3-255c3.3-3.3,138.3,41.7,303.3,100l298.3,105l-20,100 c-58.3,280-413.3,1393.3-445,1390C1091.7-1183.5,963.3-1231.9,816.7-1290.2z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path><path class="st0" d="M2376.7-1458.5c-173.3-695-381.7-1386.7-451.7-1501.7l-31.7-51.7l-288.3-5c-333.3-5-1521.7,15-1571.7,26.7 c-31.7,8.3-33.3,0-33.3-300v-310l83.3,10c46.7,5,863.3,15,1816.7,20l1733.3,11.7v293.3v293.3l-141.7-11.7 c-78.3-5-325-11.7-548.3-11.7c-318.3-1.7-403.3,3.3-396.7,20c5,10,36.7,83.3,70,161.7C2725-2560.2,3110-1375.2,3090-1356.9 c-6.7,6.7-543.3,156.7-608.3,171.7C2448.3-1178.5,2441.7-1196.9,2376.7-1458.5z" fill="var(--vp-c-brand)" fill-rule="nonzero"></path></g></svg>
|
||||
---
|
||||
|
@ -6,7 +6,7 @@
|
||||
/help/guides/backups/ /docs/guides/backups 301
|
||||
/help/guides/tracking/ /docs/guides/tracking 301
|
||||
/help/guides/categories/ /docs/guides/categories 301
|
||||
/help/guides/local-manga/ /docs/guides/local-series/ 301
|
||||
/help/guides/local-manga/ /docs/guides/local-source/ 301
|
||||
/help/guides/reader-settings/ /docs/guides/reader-settings 301
|
||||
/help/contribution/ /docs/contribute 301
|
||||
/help/faq/ /docs/faq/general 301
|
||||
|
@ -1,6 +1,7 @@
|
||||
<svg height="24" width="24" viewbox="0 0 48 48" x="0.0" y="0.0">
|
||||
<g transform="translate(0.000000,0.000000) scale(0.013200,-0.013200)">
|
||||
<path class="st0" d="M1761.7-8.5l-305-5l13.3-163.3c6.7-88.3,13.3-198.3,13.3-245v-83.3H800H116.7l5-298.3l5-298.3l111.7,11.7 c253.3,23.3,1691.7,30,2436.7,11.7c426.7-11.7,786.7-23.3,800-26.7c21.7-6.7,25,33.3,25,296.7v303.3l-638.3-6.7 c-350-3.3-663.3,0-696.7,5l-58.3,11.7l5,250c5,213.3,1.7,248.3-20,245C2078.3-1.9,1930-6.9,1761.7-8.5z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
<path class="st0" d="M816.7-1290.2c-213.3-83.3-266.7-111.7-263.3-135c1.7-16.7,36.7-121.7,78.3-233.3 c96.7-255,206.7-640,276.7-963.3c30-136.7,56.7-251.7,58.3-255c3.3-3.3,138.3,41.7,303.3,100l298.3,105l-20,100 c-58.3,280-413.3,1393.3-445,1390C1091.7-1183.5,963.3-1231.9,816.7-1290.2z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
<path class="st0" d="M2376.7-1458.5c-173.3-695-381.7-1386.7-451.7-1501.7l-31.7-51.7l-288.3-5c-333.3-5-1521.7,15-1571.7,26.7 c-31.7,8.3-33.3,0-33.3-300v-310l83.3,10c46.7,5,863.3,15,1816.7,20l1733.3,11.7v293.3v293.3l-141.7-11.7 c-78.3-5-325-11.7-548.3-11.7c-318.3-1.7-403.3,3.3-396.7,20c5,10,36.7,83.3,70,161.7C2725-2560.2,3110-1375.2,3090-1356.9 c-6.7,6.7-543.3,156.7-608.3,171.7C2448.3-1178.5,2441.7-1196.9,2376.7-1458.5z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
</g></svg>
|
||||
<svg height="24" width="24" viewbox="0 0 48 48">
|
||||
<g transform="translate(0.000000,0.000000) scale(0.013200,-0.013200)">
|
||||
<path class="st0" d="M1761.7-8.5l-305-5l13.3-163.3c6.7-88.3,13.3-198.3,13.3-245v-83.3H800H116.7l5-298.3l5-298.3l111.7,11.7 c253.3,23.3,1691.7,30,2436.7,11.7c426.7-11.7,786.7-23.3,800-26.7c21.7-6.7,25,33.3,25,296.7v303.3l-638.3-6.7 c-350-3.3-663.3,0-696.7,5l-58.3,11.7l5,250c5,213.3,1.7,248.3-20,245C2078.3-1.9,1930-6.9,1761.7-8.5z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
<path class="st0" d="M816.7-1290.2c-213.3-83.3-266.7-111.7-263.3-135c1.7-16.7,36.7-121.7,78.3-233.3 c96.7-255,206.7-640,276.7-963.3c30-136.7,56.7-251.7,58.3-255c3.3-3.3,138.3,41.7,303.3,100l298.3,105l-20,100 c-58.3,280-413.3,1393.3-445,1390C1091.7-1183.5,963.3-1231.9,816.7-1290.2z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
<path class="st0" d="M2376.7-1458.5c-173.3-695-381.7-1386.7-451.7-1501.7l-31.7-51.7l-288.3-5c-333.3-5-1521.7,15-1571.7,26.7 c-31.7,8.3-33.3,0-33.3-300v-310l83.3,10c46.7,5,863.3,15,1816.7,20l1733.3,11.7v293.3v293.3l-141.7-11.7 c-78.3-5-325-11.7-548.3-11.7c-318.3-1.7-403.3,3.3-396.7,20c5,10,36.7,83.3,70,161.7C2725-2560.2,3110-1375.2,3090-1356.9 c-6.7,6.7-543.3,156.7-608.3,171.7C2448.3-1178.5,2441.7-1196.9,2376.7-1458.5z" fill="#818CF8" fill-rule="nonzero"></path>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.3 KiB |
Loading…
Reference in New Issue
Block a user