diff options
| author | Fuwn <[email protected]> | 2024-02-11 04:04:20 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-02-11 04:04:20 -0800 |
| commit | 2295eb111d05abce97c86951676776998bac2db2 (patch) | |
| tree | c1d2923ea8f00d614b9f7a64b807f04267cc9a2d /src/lib/Settings/Categories | |
| parent | feat(css): tamer input shadows (diff) | |
| download | due.moe-2295eb111d05abce97c86951676776998bac2db2.tar.xz due.moe-2295eb111d05abce97c86951676776998bac2db2.zip | |
refactor(settings): move attributions to categories
Diffstat (limited to 'src/lib/Settings/Categories')
| -rw-r--r-- | src/lib/Settings/Categories/Attributions.svelte | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/src/lib/Settings/Categories/Attributions.svelte b/src/lib/Settings/Categories/Attributions.svelte new file mode 100644 index 00000000..dad576e4 --- /dev/null +++ b/src/lib/Settings/Categories/Attributions.svelte @@ -0,0 +1,70 @@ +<script> + import root from '$lib/Utility/root'; +</script> + +<ul> + <li> + <a href="https://anilist.co/" target="_blank">AniList</a>: all data not explicity attributed + otherwise, excluding primary chapter and volume data, character birthday data, and subtitled + anime release data + </li> + <li><span id="mangadex">MangaDex</span>: <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> --> + <!-- <li> + <a href="https://subsplease.org/">SubsPlease</a>: subtitle release data + </li> --> +</ul> + +<p /> + +<details open class="card-clear"> + <summary>Outbound Link Disclaimer</summary> + <ol> + <li> + <a href={root('/')}>due.moe</a> + does not host or directly link to any less-than-legal anime or manga material and/or distribution + platforms. + </li> + <li> + <a href={root('/')}>due.moe</a> + is not affiliated with any of the above or below sites and services. + </li> + <li> + At the moment, <a href={root('/')}>due.moe</a> only ever contains outbound links to the + following sites and services: + + <ul> + <li><a href="https://anilist.co/">AniList.co</a></li> + <li><a href="https://myanimelist.net/">MyAnimeList</a> (if selected)</li> + <li><a href="https://animeschedule.net/">AnimeSchedule.net</a> (if selected)</li> + <li><a href="https://www.livechart.me/">LiveChart.me</a> (if selected)</li> + <li><a href="https://www.wikipedia.org/">Wikipedia</a> (if rate-limited)</li> + </ul> + </li> + </ol> +</details> + +<style> + #mangadex { + filter: blur(2.5px); + transition: filter 0.25s; + } + + #mangadex:hover { + filter: none; + } +</style> |