diff --git a/src/.vuepress/components/MDI-Glasses.vue b/src/.vuepress/components/MDI-Glasses.vue new file mode 100644 index 00000000..3d2e4e4c --- /dev/null +++ b/src/.vuepress/components/MDI-Glasses.vue @@ -0,0 +1,12 @@ + + + diff --git a/src/.vuepress/components/MaterialIcon.vue b/src/.vuepress/components/MaterialIcon.vue index 0b6076dd..1524b8df 100644 --- a/src/.vuepress/components/MaterialIcon.vue +++ b/src/.vuepress/components/MaterialIcon.vue @@ -15,17 +15,15 @@ export default { .material-holder { color: #476582; - background-color: rgba(27,31,35,0.05); - padding: 0.25rem 0.5rem; margin: 0; font-size: 0.85em; - border-radius: 3px; + border-radius: 3px; display: inline; } .material-icons { - font-size: 16px; + font-size: 1.35em; position: relative; top: 0.2rem; } - \ No newline at end of file + diff --git a/src/.vuepress/config/nav.js b/src/.vuepress/config/nav.js index 7bf402c6..7f64da63 100644 --- a/src/.vuepress/config/nav.js +++ b/src/.vuepress/config/nav.js @@ -6,59 +6,32 @@ module.exports = [ { text: 'Frequently Asked Questions', items: [ - { - text: 'Application', - link: '/help/faq/application' - }, - { - text: 'Extensions', - link: '/help/faq/extensions' - } + { text: 'Application', link: '/help/faq/application' }, + { text: 'Extensions', link: '/help/faq/extensions' } ] }, { text: 'Guides', items: [ - { - text: 'General', - link: '/help/guides/getting-started' - }, - { - text: 'Menus', - link: '/help/guides/my-library' - }, - { - text: 'Settings', - link: '/help/guides/general' - } + { text: 'General', link: '/help/guides/getting-started' }, + { text: 'Menus', link: '/help/guides/menus' }, + { text: 'Settings', link: '/help/guides/settings' } ] }, { text: 'Contribution', items: [ - { - text: 'How can I help?', - link: '/help/contribution' - } + { text: 'How can I help?', link: '/help/contribution' } ] }, { text: 'Available extensions', items: [ - { - text: 'List', - link: '/extensions/' - } + { text: 'List', link: '/extensions/' } ] } ] }, - { - text: 'Discord', - link: 'https://discord.gg/tachiyomi' - }, - { - text: 'Reddit', - link: 'https://reddit.com/r/Tachiyomi' - } + { text: 'Discord', link: 'https://discord.gg/tachiyomi' }, + { text: 'Reddit', link: 'https://reddit.com/r/Tachiyomi' } ]; diff --git a/src/.vuepress/config/plugins.js b/src/.vuepress/config/plugins.js index 5fa43057..16b9c5ea 100644 --- a/src/.vuepress/config/plugins.js +++ b/src/.vuepress/config/plugins.js @@ -1,25 +1,18 @@ module.exports = [ - [ - '@vuepress/back-to-top' - ], - [ - '@vuepress/google-analytics', - { - 'ga': 'UA-148212082-1' - } - ], - [ - 'container', - { - type: 'expander', - before: info => `
${info}\n`, - after: '
\n' - } - ], - [ - 'clean-urls', - { - normalSuffix: '/' - } - ] + ['clean-urls', { + normalSuffix: '/' }], + ['@vuepress/back-to-top'], + ['@vuepress/google-analytics', { + 'ga': 'UA-148212082-1' }], + ['vuepress-plugin-container', { + type: 'expander', + before: info => `
${info}`, + after: '
'}], + ['vuepress-plugin-container', { + type: 'guide', + before: info => `

${info}

`, + after: '
'}], + ['vuepress-plugin-container', { + type: 'aside', + defaultTitle: ''}] ]; diff --git a/src/.vuepress/config/sidebar/guides.js b/src/.vuepress/config/sidebar/guides.js index bd5004dd..138bb2c5 100644 --- a/src/.vuepress/config/sidebar/guides.js +++ b/src/.vuepress/config/sidebar/guides.js @@ -42,6 +42,7 @@ module.exports = [ '/help/guides/tracking', '/help/guides/backup', '/help/guides/advanced', + '/help/guides/about' ] }, ] diff --git a/src/.vuepress/public/assets/css/carousel.css b/src/.vuepress/public/assets/css/carousel.css index d531d1d1..2ee539a1 100644 --- a/src/.vuepress/public/assets/css/carousel.css +++ b/src/.vuepress/public/assets/css/carousel.css @@ -1,9 +1,17 @@ .carousel { - background: #EEE; + background: #F0F4F8; + border-radius: 1em; } .carousel-cell { width: 100%; /* full width */ margin-right: 16px; margin-left: 16px; +} + +.flickity-button { + position: absolute; + background: hsla(0,0%,100%,.75); + border: none; + color: rgba(44, 62, 80); } \ No newline at end of file diff --git a/src/.vuepress/styles/index.scss b/src/.vuepress/styles/index.scss index f7785ae3..825a1001 100644 --- a/src/.vuepress/styles/index.scss +++ b/src/.vuepress/styles/index.scss @@ -10,45 +10,10 @@ border-color: #2E84BF !important; } - .home .hero img { max-height: 120px !important; } -.expander_details { - background-color: #f3f5f7; - color: #2E84BF; - border-left: 0.5rem solid #2E84BF; -} - -.expander_details strong { - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; -} - -.expander_details ol { - padding: 0 0 1rem 1.5rem; - margin-left: 1rem; -} - -.expander_details li { - font-weight: 500; -} - -.expander_details ul li { - font-weight: 400; -} - -.expander_summary { - padding: 1rem 1.5rem; -} - -.expander_summary:focus { - outline: none !important; -} - .badge.default-indicator { background-color: #2E84BF !important; } diff --git a/src/.vuepress/styles/index.styl b/src/.vuepress/styles/index.styl new file mode 100644 index 00000000..1c58d923 --- /dev/null +++ b/src/.vuepress/styles/index.styl @@ -0,0 +1,37 @@ +.guide + margin 1rem 0 + padding .1rem 1.5rem + border-radius 0.4rem + background-color #f0f4f8 + .title + font-weight bold + +.custom-block + &.aside + color transparentify($textColor, 0.4) + font-size 0.9rem + text-align right + +customBlockBorderRadius = '.custom-block.tip, .custom-block.warning, .custom-block.error' + +{customBlockBorderRadius} + border-radius 0rem 0.4rem 0.4rem 0rem + +.expander.content + .expander.expansion + font-weight bold + +.expander.content + margin 1rem 0 + padding 1rem 1.5rem + border-radius 0.4rem + background-color #f0f4f8 + +.expander.expansion:focus + outline none !important + +.expander.expansion + -webkit-user-select none + -moz-user-select none + -ms-user-select none + user-select none diff --git a/src/help/README.md b/src/help/README.md index d88d5b2e..1595343e 100644 --- a/src/help/README.md +++ b/src/help/README.md @@ -7,7 +7,3 @@ sidebar: false # Help Choose between [guides](guides/general/) and [frequently asked questions](faq/application/). - -::: tip -Help us expand this page by clicking [here](https://github.com/tachiyomiorg/website/edit/master/src/help/README.md) -::: diff --git a/src/help/contribution.md b/src/help/contribution.md index cef93727..afe5e4d1 100644 --- a/src/help/contribution.md +++ b/src/help/contribution.md @@ -4,10 +4,9 @@ lang: en-US --- # How can I help? -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/faq/how-can-i-help.md)! +:construction: :construction_worker_man: W.I.P. ## GitHub -:construction: :construction_worker_man: W.I.P. ## Translation diff --git a/src/help/faq/README.md b/src/help/faq/README.md deleted file mode 100644 index 51ec04ca..00000000 --- a/src/help/faq/README.md +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Frequently Asked Questions -lang: en-US ---- - -# Frequently Asked Questions -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/faq/README.md)! - -### Regular - -- [Application](application) - -:construction: :construction_worker_man: W.I.P. - -- [Extensions](extensions) - -:construction: :construction_worker_man: W.I.P. - -### Contribution - -- [How can I help?](how-can-i-help) - -:construction: :construction_worker_man: W.I.P. - -### Other pages - -- [Guides](../guides/) - -:construction: :construction_worker_man: W.I.P. - -- [Available extensions](../../extensions/) - -:construction: :construction_worker_man: W.I.P. diff --git a/src/help/faq/application.md b/src/help/faq/application.md index d9b60369..ce7d8a94 100644 --- a/src/help/faq/application.md +++ b/src/help/faq/application.md @@ -7,99 +7,103 @@ sidebarDepth: 2 ## Library ### How can I see how many chapters I've downloaded? +This can be done by enabling [Download badges](/help/guides/my-library/#download-badges). -If you want to see how many chapters you have downloaded for all manga on My Library, enable `Download Badges`. It's under the `Filter` options in `My Library` (the upside-down pyramid of lines beside the three-dot) at the very bottom. Red is downloaded chapter count and Blue is unread chapter count. +::: guide +Enable it by going to **[ My library](/help/guides/my-library)** → **[ Filter](/help/guides/my-library/#filter-options)** → **[Display](/help/guides/my-library/#display)** section then checking the **[Download badges](/help/guides/my-library/#download-badges)** option in the bottom. +::: aside +Read more [here](/help/guides/my-library/#download-badges) +::: ### Some covers are white after restoring from backup +The URL to the cover has probably changed. To fix this, refresh the metadata of your library. -The URL to the cover has changed. To fix this, refresh the metadata of your library in `Settings > Advanced`. +::: guide +Refresh your metadata by going to **[ Settings](/help/guides/settings)** → **[ Advanced](/help/guides/advanced)** then pressing **[Refresh library metadata](/help/guides/advanced/#refresh-library-metadata)**. +::: aside +Read more [here](/help/guides/advanced/#refresh-library-metadata) +::: ### How do I ignore chapters from certain scanlator groups? +Every now and then you find a manga that is translated by more than one group, because of this you get multiple releases for every chapter in the manga. To fix this the easiest way is to change sorting to [Total chapters](/help/guides/my-library/#total-chapters). You won't see any changes but, when you start reading you'll automatically skip the duplicate releases. -Every now and then you find a manga that is translated by more than one group, because of this you get multiple releases for every chapter in the manga. - -To automatically skip a translation group while reading, go to the manga's chapter list and click on the three dots in the upper right hand corner. From there, click on Sorting mode and select By chapter number. You won't see any changes but, when you start reading you'll automatically skip the duplicate releases. - -### Why do I see `attempt to invoke virtual method 'com.hippo.unifile...`, what can I do to fix it? +::: guide +Change library sorting by going to **[ My library](/help/guides/my-library)** → **[ Filter](/help/guides/my-library/#filter-options)** → **[Sort](/help/guides/my-library/#sort)** section then in this case selecting **[Total chapters](/help/guides/my-library/#total-chapters)**. +::: aside +Read more [here](/help/guides/my-library/#total-chapters) +::: +### Why do I see `attempt to invoke virtual method 'com.hippo.unifile...`? This error can be caused by a variety of reasons, all to do with storage. -1. Most commonly it is caused by full storage, check to see if your device or SD Card is full -1. Tachiyomi doesn't have access to SD card enabled in permissions for the app -1. If you're downloading and this error pops up, that means the app might not be able to access the folder you're trying to download to. -1. This may be because the folder is corrupted or does not exist. Use a file manager to check that the folder(s) actually exist and every folder in the sequence is available and accessible. -1. The drive you're writing to is corrupted. Check using a file manager to see if it is accessible. + +::: guide +- Most commonly it is caused by full storage, check to see if your device or SD Card is full +- **Tachiyomi** doesn't have access to SD card enabled in permissions for the app +- If you're downloading and this error pops up, that means the app might not be able to access the folder you're trying to download to. +- This may be because the folder is corrupted or does not exist. Use a file manager to check that the folder(s) actually exist and every folder in the sequence is available and accessible. +- The drive you're writing to is corrupted. Check using a file manager to see if it is accessible. +::: ## Reader - ### Why are some images not displayed? - -Aside from network issues, it could be because the images are too big or the decoder doesn't support that image. +Aside from network issues, it could be because the images are too big or that the decoder doesn't support that image type. ## Downloads - ### What happened to the simultaneous downloads feature? - -It was removed in version `0.7.0` to prevent IP bans caused by too many requests. We know that speed is being sacrificed but it's better than not being able to access a source at all. +It was removed to prevent IP bans caused by too many requests. We know that speed is being sacrificed but it's better than not being able to access a source at all. ### Downloads are unstable - Be aware that it could be a network issue on your device or on the catalog you are trying to download from. ### Can you make it possible to store manga on both internal storage and external SD-card? - -At the moment, no. You could try using symlinks (requires root). - -## Tracking - -### How do I log in with Kitsu? - -To log in with Kitsu you need to use your Email address as your username. - -### I can't find manga in MAL's search results - -You can search a manga from your MAL list like this: `my: `. -[#65](https://github.com/inorichi/tachiyomi/issues/65) - -## Local Manga - -### How do I import my Manga into Tachiyomi? - -We recommend you to read [this](https://github.com/inorichi/tachiyomi/wiki/Local-manga) guide on how to do so. - -### I can't find the Tachiyomi folder - -If you don't see a Tachiyomi folder on your device, try downloading a chapter of any Manga or creating a backup so that the folder can be created. - -## Application Updates - -### How do I enable automatic updates? - -The Tachiyomi app now has in-app updating for both stable and dev versions. -If you go to `Settings > About > Version` to check for updates, you can force an update there or wait for the app to notify you. - -## User Interface - -### How do I change the app language? - -Tachiyomi is (as of writing) available in 35 different languages. - -By default, the app language follows the language setting of your device. - -You can also set your own preferred language for Tachiyomi. Simply from side panel go to the `Settings > General > Language`. - -::: tip NOTE -Only the UI has been localized, content will still be using the language of the source selected (i.e. English for KissManga source, Some sources have multiple Language too). +At the moment, no. You could try using symlinks but that requires having your phone rooted. +::: aside +Read more about rooting your phone [here](https://www.xda-developers.com/root/) ::: -If you want to help translate Tachiyomi, read our [guide](../guides/translation.md) on it. +## Tracking +### How do I log in with Kitsu? +To log in with Kitsu you need to use your email address as your username. + +### Why can't I find manga in MAL's search results? +You can search a manga from your MAL profile's list by searching in the following format: `my:` +::: aside +Related GitHub issue: [#65](https://github.com/inorichi/tachiyomi/issues/65) +::: + +## Local Manga +### How do I import my manga into Tachiyomi? +We recommend you to read [this](/help/guides/reading-local-manga) guide on how to do so. + +### I can't find the Tachiyomi folder +If you don't see a **Tachiyomi** folder on your device, try downloading a chapter of any manga or creating a backup so that the folder can be created. + +## Application Updates +### How do I enable automatic updates? +The **Tachiyomi** app now has in-app updating for both stable and development versions. It happens automatically in the background if you got **[Check for updates](/help/guides/about/#check-for-updates)** enabled. +::: guide +If you go to **[ Settings](/help/guides/settings)** → **[ About](/help/guides/about)** you will find the **[Check for updates](/help/guides/about/#check-for-updates)** toggle, you can also press **[Version](/help/guides/about/#version)** to force check for updates. +::: + +## User Interface +### Can I change the app language? +**Tachiyomi** is as of writing available in 35 different languages. By default, the app follows the language used on your device. +Only the UI has been localized, language in manga will still be using the language of the source selected. + +::: guide +You can change language by going to **[ Settings](/help/guides/settings)** → **[ General](/help/guides/general)** then pressing **[Language](/help/guides/general/#language)**. +::: aside +Read more [here](/help/guides/general/#language) +::: ## Miscellaneous - ### iOS Version - -Is there an iOS version? No. Is there going to be? There are no plans for one since iOS and Android apps are nothing alike. +There is currently no iOS version and there are no plans for one and since iOS and Android apps don't share code it's hard to port. ### I lost everything, what now? +**Tachiyomi** is still in beta and some design changes or unexpected errors may lead to data loss. While we try for them not to happen, sometimes it is unavoidable. To avoid this in the future, you can use the automatic backup feature. -Tachiyomi is still in beta. Some design changes or unexpected errors may lead to data loss. While I try for them not to happen, sometimes it is unavoidable. To avoid this in the future, you can use the automatic backup feature in Settings. If your file manager supports it, you may even backup to Google Drive. +::: aside +Learn how to backup [here](/help/guides/backup/) +::: diff --git a/src/help/faq/extensions.md b/src/help/faq/extensions.md index 1f25545a..8b93f3aa 100644 --- a/src/help/faq/extensions.md +++ b/src/help/faq/extensions.md @@ -7,70 +7,75 @@ sidebarDepth: 2 ## General ### What are some good extensions? - -The most popular are MangaDex, MangaSee and Mangakakalot, these are large +The most popular are **MangaDex**, **MangaSee** and **Mangakakalot**, these are large sites which host content from scanlators, there's also extensions like -Genkan, Madara, FoolSlide and ComiCake which contain sources which +**Genkan**, **Madara**, **FoolSlide** and **ComiCake** which contain sources which host directly from the scanlators own websites. -[Here](https://docs.google.com/spreadsheets/d/1TyJEUg78WWH4zgnf3g6M2lkbWpBWbd40FYiPVQhW8IU/edit#gid=0) -is a good spreadsheet showing the different extensions and their sources. +::: guide +User [SnakeDoc83](https://github.com/snakedoc83) has made a handy spreadsheet showing the different extensions and their sources. +::: aside +Access the spreadsheet [here](https://docs.google.com/spreadsheets/d/1TyJEUg78WWH4zgnf3g6M2lkbWpBWbd40FYiPVQhW8IU/edit#gid=0) +::: ### Why won't the extensions install? +In some cases your phone might have some issues downloading the extensions, in those cases you can try installing them yourselves directly from the source. -In some cases your phone might have some issues downloading the -extensions, in those cases you can try installing them yourselves -directly from the source. [Here](https://github.com/inorichi/tachiyomi-extensions/tree/repo/apk) -is the repository for the files. +To install just download the file for the extension you want and then install it, like how you installed **Tachiyomi**. -To install just download the `.apk` file for the extension you want -and then install it, like how you installed Tachiyomi. +::: aside +You can find the list of extensions to download [here](/extensions/) +::: ### How do I allow third-party installations? +When installing your first extension and are prompted that your phone isn't allowed to install unknown apps from that source, simply follow the prompt to allow it. -When installing your first extension and are prompted that your phone -isn't allowed to install unknown apps from that source, simply press -the `Settings` button and then allow it. + + -Two example videos, left one is for newer Androids. - -
- - -
+::: aside +If you need more help regarding this, read [this](https://www.theandroidsoul.com/how-to-allow-apps-installation-from-unknown-sources-on-android-9-pie/) +::: ### How do I uninstall an extension? +Extensions for **Tachiyomi** are technically installed the same as normal apps. Either you uninstall them through the app section on your phones settings or you go can do it in the app. -Extensions for Tachiyomi are technically installed the same as normal apps. -Either you uninstall them through the place you normally uninstall apps or -you go to the `Extensions` tab, enter the extension you wish to uninstall -then press `Uninstall`. - -### Why don't I have extensions or any sources in the catalog? - -**A:** `Tachiyomi 0.8.4` and above no longer have pre-installed extensions, -so when upgrading or installing versions above this, installing the extensions -you use will be required to install extensions from the extensions menu -(the one with the puzzle piece). - -**B:** If you're getting a "Loader not implemented" error after clicking on a manga, you will need to reinstall the extensions you used to use. Which number in the menu corresponds to which is below. - -::: warning -Be aware that Batoto is deprecated so you will need to migrate from that source to others. +::: guide +To uninstall an extension from within **Tachiyomi**, go to **[ Extensions](/help/guides/extensions)** then tap **Uninstall** on the extension you want to remove. ::: +### Why don't I have extensions or any sources in the catalogue? +- **Tachiyomi** no longer have pre-installed extensions, this means that you will need to install extensions you want to use from the **[ Extensions](/help/guides/extensions)** menu. +- If you're getting the `Loader not implemented` error after clicking on a manga, you will need to reinstall the extensions you used to use. Which number in the menu corresponds to which is below. + ::: expander Click to expand! 1. Batoto 2. Mangahere @@ -84,203 +89,117 @@ Be aware that Batoto is deprecated so you will need to migrate from that source 10. WieManga ::: -### Why can't I restore my backup? - -To restore backups, Tachiyomi requires to have extensions installed for the respective manga. - -### Which sources are there in the multi-source extensions? - -Some extensions contain multiple sources, look at the list below to find out which extension to install for the specific source that you want. - -::: expander Click to expand! -1. Comicake - - Whim Scans - - Champion Scans - - LetItGo Scans -2. Foolslide - - Jamini’s Box - - Helvetica Scans - - Sense-Scans - - Kirei Cake - - Silent Sky - - Mangatellers - - Iskultrip Scans - - Anata no Motokare - - Death Toll Scans - - DKThias Scanlations - - World Three - - Doki Fansubs - - Yuri-ism - - Ajia no Scantrad - - One Time Scans - - Tsubasa Society - - MangaScouts - - Storm in Heaven - - Lilyreader - - Midnight Haven - - Russification/Русификация - - Evil Flowers - - AkaiYuhiMun team - - LupiTeam - - HentaiCafe - - ShoujoSense - - The Cat Scans - - ShojouHearts -3. Genkan - - Leviatan Scans - - Psycho Play - - One Shot Scans - - KaguyaDex - - Komi Scans - - Hunlight Scans -4. Madara - - Mangasushi - - NinjaScans - - ReadManhua - - ZeroScans - - IsekaiScans - - Happy Tea Scans - - Just For Fun - - Agent of Change Translations - - Kanjiku - - KomikGo - - Luxy Scans - - Tritinia Scans - - Tsubaki No Scan - - Yokai Jump - - ZManga - - Mangazuki.me - - Mangazuki.online - - Mangazuki.club - - 1st Kiss - - Mangalike - - Manga SY - - Manhwa Club - - WuxiaWorld - - Yo Manga - - ManyToon - - Chibi Manga -5. My Manga Reader CMS - - مانجا اون لاين - - Read Comics Online - - Biamam Scans - - Fallen Angels - - Hatigarm Scans - - Mangawww Reader - - ZXComic - - White Cloud Pavilion - - MangaTreat Scans - - SOS Scanltaion - - Scan FR - - Scan VF - - Komikid - - ToraScans - - Comic Space - - Mangas Yuri - - Dracaena - - Nikushima - - Anigai Clan - - MangaHanta - - Fallen Angel Scans - - LeoManga - - Mangadoor - - Mangas.pw - - HentaiShark -6. MangaCards - - Valhalla Scans - - NANI? Scans +::: warning +Be aware that **Batoto** is deprecated so you will need to migrate from that source to others. +::: aside +Read more about Batoto shutting down [here](https://goboiano.com/manga-scanlation-site-batoto-to-close-down/) ::: -### Why can't I find manga in `Catalogues` search? +### Why can't I restore my backup? +To restore backups, **Tachiyomi** requires to have extensions installed for the respective manga you want to restore. -It might be because the title is worded differently. Follow the steps below: +### Which sources are there in the multi-source extensions? +Some extensions contain multiple sources, look at the list below to find out which extension to install for the specific source that you want. -- Look up the title on Google or a manga tracking service -- See which site has the series -- Download the extension for that source if it exists (see other FAQs if it is part of a multisource extension) -- Go to Browse for source and search up manga name again +::: guide +User [SnakeDoc83](https://github.com/snakedoc83) has made a handy spreadsheet showing the different extensions and their sources. +::: aside +Access the spreadsheet [here](https://docs.google.com/spreadsheets/d/1TyJEUg78WWH4zgnf3g6M2lkbWpBWbd40FYiPVQhW8IU/edit#gid=0) +::: -### Error: java.lang Exception: Challenge not found +### Why can't I find manga when searching catalogues? +It might be because the title is worded differently. Follow any of the steps below: +- Look up the title on a search engine like **Google** or a manga tracking service such as [AniList](https://anilist.co/home). +- See which site has the series, often a single site will not satisfy all your needs. +- Download the extension for that source from **[ Extensions](/help/guides/extensions)** if it exists, read [this](/help/faq/extensions/#which-sources-are-there-in-the-multi-source-extensions) for a list of which extensions contains what sources. +- Go to **[ Catalogues](/help/guides/catalogues)** → **[Browse](/help/guides/catalogues/#browse)** on a source then search for the manga again. -Try closing (force-quit) and reopening Tachiyomi. -### Error: Loader not implemented +### Some common errors you might encounter +#### Java.lang Exception: Challenge not found +Often this will be resolved by force-quitting and reopening Tachiyomi. + +#### Loader not implemented It means that the respective extension for the manga is not installed. To fix, install the extension for the manga. If it still doesn't work, uninstall then reinstall the extension again. -### Error: Value Manga is licensed at data of type java.lang.String cannot be converted to JSONObject - -This means that the manga has been licensed and can no longer be read on that source. Try a different source to read the manga. +#### Value Manga is licensed at data of type java.lang.String cannot be converted to JSONObject +This means that the manga has been licensed and can no longer be read on that source. Try a different source to read the manga. ## MangaDex ### No results when searching +If you're not getting any results when searching MangaDex then you need to log in. To do so enter the **WebView** for **MangaDex** then press the **Manga** drop-down and choose either **Sign up** or **Log in** to proceed with the log in. -::: tip -Make sure you're on app version `0.8.4` or higher. +::: guide +To enter the **WebView** go to **[ Catalogues](/help/guides/catalogues)** → **[Browse](/help/guides/catalogues/#browse)**/**[Latest](/help/guides/catalogues/#latest)** next to **MangaDex**, open any manga from the list and then press the ** Overflow menu** in the top-right corner and then press **Open in web view**. ::: -If you're not getting any results when searching MangaDex then you need to log in. - -To do so, go to `Browse`/`Latest` for MangaDex under `Catalogues`, open any manga from the list and then press the overflow menu (3 dot menu) in the top-right corner and then the `Open in web view` button. - -Now go to the hamburger menu, press the `Manga` drop-down and then choose either `Sign up` or `Log in` to proceed with the log in. ::: expander Click to reveal video guide!
::: +::: tip +Make sure you're on app version **0.8.4** or higher. +::: aside +Make sure you stay up to date by reading [this](/help/faq/application/#how-do-i-enable-automatic-updates) +::: + ### Alternate searching method +**MangaDex** allows you to search using the ID number to find manga. The easiest way to get the ID is opening the manga in your browser and looking at the URL. -In `Mangadex 1.2.52` and newer the extension allows you to search using the id number to find manga. To get the id number look at the URL of the manga you want to add. - -An example search: `id:31477`. +::: guide +An example search would be **`id:23427`** which would return results for [Candy & Cigarettes](https://mangadex.org/title/23427/candy-cigarettes) +::: ### Chapters from Mangaplus are broken +Install the **Mangaplus** extension instead and then migrate the manga that uses **Mangaplus** on **MangaDex** onto the **Mangaplus** source. -Install the Mangaplus extension and then migrate the manga that uses Mangaplus on Mangadex onto the Mangaplus source. +::: aside +Read about source migration [here](/help/guides/source-migration/) +::: ## MangaRock #### Regarding MangaRock going away: - - You won't lose existing bookmarks or downloads. -- Chapters will no longer be updated once MangaRock is dead. -- There is no native way to automatically import your favorites from MangaRock (although you can try [waicool20/mr2tachiyomi](https://github.com/waicool20/mr2tachiyomi)). -- Popular alternatives: Mangasee, Kissmanga, MangaDex, Mangakakalot, Toonily. +- Chapters will no longer be updated once **MangaRock** is dead. +- There is no native way to automatically import your favorites from MangaRock, but you can try [waicool20/mr2tachiyomi](https://github.com/waicool20/mr2tachiyomi). +- Popular alternatives are **MangaDex**, **MangaSee** and **Mangakakalot**. -::: tip +::: tip Out of the loop? Read more about the situation [here](https://mrcomics.com/). ::: #### Migrate to Tachiyomi +There is a tool to migrate from **MangaRock** to **Tachiyomi** courtesy of a member of our [Discord server](https://discord.gg/tachiyomi) by the same name as the creator, but a computer is required to finish the migration successfully. -There is a tool to migrate from MangaRock to Tachiyomi courtesy of a member of our Discord server by the same name as the creator, but a computer is required to finish the migration successfully. +View the program at [waicool20/mr2tachiyomi](https://github.com/waicool20/mr2tachiyomi). -Note that you must download the 64-bit version of Java or it will run out of memory. Access the program at [waicool20/mr2tachiyomi](https://github.com/waicool20/mr2tachiyomi). +### Why do I get `Value at 0 of type java.lang.String cannot be converted to JSONObject`? +If you get this error when opening **MangaRock** chapters, try clearing your chapter cache. -### Error: Value `` at 0 of type java.lang.String cannot be converted to JSONObject - -If you get this error when opening Manga Rock chapters, try clearing your chapter cache (`Settings` > `Advanced`) and refreshing the chapters list. +::: guide +Chapter cache can be cleared by going to **[ Settings](/help/guides/settings)** → **[ Advanced](/help/guides/advanced)** then pressing [Clear chapter cache](/help/guides/advanced/#clear-chapter-cache). +::: aside +Read more about clearing chapter cache [here](/help/guides/advanced/#clear-chapter-cache) +::: ## Madara ### Leviatan Scans is missing - -Leviatan Scans has shifted from Madara to Genkan extension. - -Install Genkan. Migrate all Leviatan scans. Update Madara. +**Leviatan Scans** has shifted from **Madara** to **Genkan** extension. Install **Genkan**, migrate all **Leviatan scans** then update **Madara**. ## KissManga -### Error: Page list is empty - -If you get this error then you need to solve the captcha on their website using your browser (*Google Chrome*, *Samsung Browser*, *Firefox*, *Opera*, etc.). +### Why do I get `Page list is empty`? +If you get this error then you need to solve the **CAPTCHA** on their website using your browser (*Google Chrome*, *Samsung Browser*, *Firefox*, *Opera*, etc.). diff --git a/src/help/faq/how-can-i-help.md b/src/help/faq/how-can-i-help.md deleted file mode 100644 index cef93727..00000000 --- a/src/help/faq/how-can-i-help.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -title: How can I help? -lang: en-US ---- - -# How can I help? -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/faq/how-can-i-help.md)! - -## GitHub -:construction: :construction_worker_man: W.I.P. - -## Translation - -**The project is available at [https://hosted.weblate.org/engage/tachiyomi/](https://hosted.weblate.org/engage/tachiyomi/)** -(direct [https://hosted.weblate.org/projects/tachiyomi/strings/](https://hosted.weblate.org/projects/tachiyomi/strings/)) - -The translators guide can be found at [https://docs.weblate.org/en/latest/user/index.html](https://docs.weblate.org/en/latest/user/index.html). Notice also: -* [https://docs.weblate.org/en/latest/user/profile.html#secondary-languages](https://docs.weblate.org/en/latest/user/profile.html#secondary-languages) -* [https://docs.weblate.org/en/latest/user/profile.html#subscriptions](https://docs.weblate.org/en/latest/user/profile.html#subscriptions) -* [https://docs.weblate.org/en/latest/user/translating.html#glossary](https://docs.weblate.org/en/latest/user/translating.html#glossary) - -*** - -[![Translation status](https://hosted.weblate.org/widgets/tachiyomi/-/multi-auto.svg)](https://hosted.weblate.org/engage/tachiyomi/?utm_source=widget) diff --git a/src/help/guides/README.md b/src/help/guides/README.md deleted file mode 100644 index d804b533..00000000 --- a/src/help/guides/README.md +++ /dev/null @@ -1,69 +0,0 @@ ---- -title: Guides -lang: en-US ---- - -# Guides -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/README.md)! - -### Regular - -- [Getting started](getting-started) - -Starter guide that guides you into installing and configuring the application for first use. - -- [Reading local manga](reading-local-manga) - -If you want to read your own stored manga this is the guide for you! - -- [Source problems](source-problems) - -:construction: :construction_worker_man: W.I.P. - -- [Categories](categories) - -:construction: :construction_worker_man: W.I.P. - -- [Library filters](library-filters) - -:construction: :construction_worker_man: W.I.P. - -- [Source migration](source-migration) - -:construction: :construction_worker_man: W.I.P. - -### Settings - -- [General](general) - -:construction: :construction_worker_man: W.I.P. - -- [Reader](reader) - -:construction: :construction_worker_man: W.I.P. - -- [Downloads](downloads) - -:construction: :construction_worker_man: W.I.P. - -- [Tracking](tracking) - -:construction: :construction_worker_man: W.I.P. - -- [Backup](backup) - -:construction: :construction_worker_man: W.I.P. - -- [Advanced](advanced) - -:construction: :construction_worker_man: W.I.P. - -## Other pages - -- [Frequently Asked Questions](../faq/) - -:construction: :construction_worker_man: W.I.P. - -- [Available extensions](../../extensions/) - -:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/about.md b/src/help/guides/about.md new file mode 100644 index 00000000..834d5a4c --- /dev/null +++ b/src/help/guides/about.md @@ -0,0 +1,19 @@ +--- +title: About +lang: en-US +--- + +# About +:construction: :construction_worker_man: W.I.P. + +## Send crash reports + +## Check for updates + +## Discord + +## GitHub + +## Version + +## Build time diff --git a/src/help/guides/catalogues.md b/src/help/guides/catalogues.md index 683c0177..47f7fa39 100644 --- a/src/help/guides/catalogues.md +++ b/src/help/guides/catalogues.md @@ -4,4 +4,8 @@ lang: en-US --- # Catalogues -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/catalogues.md)! +:construction: :construction_worker_man: W.I.P. + +### Browse + +### Latest diff --git a/src/help/guides/download-queue.md b/src/help/guides/download-queue.md index add9594b..54a81e32 100644 --- a/src/help/guides/download-queue.md +++ b/src/help/guides/download-queue.md @@ -4,4 +4,4 @@ lang: en-US --- # Download queue -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/download-queue.md)! +:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/extensions.md b/src/help/guides/extensions.md index f2ddf7d1..a3f7ecfc 100644 --- a/src/help/guides/extensions.md +++ b/src/help/guides/extensions.md @@ -4,4 +4,4 @@ lang: en-US --- # Extensions -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/extensions.md)! +:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/library-filters.md b/src/help/guides/library-filters.md index 38738d64..900b3195 100644 --- a/src/help/guides/library-filters.md +++ b/src/help/guides/library-filters.md @@ -4,7 +4,6 @@ lang: en-US --- # Library filters -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/library-filters.md)! +:construction: :construction_worker_man: W.I.P. ## Guide? -:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/library-updates.md b/src/help/guides/library-updates.md index 4bbbf971..82a18d34 100644 --- a/src/help/guides/library-updates.md +++ b/src/help/guides/library-updates.md @@ -4,4 +4,4 @@ lang: en-US --- # Library updates -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/library-updates.md)! +:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/menus.md b/src/help/guides/menus.md new file mode 100644 index 00000000..f9dd38e8 --- /dev/null +++ b/src/help/guides/menus.md @@ -0,0 +1,24 @@ +--- +title: Menus +lang: en-US +--- + +# Menus +:construction: :construction_worker_man: W.I.P. + +### [ My library](/help/guides/my-library) + +### [ Library updates](/help/guides/library-updates) + +### [ Recently read](/help/guides/recently-read) + +### [ Catalogues](/help/guides/catalogues) + +### [ Extensions](/help/guides/extensions) + +### [ Download queue](/help/guides/download-queue) + +### [ Settings](/help/guides/settings) + +### [ Help](/help/) +This feature redirects you to this website. diff --git a/src/help/guides/my-library.md b/src/help/guides/my-library.md index 2e409e0a..59fd629c 100644 --- a/src/help/guides/my-library.md +++ b/src/help/guides/my-library.md @@ -4,4 +4,28 @@ lang: en-US --- # My library -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/my-library.md)! +:construction: :construction_worker_man: W.I.P. + +## Filter options +### Filter + +#### Downloaded + +#### Unread + +#### Completed + +### Sort +#### Alphabetically +#### Last read +#### Last updated +#### Unread +#### Total chapters +#### Source +### Display +#### Grid + +#### List + +#### Download badges +If you want to see how many chapters you have downloaded for all manga in [My library](/help/guides/my-library), then enable this option. It will appear as a red badge similiar to the unread chapters badge. diff --git a/src/help/guides/recently-read.md b/src/help/guides/recently-read.md index 8e454c26..64504717 100644 --- a/src/help/guides/recently-read.md +++ b/src/help/guides/recently-read.md @@ -4,4 +4,4 @@ lang: en-US --- # Recently read -:construction: :construction_worker_man: W.I.P. Description, help us improve through [here](https://github.com/tachiyomiorg/website/edit/master/src/help/guides/recently-read.md)! +:construction: :construction_worker_man: W.I.P. diff --git a/src/help/guides/settings.md b/src/help/guides/settings.md new file mode 100644 index 00000000..1ae93f8a --- /dev/null +++ b/src/help/guides/settings.md @@ -0,0 +1,28 @@ +--- +title: Settings +lang: en-US +--- + +# Settings +:construction: :construction_worker_man: W.I.P. + +### [ General](/help/guides/general) +This category of settings allows you to change the look of the app, and the update schedule and how the app updates. + +### [ Reader](/help/guides/reader) +This section relates to the reading experience in the app and navigating the reader. + +### [ Downloads](/help/guides/downloads) +This category of settings allows you to change the limitations and behaviour of downloads as well as enabling automatic downloads. + +### [ Tracking](/help/guides/tracking) +This category of settings allows you to record the progress of chapters read in the app once you've linked an account to a service. + +### [ Backup](/help/guides/backup) +This section lets you backup your library, tracking settings, and reading history as well as restoring it. + +### [ Advanced](/help/guides/advanced) +The features in this section mostly relate to keeping entries up to date or clearing unnecessary things from the app. + +### [ About](/help/guides/about) +The features here are mainly aimed to listing useful information such as version, build time and links to relevant websites.