mirror of
https://github.com/tachiyomiorg/website.git
synced 2024-12-21 07:31:58 +01:00
Update Neko for MD2 release (#158)
This commit is contained in:
parent
9f388f57bd
commit
a87ab49338
@ -1,10 +1,10 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="downloadContainer">
|
<div class="downloadContainer">
|
||||||
<button class="downloadForkButton" @click="downloadFork">
|
<button class="downloadForkButton" :style="downloadForkStyle" @click="downloadFork">
|
||||||
{{ downloadLabel }}
|
{{ downloadForkLabel }}
|
||||||
</button>
|
</button>
|
||||||
<button class="githubForkButton" :onclick="githubLink">
|
<button class="githubForkButton" :style="githubForkStyle" :onclick="githubForkLink">
|
||||||
{{ githubLabel }}
|
{{ githubForkLabel }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -18,21 +18,29 @@ export default {
|
|||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
downloadLabel: {
|
downloadForkLabel: {
|
||||||
type: String,
|
type: String,
|
||||||
default: "Download"
|
default: "Download"
|
||||||
},
|
},
|
||||||
downloadLink: {
|
downloadForkLink: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
},
|
},
|
||||||
githubLabel: {
|
downloadForkStyle: {
|
||||||
|
type: String,
|
||||||
|
default: ""
|
||||||
|
},
|
||||||
|
githubForkLabel: {
|
||||||
type: String,
|
type: String,
|
||||||
default: "GitHub"
|
default: "GitHub"
|
||||||
},
|
},
|
||||||
githubLink: {
|
githubForkLink: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true
|
required: true
|
||||||
|
},
|
||||||
|
githubForkStyle: {
|
||||||
|
type: String,
|
||||||
|
default: ""
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
@ -43,7 +51,7 @@ export default {
|
|||||||
},
|
},
|
||||||
|
|
||||||
async mounted() {
|
async mounted() {
|
||||||
const { data } = await axios.get(this.$props.downloadLink);
|
const { data } = await axios.get(this.$props.downloadForkLink);
|
||||||
// Maybe eventually some release has more than the apk in assets.
|
// Maybe eventually some release has more than the apk in assets.
|
||||||
const apkAsset = data.assets.find(a => a.name.includes(".apk"));
|
const apkAsset = data.assets.find(a => a.name.includes(".apk"));
|
||||||
// Set the values.
|
// Set the values.
|
||||||
@ -73,7 +81,7 @@ export default {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
window.location.assign(
|
window.location.assign(
|
||||||
this.$data.browserDownloadUrl || this.$props.downloadLink
|
this.$data.browserDownloadUrl || this.$props.downloadForkLink
|
||||||
);
|
);
|
||||||
window.ga("send", "event", "Action", "Download", this.$props.forkName);
|
window.ga("send", "event", "Action", "Download", this.$props.forkName);
|
||||||
}
|
}
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 818 KiB After Width: | Height: | Size: 731 KiB |
Binary file not shown.
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 16 KiB |
@ -6,30 +6,42 @@ sidebar: false
|
|||||||
|
|
||||||
# <img class="headerLogo" :src="$withBase('/assets/media/fork-Neko-icon.png')"> Neko
|
# <img class="headerLogo" :src="$withBase('/assets/media/fork-Neko-icon.png')"> Neko
|
||||||
|
|
||||||
<ForkButtons forkName="Neko" downloadLink="https://api.github.com/repos/CarlosEsco/Neko/releases/latest" githubLink="window.open('https://github.com/CarlosEsco/Neko')"/>
|
<ForkButtons forkName="Neko" downloadForkLink="https://api.github.com/repos/CarlosEsco/Neko/releases/latest" downloadForkStyle="background-color:#3DDA83;color:#000000;" githubForkLink="window.open('https://github.com/CarlosEsco/Neko')"/>
|
||||||
|
|
||||||
## Introduction
|
## About
|
||||||
**Neko** is maintained by **[CarlosEsco](https://github.com/CarlosEsco)**.
|
This is a [MangaDex](https://mangadex.org/) specific fork of **Tachiyomi** and [TachiyomiJ2K](/forks/TachiyomiJ2K). This contains features specific to **MangaDex** that those versions cannot offer. It also features almost every feature that **J2K** has except for other sources and local sources.
|
||||||
|
|
||||||
This **MangaDex** focused fork enhances your reading with native integration and recommendations.
|
|
||||||
|
|
||||||
|
## Screenshots
|
||||||
<img :src="$withBase('/assets/media/fork-Neko-banner.png')"/>
|
<img :src="$withBase('/assets/media/fork-Neko-banner.png')"/>
|
||||||
|
|
||||||
## Features
|
## Mangadex specific features:
|
||||||
::: aside-guide
|
- Supports native login to **MangaDex** and supports 2FA
|
||||||
For a full list of features, visit the GitHub page.
|
- MDList support
|
||||||
:::
|
- Similar Manga recommendations
|
||||||
|
- Manually sync of Manga to and from **MangaDex** follows list
|
||||||
|
|
||||||
- **Features a recommendations tab** <Badge text="Alpha"/>
|
## Credits
|
||||||
- **Built-in login with 2FA support**
|
- [Inorichi](https://github.com/inorichi/) for making the original **Tachiyomi**
|
||||||
- **Flags for source language in manga info page**
|
- [Jays2King](https://github.com/Jays2Kings/) for the wonderful new UI of **J2K**
|
||||||
- **All the MangaDex statuses**
|
|
||||||
- **Sort library by date added**
|
## License
|
||||||
- **View MDList follows**
|
|
||||||
- **Improved Download queue**
|
Copyright 2015 Javier Tomás
|
||||||
- This includes reordering and cancelling downloads.
|
|
||||||
- **Ability to skip chapters that are hidden or read**
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
- **Manga covers update when a manga info update is triggered**
|
you may not use this file except in compliance with the License.
|
||||||
- **Tri-state filter when filtering in library**
|
You may obtain a copy of the License at
|
||||||
- **Range Select for Library and Chapters**
|
|
||||||
- *Long Press* on an item then long press on another to select everything in between.
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
||||||
|
|
||||||
|
Modifications copyright (C) 2019 Carlos Escobedo
|
||||||
|
|
||||||
|
## Disclaimer
|
||||||
|
|
||||||
|
The developer of this application does not have any affiliation with the content providers available.
|
@ -6,7 +6,7 @@ sidebar: false
|
|||||||
|
|
||||||
# <img class="headerLogo" :src="$withBase('/assets/media/fork-AZ-icon.png')"> TachiyomiAZ
|
# <img class="headerLogo" :src="$withBase('/assets/media/fork-AZ-icon.png')"> TachiyomiAZ
|
||||||
|
|
||||||
<ForkButtons forkName="TachiyomiAZ" downloadLink="https://api.github.com/repos/az4521/TachiyomiAZ/releases/latest" githubLink="window.open('https://github.com/az4521/TachiyomiAZ')"/>
|
<ForkButtons forkName="TachiyomiAZ" downloadForkLink="https://api.github.com/repos/az4521/TachiyomiAZ/releases/latest" githubForkLink="window.open('https://github.com/az4521/TachiyomiAZ')"/>
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
**TachiyomiAZ** is maintained by **[az4521](https://github.com/az4521)** and [Syer10](https://github.com/jobobby04).
|
**TachiyomiAZ** is maintained by **[az4521](https://github.com/az4521)** and [Syer10](https://github.com/jobobby04).
|
||||||
|
@ -6,7 +6,7 @@ sidebar: false
|
|||||||
|
|
||||||
# <img class="headerLogo" :src="$withBase('/assets/media/fork-EH-icon.png')"> TachiyomiEH <Badge text="Deprecated" type="error" vertical="middle" />
|
# <img class="headerLogo" :src="$withBase('/assets/media/fork-EH-icon.png')"> TachiyomiEH <Badge text="Deprecated" type="error" vertical="middle" />
|
||||||
|
|
||||||
<ForkButtons forkName="TachiyomiEH" downloadLink="https://api.github.com/repos/NerdNumber9/TachiyomiEH/releases/latest" githubLink="window.open('https://github.com/NerdNumber9/TachiyomiEH')"/>
|
<ForkButtons forkName="TachiyomiEH" downloadForkLink="https://api.github.com/repos/NerdNumber9/TachiyomiEH/releases/latest" githubForkLink="window.open('https://github.com/NerdNumber9/TachiyomiEH')"/>
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
**TachiyomiEH** is maintained by **[NerdNumber9](https://github.com/NerdNumber9)**.
|
**TachiyomiEH** is maintained by **[NerdNumber9](https://github.com/NerdNumber9)**.
|
||||||
|
@ -6,7 +6,7 @@ sidebar: false
|
|||||||
|
|
||||||
# <img class="headerLogo" :src="$withBase('/assets/media/fork-J2K-icon.png')"> TachiyomiJ2K
|
# <img class="headerLogo" :src="$withBase('/assets/media/fork-J2K-icon.png')"> TachiyomiJ2K
|
||||||
|
|
||||||
<ForkButtons forkName="TachiyomiJ2K" downloadLink="https://api.github.com/repos/Jays2Kings/tachiyomiJ2K/releases/latest" githubLink="window.open('https://github.com/Jays2Kings/tachiyomiJ2K')"/>
|
<ForkButtons forkName="TachiyomiJ2K" downloadForkLink="https://api.github.com/repos/Jays2Kings/tachiyomiJ2K/releases/latest" githubForkLink="window.open('https://github.com/Jays2Kings/tachiyomiJ2K')"/>
|
||||||
|
|
||||||
## Introduction
|
## Introduction
|
||||||
**TachiyomiJ2K** is maintained by **[Jays2Kings](https://github.com/Jays2Kings)**.
|
**TachiyomiJ2K** is maintained by **[Jays2Kings](https://github.com/Jays2Kings)**.
|
||||||
|
Loading…
Reference in New Issue
Block a user