mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-10-31 23:15:05 +01:00
Remove some no longer relevant pages
This commit is contained in:
parent
ea69277fbf
commit
a89f1f1396
@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
|
||||
## Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported by contacting the project team at the Tachiyomi [Discord server](https://discord.gg/tachiyomi). All
|
||||
reported by contacting the project team in the issues. All
|
||||
complaints will be reviewed and investigated and will result in a response that
|
||||
is deemed necessary and appropriate to the circumstances. The project team is
|
||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||
|
@ -10,9 +10,6 @@
|
||||
<p align="center">Discover and read manga, webtoons, comics, and more – easier than ever on your Android device.</p>
|
||||
|
||||
<p align="center">
|
||||
<a title="Discord server" href="https://discord.gg/tachiyomi">
|
||||
<img src="https://img.shields.io/discord/349436576037732353.svg?label=&labelColor=6A7EC2&color=7389D8&logo=discord&logoColor=FFFFFF">
|
||||
</a>
|
||||
<a title="GitHub downloads" href="https://github.com/tachiyomiorg/tachiyomi/releases">
|
||||
<img src="https://img.shields.io/github/downloads/tachiyomiorg/tachiyomi/total?label=downloads&labelColor=27303D&color=0D1117&logo=github&logoColor=FFFFFF&style=flat">
|
||||
</a>
|
||||
@ -35,7 +32,6 @@
|
||||
</p>
|
||||
|
||||
<p align="center">Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.</p>
|
||||
<p align="center">If you got any questions, join our <a target="_blank" href="https://discord.gg/tachiyomi">Discord server</a>.</p>
|
||||
|
||||
<h3 align="center">Repositories</h3>
|
||||
|
||||
|
@ -4,7 +4,6 @@ const sidebar: DefaultTheme.SidebarMulti = {
|
||||
'/download/': defaultSidebar(),
|
||||
'/extensions/': defaultSidebar(),
|
||||
'/docs/': defaultSidebar(),
|
||||
'/forks/': defaultSidebar(),
|
||||
'/changelogs/': defaultSidebar(),
|
||||
'/news/': defaultSidebar(),
|
||||
'/sandbox/': defaultSidebar(),
|
||||
@ -26,14 +25,6 @@ function defaultSidebar(): DefaultTheme.SidebarItem[] {
|
||||
text: 'Changelogs',
|
||||
link: '/changelogs/',
|
||||
},
|
||||
{
|
||||
text: 'Forks',
|
||||
link: '/forks/',
|
||||
},
|
||||
{
|
||||
text: 'Contribute',
|
||||
link: '/docs/contribute',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
|
@ -21,11 +21,6 @@ const themeConfig: DefaultTheme.Config = {
|
||||
link: 'https://github.com/tachiyomiorg/tachiyomi',
|
||||
ariaLabel: 'Project GitHub',
|
||||
},
|
||||
{
|
||||
icon: 'discord',
|
||||
link: 'https://discord.gg/tachiyomi',
|
||||
ariaLabel: 'Discord Server',
|
||||
},
|
||||
{
|
||||
icon: 'x',
|
||||
link: 'https://twitter.com/tachiyomiorg',
|
||||
|
@ -24,6 +24,6 @@ export default createContentLoader('news/*.md', {
|
||||
url,
|
||||
},
|
||||
)
|
||||
.sort((a, b) => b.date.toString().localeCompare(a.date.toString()))
|
||||
.sort((a, b) => a.date.toString().localeCompare(b.date.toString()))
|
||||
},
|
||||
})
|
||||
|
@ -1,203 +0,0 @@
|
||||
// Assign theme color
|
||||
$themeColor = #ffcc4d
|
||||
|
||||
.page-tachiyomi-az {
|
||||
.VPHero {
|
||||
h1 {
|
||||
.clip {
|
||||
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--vp-c-brand) 30%, var(--vp-c-brand-dark))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.VPButton {
|
||||
&.brand {
|
||||
border-color: var(--vp-button-brand-border)
|
||||
color: var(--vp-button-brand-text)
|
||||
background-color: var(--vp-button-brand-bg)
|
||||
}
|
||||
}
|
||||
|
||||
.image-bg {
|
||||
display: none
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: alpha($themeColor, 0.2)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Colors
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-az {
|
||||
--vp-c-brand: $themeColor
|
||||
--vp-c-brand-light: tint($themeColor, 20%)
|
||||
--vp-c-brand-lighter: tint($themeColor, 40%)
|
||||
--vp-c-brand-lightest: tint($themeColor, 60%)
|
||||
--vp-c-brand-dark: shade($themeColor, 25%)
|
||||
--vp-c-brand-darker: shade($themeColor, 50%)
|
||||
--vp-c-brand-darkest: shade($themeColor, 75%)
|
||||
--vp-c-brand-dimm: alpha($themeColor, 0.08)
|
||||
}
|
||||
|
||||
/**
|
||||
* Component: Button
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-az {
|
||||
--vp-button-brand-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-text: var(--vp-c-black)
|
||||
--vp-button-brand-bg: var(--vp-c-brand)
|
||||
--vp-button-brand-hover-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-hover-text: var(--vp-c-black)
|
||||
--vp-button-brand-hover-bg: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-text: var(--vp-c-black)
|
||||
--vp-button-brand-active-bg: var(--vp-button-brand-bg)
|
||||
}
|
||||
|
||||
/**
|
||||
* Component: Dumb
|
||||
* -------------------------------------------------------------------------- */
|
||||
@font-face {
|
||||
font-family: 'Comic Sans MS'
|
||||
src: url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.eot')
|
||||
src: url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.eot?#iefix') format('embedded-opentype'), url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.woff2') format('woff2'), url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.woff') format('woff'), url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.ttf') format('truetype'), url('//db.onlinewebfonts.com/t/7cc6719bd5f0310be3150ba33418e72e.svg#Comic Sans MS') format('svg')
|
||||
}
|
||||
|
||||
.azContainer {
|
||||
width: 100%
|
||||
overflow: hidden
|
||||
|
||||
.azMarquee {
|
||||
display: inline-block
|
||||
overflow: hidden
|
||||
white-space: nowrap
|
||||
animation: marquee 10s linear infinite
|
||||
padding-left: 100%
|
||||
|
||||
.azWiggleText {
|
||||
padding: 2em
|
||||
width: fit-content
|
||||
animation: wiggleAnimation 1s ease-out infinite
|
||||
|
||||
&:hover {
|
||||
animation: barrelRollAnimation 0.6s
|
||||
}
|
||||
|
||||
.azText {
|
||||
font-family: 'Comic Sans MS', 'Comic Sans', cursive
|
||||
font-size: 2em
|
||||
display: inline-block
|
||||
-webkit-text-stroke: 1px black
|
||||
text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000
|
||||
animation: rainbowTextColorAnimation 0.5s linear infinite, scaleXTextAnimation 2s infinite
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes marquee {
|
||||
0% {
|
||||
transform: translate(0, 0)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: translate(-100%, 0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes barrelRollAnimation {
|
||||
from {
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
to {
|
||||
transform: rotate(360deg)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes wiggleAnimation {
|
||||
0% {
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
25% {
|
||||
transform: rotate(-15deg)
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: rotate(0)
|
||||
}
|
||||
|
||||
75% {
|
||||
transform: rotate(15deg)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: rotate(0)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes scaleXTextAnimation {
|
||||
0% {
|
||||
transform: scaleX(0.5) scaleY(0.5)
|
||||
}
|
||||
|
||||
50% {
|
||||
transform: scaleX(1) scaleY(1)
|
||||
}
|
||||
|
||||
100% {
|
||||
transform: scaleX(0.5) scaleY(0.5)
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes rainbowTextColorAnimation {
|
||||
0% {
|
||||
color: hsl(0, 100%, 50%)
|
||||
}
|
||||
|
||||
10% {
|
||||
color: hsl(36, 100%, 50%)
|
||||
}
|
||||
|
||||
20% {
|
||||
color: hsl(72, 100%, 50%)
|
||||
}
|
||||
|
||||
30% {
|
||||
color: hsl(108, 100%, 50%)
|
||||
}
|
||||
|
||||
40% {
|
||||
color: hsl(144, 100%, 50%)
|
||||
}
|
||||
|
||||
50% {
|
||||
color: hsl(180, 100%, 50%)
|
||||
}
|
||||
|
||||
60% {
|
||||
color: hsl(216, 100%, 50%)
|
||||
}
|
||||
|
||||
70% {
|
||||
color: hsl(252, 100%, 50%)
|
||||
}
|
||||
|
||||
80% {
|
||||
color: hsl(288, 100%, 50%)
|
||||
}
|
||||
|
||||
90% {
|
||||
color: hsl(324, 100%, 50%)
|
||||
}
|
||||
|
||||
100% {
|
||||
color: hsl(360, 100%, 50%)
|
||||
}
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
// Assign theme color
|
||||
$themeColor = #0952af
|
||||
|
||||
.page-tachiyomi-j2k {
|
||||
.VPHero {
|
||||
h1 {
|
||||
.clip {
|
||||
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--vp-c-brand) 30%, var(--vp-c-brand-dark))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.VPButton {
|
||||
&.brand {
|
||||
border-color: var(--vp-button-brand-border)
|
||||
color: var(--vp-button-brand-text)
|
||||
background-color: var(--vp-button-brand-bg)
|
||||
}
|
||||
}
|
||||
|
||||
.image-bg {
|
||||
display: none
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: alpha($themeColor, 0.2)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Colors
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-j2k {
|
||||
--vp-c-brand: $themeColor
|
||||
--vp-c-brand-light: tint($themeColor, 20%)
|
||||
--vp-c-brand-lighter: tint($themeColor, 40%)
|
||||
--vp-c-brand-lightest: tint($themeColor, 60%)
|
||||
--vp-c-brand-dark: shade($themeColor, 25%)
|
||||
--vp-c-brand-darker: shade($themeColor, 50%)
|
||||
--vp-c-brand-darkest: shade($themeColor, 75%)
|
||||
--vp-c-brand-dimm: alpha($themeColor, 0.08)
|
||||
}
|
||||
|
||||
/**
|
||||
* Component: Button
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-j2k {
|
||||
--vp-button-brand-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-text: var(--vp-c-white)
|
||||
--vp-button-brand-bg: var(--vp-c-brand)
|
||||
--vp-button-brand-hover-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-hover-text: var(--vp-c-white)
|
||||
--vp-button-brand-hover-bg: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-text: var(--vp-c-white)
|
||||
--vp-button-brand-active-bg: var(--vp-button-brand-bg)
|
||||
}
|
@ -1,60 +0,0 @@
|
||||
// Assign theme color
|
||||
$themeColor = #ce2828
|
||||
|
||||
.page-tachiyomi-sy {
|
||||
.VPHero {
|
||||
h1 {
|
||||
.clip {
|
||||
--vp-home-hero-name-background: -webkit-linear-gradient(120deg, var(--vp-c-brand) 30%, var(--vp-c-brand-dark))
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.VPButton {
|
||||
&.brand {
|
||||
border-color: var(--vp-button-brand-border)
|
||||
color: var(--vp-button-brand-text)
|
||||
background-color: var(--vp-button-brand-bg)
|
||||
}
|
||||
}
|
||||
|
||||
.image-bg {
|
||||
display: none
|
||||
}
|
||||
|
||||
::selection {
|
||||
background: alpha($themeColor, 0.2)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Colors
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-sy {
|
||||
--vp-c-brand: $themeColor
|
||||
--vp-c-brand-light: tint($themeColor, 20%)
|
||||
--vp-c-brand-lighter: tint($themeColor, 40%)
|
||||
--vp-c-brand-lightest: tint($themeColor, 60%)
|
||||
--vp-c-brand-dark: shade($themeColor, 25%)
|
||||
--vp-c-brand-darker: shade($themeColor, 50%)
|
||||
--vp-c-brand-darkest: shade($themeColor, 75%)
|
||||
--vp-c-brand-dimm: alpha($themeColor, 0.08)
|
||||
}
|
||||
|
||||
/**
|
||||
* Component: Button
|
||||
* -------------------------------------------------------------------------- */
|
||||
|
||||
:root .page-tachiyomi-sy {
|
||||
--vp-button-brand-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-text: var(--vp-c-white)
|
||||
--vp-button-brand-bg: var(--vp-c-brand)
|
||||
--vp-button-brand-hover-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-hover-text: var(--vp-c-white)
|
||||
--vp-button-brand-hover-bg: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-border: var(--vp-c-brand-light)
|
||||
--vp-button-brand-active-text: var(--vp-c-white)
|
||||
--vp-button-brand-active-bg: var(--vp-button-brand-bg)
|
||||
}
|
@ -1,32 +0,0 @@
|
||||
---
|
||||
title: Contribute
|
||||
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
|
||||
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)
|
||||
|
||||
[![tachiyomiorg/extensions - GitHub](https://gh-card.dev/repos/tachiyomiorg/extensions.svg)](https://github.com/tachiyomiorg/extensions)
|
||||
|
||||
[![tachiyomiorg/website - GitHub](https://gh-card.dev/repos/tachiyomiorg/website.svg)](https://github.com/tachiyomiorg/website)
|
||||
|
||||
## Translation
|
||||
![Translation stats](https://hosted.weblate.org/widget/tachiyomi/strings/287x66-grey.png)
|
||||
|
||||
![Translation progress](https://hosted.weblate.org/widget/tachiyomi/strings/horizontal-auto.svg)
|
||||
|
||||
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)
|
||||
* [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'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).
|
@ -72,4 +72,4 @@ Refer to [this GitHub comment](https://github.com/tachiyomiorg/tachiyomi/issues/
|
||||
Projects using the **Tachiyomi** name for anime streaming aren't affiliated with the main project.
|
||||
|
||||
## What's a fork?
|
||||
Forks are alternate **Tachiyomi** versions with distinct features. Get more details [here](/forks/).
|
||||
Forks are alternate **Tachiyomi** versions with distinct features managed by other developers.
|
||||
|
@ -77,21 +77,4 @@ Users who are familiar with [FolderSync](https://play.google.com/store/apps/deta
|
||||
or [Tasker](https://play.google.com/store/apps/details?id=net.dinglisch.android.taskerm) can setup auto sync of their backups similarly.
|
||||
|
||||
## Additional information for forks
|
||||
|
||||
::: warning
|
||||
This section explores some extra details regarding [forks](/forks/).
|
||||
:::
|
||||
|
||||
All [endorsed Tachiyomi forks](/forks/) support the `.tachibk`/`.proto.gz` format to backup/restore your library.
|
||||
|
||||
In addition, some forks have specific limitations regarding backup restoration:
|
||||
|
||||
- All forks have fork-specific settings and changes that might be saved in Backups.
|
||||
Such settings are not restored in original Tachiyomi and will get lost when creating a new backup.
|
||||
> For Example: [TachiyomiSY](/forks/TachiyomiSY/) has the option to backup/restore saved searches.
|
||||
|
||||
These will **NOT** be restored to original Tachiyomi or its forks.
|
||||
- Only [TachiyomiAZ](/forks/TachiyomiAZ/) supports creating/restoring both legacy `.json` backups and `.proto.gz` backups.
|
||||
> Users are recommended to update their `.json` backups to use the improved and efficient `.tachibk`/`.proto.gz` backups.
|
||||
|
||||
Be aware of these limitations when dealing with backups in different **Tachiyomi** forks.
|
||||
Most Tachiyomi forks support the `.tachibk`/`.proto.gz` format to backup/restore your library, but have specific limitations. Refer to their documentation for more information.
|
||||
|
@ -20,8 +20,6 @@ You will need to remove these manually with a file manager.
|
||||
|
||||
## Migration guide
|
||||
|
||||
::::tabs
|
||||
==Tachiyomi
|
||||
### Migrating from Series
|
||||
|
||||
1. Tap into the **Series** you would like to migrate.
|
||||
@ -41,60 +39,3 @@ You will need to remove these manually with a file manager.
|
||||
> **Tachiyomi** will do a global search of all the sources you have installed and enabled.
|
||||
1. Select the **Source** you'd like to migrate _to_ by tapping the **Series** thumbnail.
|
||||
1. Choose which data you want to transfer over, and you're done.
|
||||
|
||||
==TachiyomiJ2K
|
||||
### Migrating multiple Series
|
||||
|
||||
1. Tap **Settings** -> **Sources** -> **Source migration**.
|
||||
1. Select the **Source** you'd like to migrate _from_ and select **All**.
|
||||
1. Select the **Sources** that you'd like to migrate _to_ and search by and tap the arrow at the bottom right.
|
||||
1. Choose which data you want to transfer over.
|
||||
1. Wait until all your **Series** is found and hit the done at the top and you're done.
|
||||
|
||||
> If a series is not found, or is wrong you can manually search it by pressing Overflow -> **Search manually**.
|
||||
|
||||
### Migrating a single Series
|
||||
|
||||
1. Tap into a **Series** in your Library.
|
||||
1. Tap **Overflow** -> **Migrate**.
|
||||
1. Select the **Sources** you'd like to search and migrate _to_ and hit the arrow at the bottom right.
|
||||
1. Wait until it is found and select _done_ in the top right and you're done.
|
||||
|
||||
> If a series is not found, or is wrong you can manually search it by pressing Overflow -> **Search manually**
|
||||
|
||||
==TachiyomiSY
|
||||
### Migrating from Library
|
||||
|
||||
1. Tap into **Library**.
|
||||
1. Tap **Overflow** -> **Source migration**.
|
||||
1. Select the **Source** you'd like to migrate _from_ and select **All**.
|
||||
1. Select the **Sources** that you'd like to migrate _to_ and search by and tap the arrow labeled Migrate at the bottom right.
|
||||
1. Choose which data you want to transfer over.
|
||||
1. Wait until all your **Series** is found and hit the done at the top and you're done.
|
||||
|
||||
> If a series is not found, or is wrong you can manually search it by pressing **Overflow** -> **Search manually**.
|
||||
|
||||
### Migrating from Source {#migrating-from-source-sy}
|
||||
|
||||
1. Tap into Browse on the bottom navbar.
|
||||
1. Press the Migrate tab at the top next to Extensions.
|
||||
1. Select the **Source** that you'd like to migrate _from_.
|
||||
1. Select the **Source** you'd like to migrate _from_ and select **All**.
|
||||
1. Select the **Sources** that you'd like to migrate _to_ and search by and tap the arrow labeled Migrate at the bottom right.
|
||||
1. Choose which data you want to transfer over.
|
||||
1. Wait until all your **Series** is found and hit the done at the top and you're done.
|
||||
|
||||
> If a series is not found, or is wrong you can manually search it by pressing **Overflow** -> **Search manually**.
|
||||
|
||||
==TachiyomiAZ
|
||||
### Instructions
|
||||
|
||||
1. Tap into **Library**.
|
||||
1. Tap **Overflow** -> **Source migration**.
|
||||
1. Select the **Source** you'd like to migrate _from_ and select **All**.
|
||||
1. Select the **Sources** that you'd like to migrate _to_ and search by and tap the arrow at the bottom right.
|
||||
1. Choose which data you want to transfer over.
|
||||
1. Wait until all your **Series** is found and hit the done at the top and you're done.
|
||||
|
||||
> If a series is not found, or is wrong you can manually search it by pressing **Overflow** -> **Search manually**.
|
||||
::::
|
||||
|
@ -32,11 +32,6 @@ Follow these steps to troubleshoot and find solutions.
|
||||
If any of these solutions help, go to [Personalized Issue](#personalized-issue).
|
||||
If it is not just you, go to [Widespread Issue](#widespread-issue).
|
||||
|
||||
If none of these solutions help, try asking in our [Discord server](https://discord.gg/tachiyomi).
|
||||
|
||||
Check [#status-updates](https://discord.com/channels/349436576037732353/738862409284059239) first to see if your issue is known.
|
||||
State your app version and the source, series, and chapter with the problem if it is not listed.
|
||||
|
||||
::: tip An extension update may fix your issue
|
||||
Wait or check for an extension update if you have not already.
|
||||
There are no ETAs for updates.
|
||||
|
@ -1,82 +0,0 @@
|
||||
---
|
||||
title: TachiyomiAZ
|
||||
titleTemplate: false
|
||||
description: Hentai-focused with legacy features
|
||||
|
||||
layout: home
|
||||
pageClass: page-tachiyomi-az
|
||||
|
||||
hero:
|
||||
name: TachiyomiAZ
|
||||
text: Hentai-focused
|
||||
tagline: Recommendation system, a hamburger menu, and loads of hentai
|
||||
image: /forks/logo-az.webp
|
||||
actions:
|
||||
- theme: brand
|
||||
text: Download
|
||||
link: https://github.com/az4521/TachiyomiAZ/releases/latest
|
||||
- theme: alt
|
||||
text: GitHub
|
||||
link: https://github.com/az4521/tachiyomiAZ
|
||||
|
||||
customMetaTitle: TachiyomiAZ
|
||||
|
||||
features:
|
||||
- title: Hentai-focused
|
||||
details: Adds several features to enhance your Hentai experience.
|
||||
icon: 🔞
|
||||
- title: Series recommendations
|
||||
details: Get recommendations from MyAnimeList and AniDB.
|
||||
icon: 📚
|
||||
- title: Legacy design
|
||||
details: Keeps the old design of Tachiyomi with hamburger menu.
|
||||
icon: 👵
|
||||
|
||||
theme: "#FFCC4D"
|
||||
image: /forks/logo-az.webp
|
||||
imageSize: small
|
||||
---
|
||||
|
||||
<br><VPTeamMembers size="small" :members="members" />
|
||||
|
||||
<script setup>
|
||||
import "@theme/styles/forks/tachiyomi-az.styl"
|
||||
import { VPTeamMembers } from "vitepress/theme"
|
||||
|
||||
const members = [
|
||||
{
|
||||
avatar: "https://www.github.com/az4521.png",
|
||||
name: "az4521",
|
||||
title: "Creator",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/az4521" }
|
||||
]
|
||||
},
|
||||
{
|
||||
avatar: "https://www.github.com/jobobby04.png",
|
||||
name: "jobobby04",
|
||||
title: "Former Maintainer",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/jobobby04" }
|
||||
]
|
||||
},
|
||||
{
|
||||
avatar: "https://www.github.com/NerdNumber9.png",
|
||||
name: "NerdNumber9",
|
||||
title: "Original EH Fork",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/NerdNumber9" }
|
||||
]
|
||||
}
|
||||
]
|
||||
</script>
|
||||
|
||||
<br>
|
||||
|
||||
<div class="azContainer">
|
||||
<div class="azMarquee">
|
||||
<div class="azWiggleText">
|
||||
<span class="azText"><i>"The BEST fork"</i> - az4521</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
@ -1,56 +0,0 @@
|
||||
---
|
||||
title: TachiyomiJ2K
|
||||
titleTemplate: false
|
||||
description: New design approach along with several other enhancements
|
||||
|
||||
layout: home
|
||||
pageClass: page-tachiyomi-j2k
|
||||
|
||||
hero:
|
||||
name: TachiyomiJ2K
|
||||
text: Redesigned
|
||||
tagline: New design approach along with several other enhancements
|
||||
image: /forks/logo-j2k.webp
|
||||
actions:
|
||||
- theme: brand
|
||||
text: Download
|
||||
link: https://github.com/Jays2Kings/tachiyomiJ2K/releases/latest
|
||||
- theme: alt
|
||||
text: GitHub
|
||||
link: https://github.com/Jays2Kings/tachiyomiJ2K
|
||||
|
||||
customMetaTitle: TachiyomiJ2K
|
||||
|
||||
features:
|
||||
- title: Redesigned UI
|
||||
details: Entirely different design from regular Tachiyomi, with exciting new features.
|
||||
icon: 👑
|
||||
- title: Double-page for Tablets
|
||||
details: Combine 2 pages while reading into a single one for a better tablet experience.
|
||||
icon: 📖
|
||||
- title: Dynamic categories
|
||||
details: Group your library automatically by the tags, tracking status, source, and more.
|
||||
icon: 🔖
|
||||
|
||||
theme: "#0952AF"
|
||||
image: /forks/logo-j2k.webp
|
||||
imageSize: small
|
||||
---
|
||||
|
||||
<br><VPTeamMembers size="small" :members="members" />
|
||||
|
||||
<script setup>
|
||||
import "@theme/styles/forks/tachiyomi-j2k.styl"
|
||||
import { VPTeamMembers } from "vitepress/theme"
|
||||
|
||||
const members = [
|
||||
{
|
||||
avatar: "https://www.github.com/Jays2Kings.png",
|
||||
name: "Jays2Kings",
|
||||
title: "Creator",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/Jays2Kings" }
|
||||
]
|
||||
}
|
||||
]
|
||||
</script>
|
@ -1,72 +0,0 @@
|
||||
---
|
||||
title: TachiyomiSY
|
||||
titleTemplate: false
|
||||
description: Keeping up-to-date with Tachiyomi while also adding exclusive features
|
||||
|
||||
layout: home
|
||||
pageClass: page-tachiyomi-sy
|
||||
|
||||
hero:
|
||||
name: TachiyomiSY
|
||||
text: Hentai-focused
|
||||
tagline: Keeping up-to-date with Tachiyomi while also adding exclusive features
|
||||
image: /forks/logo-sy.webp
|
||||
actions:
|
||||
- theme: brand
|
||||
text: Download
|
||||
link: https://github.com/jobobby04/TachiyomiSY/releases/latest
|
||||
- theme: alt
|
||||
text: GitHub
|
||||
link: https://github.com/jobobby04/TachiyomiSY
|
||||
|
||||
customMetaTitle: TachiyomiSY
|
||||
|
||||
features:
|
||||
- title: Hentai-focused
|
||||
details: Adds several features to enhance your Hentai experience.
|
||||
icon: 🔞
|
||||
- title: Series recommendations
|
||||
details: Get recommendations from MyAnimeList and AniDB.
|
||||
icon: 📚
|
||||
- title: Autoscroll
|
||||
details: Allows you to read without any extra interaction.
|
||||
icon: 📜
|
||||
|
||||
theme: "#CE2828"
|
||||
image: /forks/logo-sy.webp
|
||||
imageSize: small
|
||||
---
|
||||
|
||||
<br><VPTeamMembers size="small" :members="members" />
|
||||
|
||||
<script setup>
|
||||
import "@theme/styles/forks/tachiyomi-sy.styl"
|
||||
import { VPTeamMembers } from "vitepress/theme"
|
||||
|
||||
const members = [
|
||||
{
|
||||
avatar: "https://www.github.com/jobobby04.png",
|
||||
name: "jobobby04",
|
||||
title: "Creator",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/jobobby04" }
|
||||
]
|
||||
},
|
||||
{
|
||||
avatar: "https://www.github.com/she11sh0cked.png",
|
||||
name: "she11sh0cked",
|
||||
title: "Extra tracking, filter, recommendations, and more",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/she11sh0cked" }
|
||||
]
|
||||
},
|
||||
{
|
||||
avatar: "https://www.github.com/az4521.png",
|
||||
name: "az4521",
|
||||
title: "Base recommendations and AZ",
|
||||
links: [
|
||||
{ icon: "github", link: "https://github.com/az4521" }
|
||||
]
|
||||
}
|
||||
]
|
||||
</script>
|
@ -1,33 +0,0 @@
|
||||
---
|
||||
title: Endorsed Forks
|
||||
description: Forks are alternative versions of Tachiyomi with exclusive features.
|
||||
lastUpdated: false
|
||||
editLink: false
|
||||
prev: false
|
||||
next: false
|
||||
pageClass: forks
|
||||
|
||||
features:
|
||||
- title: TachiyomiJ2K
|
||||
details: New design approach along with several other enhancements
|
||||
icon: <img src="/forks/logo-j2k.webp" alt="TachiyomiJ2K Logo" height="32" width="32">
|
||||
link: /forks/TachiyomiJ2K/
|
||||
- title: TachiyomiSY
|
||||
details: Keeping up-to-date with Tachiyomi while also adding exclusive features
|
||||
icon: <img src="/forks/logo-sy.webp" alt="TachiyomiSY Logo" height="32" width="32">
|
||||
link: /forks/TachiyomiSY/
|
||||
- title: TachiyomiAZ
|
||||
details: Keeps the old design of Tachiyomi with hamburger menu.
|
||||
icon: <img src="/forks/logo-az.webp" alt="TachiyomiAZ Logo" height="32" width="32">
|
||||
link: /forks/TachiyomiAZ/
|
||||
---
|
||||
|
||||
<script setup>
|
||||
import { VPHomeFeatures } from "vitepress/theme"
|
||||
</script>
|
||||
|
||||
# Endorsed Forks
|
||||
|
||||
Forks are alternative versions of Tachiyomi with exclusive features.
|
||||
|
||||
<VPHomeFeatures />
|
@ -8,5 +8,7 @@
|
||||
/help/guides/categories/ /docs/guides/categories 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/contribution/ /news/2024-01-13-goodbye 301
|
||||
/help/faq/ /docs/faq/general 301
|
||||
/forks/ /news/2024-01-13-goodbye 301
|
||||
/docs/contribute /news/2024-01-13-goodbye 301
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 5.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 2.4 KiB |
Loading…
Reference in New Issue
Block a user