forked from aniyomiorg/aniyomi-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
59 changed files
with
1,376 additions
and
662 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,3 @@ indent_size = 4 | |
indent_style = space | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
blank_issues_enabled: false | ||
contact_links: | ||
- name: Extensions list | ||
url: https://tachiyomi.org/extensions | ||
about: List of all available extensions with download links. | ||
- name: Multi-source extensions spreadsheet | ||
url: https://tachiyomi.org/extensions-spreadsheet | ||
about: The sources inside multi-source extensions can be found in this spreadsheet. | ||
- name: Tachiyomi help website | ||
url: https://tachiyomi.org/help/ | ||
- name: ⚠️ Application issue | ||
url: https://github.com/jmir1/aniyomi/issues/new/choose | ||
about: Issues and requests about the app itself should be opened in the tachiyomi repository instead | ||
- name: 📦 Aniyomi extensions | ||
url: https://aniyomi.jmir.xyz/extensions | ||
about: List of all available extensions with download links | ||
- name: 🖥️ Aniyomi website | ||
url: https://aniyomi.jmir.xyz/help/ | ||
about: Common questions are answered here. | ||
- name: Tachiyomi app GitHub repository | ||
- name: Aniyomi app GitHub repository | ||
url: https://github.com/jmir1/aniyomi | ||
about: Issues about the app itself should be opened here instead. | ||
about: Issues about the app itself should be opened here instead. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
name: 🐞 Issue report | ||
description: Report a source issue in Aniyomi | ||
labels: [Bug] | ||
body: | ||
|
||
- type: input | ||
id: source | ||
attributes: | ||
label: Source information and language | ||
description: | | ||
You can find the extension name and version in **Browse → Extensions**. | ||
placeholder: | | ||
Example: "Mangahere 1.3.18 (English)" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: reproduce-steps | ||
attributes: | ||
label: Steps to reproduce | ||
description: Provide an example of the issue. | ||
placeholder: | | ||
Example: | ||
1. First step | ||
2. Second step | ||
3. Issue here | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: Expected behavior | ||
placeholder: | | ||
Example: | ||
"This should happen..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: actual-behavior | ||
attributes: | ||
label: Actual behavior | ||
placeholder: | | ||
Example: | ||
"This happened instead..." | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: tachiyomi-version | ||
attributes: | ||
label: Aniyomi version | ||
description: | | ||
You can find your Aniyomi version in **More → About**. | ||
placeholder: | | ||
Example: "0.13.5" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: android-version | ||
attributes: | ||
label: Android version | ||
description: | | ||
You can find this somewhere in your Android settings. | ||
placeholder: | | ||
Example: "Android 11" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other-details | ||
attributes: | ||
label: Other details | ||
placeholder: | | ||
Additional details and attachments. | ||
- type: checkboxes | ||
id: acknowledgements | ||
attributes: | ||
label: Acknowledgements | ||
description: Your issue will be closed if you haven't done these steps. | ||
options: | ||
- label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. | ||
required: true | ||
- label: I have written a short but informative title. | ||
required: true | ||
- label: I have updated the app to version **[0.13.5](https://github.com/jmir1/aniyomi/releases/latest)**. | ||
required: true | ||
- label: I have updated all installed extensions. | ||
required: true | ||
- label: I have tried the [troubleshooting guide](https://aniyomi.jmir.xyz/help/guides/troubleshooting/). | ||
required: true | ||
- label: If this is an issue with the app itself, I should be opening an issue in the [app repository](https://github.com/jmir1/aniyomi/issues/new/choose). | ||
required: true | ||
- label: I will fill out all of the requested information in this form. | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: ⭐ Feature request | ||
description: Suggest a feature to improve a source | ||
labels: [Feature request] | ||
body: | ||
|
||
- type: input | ||
id: source | ||
attributes: | ||
label: Source name and language | ||
description: | | ||
You can find the extension name in **Browse → Extensions**. | ||
placeholder: | | ||
Example: "Mangahere (English)" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Describe your suggested feature | ||
description: How can an existing extension be improved? | ||
placeholder: | | ||
Example: | ||
"It should work like this..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other-details | ||
attributes: | ||
label: Other details | ||
placeholder: | | ||
Additional details and attachments. | ||
- type: checkboxes | ||
id: acknowledgements | ||
attributes: | ||
label: Acknowledgements | ||
description: Your issue will be closed if you haven't done these steps. | ||
options: | ||
- label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. | ||
required: true | ||
- label: I have written a short but informative title. | ||
required: true | ||
- label: If this is an issue with the app itself, I should be opening an issue in the [app repository](https://github.com/jmir1/aniyomi/issues/new/choose). | ||
required: true | ||
- label: I have updated the app to version **[0.13.5](https://github.com/jmir1/aniyomi/releases/latest)**. | ||
required: true | ||
- label: I will fill out all of the requested information in this form. | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: 🧠 Meta feature request | ||
description: Suggest improvements to the project | ||
labels: [Meta request] | ||
body: | ||
|
||
- type: textarea | ||
id: feature-description | ||
attributes: | ||
label: Describe why this should be added | ||
description: How can the project be improved? | ||
placeholder: | | ||
Example: | ||
"It should work like this..." | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other-details | ||
attributes: | ||
label: Other details | ||
placeholder: | | ||
Additional details and attachments. | ||
- type: checkboxes | ||
id: acknowledgements | ||
attributes: | ||
label: Acknowledgements | ||
description: Your issue will be closed if you haven't done these steps. | ||
options: | ||
- label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. | ||
required: true | ||
- label: I have written a short but informative title. | ||
required: true | ||
- label: If this is an issue with the app itself, I should be opening an issue in the [app repository](https://github.com/jmir1/aniyomi/issues/new/choose). | ||
required: true | ||
- label: I have updated the app to version **[0.13.5](https://github.com/jmir1/aniyomi/releases/latest)**. | ||
required: true | ||
- label: I have updated all installed extensions. | ||
required: true | ||
- label: I will fill out all of the requested information in this form. | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: 🗑 Source removal request | ||
description: Scanlators can request their site to be removed | ||
labels: [Meta request] | ||
body: | ||
|
||
- type: input | ||
id: link | ||
attributes: | ||
label: Source link | ||
placeholder: | | ||
Example: "https://notrealscans.org" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other-details | ||
attributes: | ||
label: Other details | ||
placeholder: | | ||
Additional details and attachments. | ||
- type: checkboxes | ||
id: requirements | ||
attributes: | ||
label: Requirements | ||
description: Your request will be denied if you don't meet these requirements. | ||
options: | ||
- label: Proof of ownership/intent to remove sent to a Aniyomi Discord server mod via DM | ||
required: true | ||
- label: Site only hosts content scanlated by the group and not stolen from other scanlators or official releases (i.e., not an aggregator site) | ||
required: true | ||
- label: Site is not infested with user-hostile features (e.g., invasive or malicious ads) | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: 🌐 Source request | ||
description: Suggest a new source for Aniyomi | ||
labels: [Source request] | ||
body: | ||
|
||
- type: input | ||
id: name | ||
attributes: | ||
label: Source name | ||
placeholder: | | ||
Example: "Not Real Scans" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: link | ||
attributes: | ||
label: Source link | ||
placeholder: | | ||
Example: "https://notrealscans.org" | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: language | ||
attributes: | ||
label: Language | ||
placeholder: | | ||
Example: "English" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: other-details | ||
attributes: | ||
label: Other details | ||
placeholder: | | ||
Additional details and attachments. | ||
- type: checkboxes | ||
id: acknowledgements | ||
attributes: | ||
label: Acknowledgements | ||
description: Your issue will be closed if you haven't done these steps. | ||
options: | ||
- label: I have searched the existing issues and this is a new ticket, **NOT** a duplicate or related to another open issue. | ||
required: true | ||
- label: I have written a title with source name. | ||
required: true | ||
- label: I have checked that the extension does not already exist on the [website extensions list](https://aniyomi.jmir.xyz/extensions/) or the app. | ||
required: true | ||
- label: I have checked that the extension does not already exist by searching the [GitHub repository](https://github.com/jmir1/aniyomi-extensions/) and verified it does not appear in the code base. | ||
required: true | ||
- label: I will fill out all of the requested information in this form. | ||
required: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.