Update Neko for MD2 release (#158)

This commit is contained in:
Soitora 2020-05-01 17:17:29 +02:00 committed by GitHub
parent 9f388f57bd
commit a87ab49338
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 55 additions and 35 deletions

View File

@ -1,10 +1,10 @@
<template>
<div class="downloadContainer">
<button class="downloadForkButton" @click="downloadFork">
{{ downloadLabel }}
<button class="downloadForkButton" :style="downloadForkStyle" @click="downloadFork">
{{ downloadForkLabel }}
</button>
<button class="githubForkButton" :onclick="githubLink">
{{ githubLabel }}
<button class="githubForkButton" :style="githubForkStyle" :onclick="githubForkLink">
{{ githubForkLabel }}
</button>
</div>
</template>
@ -18,21 +18,29 @@ export default {
type: String,
required: true
},
downloadLabel: {
downloadForkLabel: {
type: String,
default: "Download"
},
downloadLink: {
downloadForkLink: {
type: String,
required: true
},
githubLabel: {
downloadForkStyle: {
type: String,
default: ""
},
githubForkLabel: {
type: String,
default: "GitHub"
},
githubLink: {
githubForkLink: {
type: String,
required: true
},
githubForkStyle: {
type: String,
default: ""
}
},
data() {
@ -43,7 +51,7 @@ export default {
},
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.
const apkAsset = data.assets.find(a => a.name.includes(".apk"));
// Set the values.
@ -73,7 +81,7 @@ export default {
}
});
window.location.assign(
this.$data.browserDownloadUrl || this.$props.downloadLink
this.$data.browserDownloadUrl || this.$props.downloadForkLink
);
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

View File

@ -6,30 +6,42 @@ sidebar: false
# <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
**Neko** is maintained by **[CarlosEsco](https://github.com/CarlosEsco)**.
This **MangaDex** focused fork enhances your reading with native integration and recommendations.
## About
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.
## Screenshots
<img :src="$withBase('/assets/media/fork-Neko-banner.png')"/>
## Features
::: aside-guide
For a full list of features, visit the GitHub page.
:::
## Mangadex specific features:
- Supports native login to **MangaDex** and supports 2FA
- MDList support
- Similar Manga recommendations
- Manually sync of Manga to and from **MangaDex** follows list
- **Features a recommendations tab** <Badge text="Alpha"/>
- **Built-in login with 2FA support**
- **Flags for source language in manga info page**
- **All the MangaDex statuses**
- **Sort library by date added**
- **View MDList follows**
- **Improved Download queue**
- This includes reordering and cancelling downloads.
- **Ability to skip chapters that are hidden or read**
- **Manga covers update when a manga info update is triggered**
- **Tri-state filter when filtering in library**
- **Range Select for Library and Chapters**
- *Long Press* on an item then long press on another to select everything in between.
## Credits
- [Inorichi](https://github.com/inorichi/) for making the original **Tachiyomi**
- [Jays2King](https://github.com/Jays2Kings/) for the wonderful new UI of **J2K**
## License
Copyright 2015 Javier Tomás
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
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.

View File

@ -6,7 +6,7 @@ sidebar: false
# <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
**TachiyomiAZ** is maintained by **[az4521](https://github.com/az4521)** and [Syer10](https://github.com/jobobby04).

View File

@ -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" />
<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
**TachiyomiEH** is maintained by **[NerdNumber9](https://github.com/NerdNumber9)**.

View File

@ -6,7 +6,7 @@ sidebar: false
# <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
**TachiyomiJ2K** is maintained by **[Jays2Kings](https://github.com/Jays2Kings)**.