diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/Settings/Attributions.svelte | 32 | ||||
| -rw-r--r-- | src/routes/settings/+page.svelte | 5 |
2 files changed, 37 insertions, 0 deletions
diff --git a/src/lib/Settings/Attributions.svelte b/src/lib/Settings/Attributions.svelte new file mode 100644 index 00000000..ef9ed3b3 --- /dev/null +++ b/src/lib/Settings/Attributions.svelte @@ -0,0 +1,32 @@ +<details open={true}> + <summary>Attributions</summary> + + <ul> + <li> + <a href="https://anilist.co/" target="_blank">AniList</a>: all but chapter, volume, and + character birthday data + </li> + <li>MangaDex: <b>only</b> chapter and volume count data</li> + <li> + <a href="https://www.animecharactersdatabase.com/index.php" target="_blank"> + Anime Characters Database + </a>: primary character birthday data + </li> + <li> + <a href="https://www.anisearch.com/" target="_blank">aniSearch</a>: secondary character + birthday data + </li> + <li> + <a href="https://www.mangaupdates.com/" target="">Baka-Updates Magna</a>: manga release data + </li> + <li> + <a href="https://www.wlnupdates.com/">WLN Updates</a>: web & light novel release data + </li> + </ul> + + <p> + <a href="/">due.moe</a> + does <b>not</b> host any manga or anime material, and is not affiliated with any of the above sites + and services. + </p> +</details> diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 7398a59f..2f95d232 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -9,6 +9,7 @@ import SettingHint from '$lib/Settings/SettingHint.svelte'; import Verbiage from '$lib/Settings/Verbiage.svelte'; import { pruneAllManga } from '$lib/Media/manga'; + import Attributions from '$lib/Settings/Attributions.svelte'; export let data; @@ -233,4 +234,8 @@ <p /> <Verbiage /> + + <p /> + + <Attributions /> {/if} |