aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Settings/Attributions.svelte
blob: cdb752cc3061b456b70a0b577b4a4d0b3c0ebbf3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<details open={false}>
	<summary>Attributions</summary>

	<ul>
		<li>
			<a href="https://anilist.co/" target="_blank">AniList</a>: all but primary chapter and volume
			data, and character birthday 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 />

	<ol>
		<li>
			<a href="/">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="/">due.moe</a>
			is not affiliated with any of the above or below sites and services.
		</li>
		<li>
			<p>
				At the moment, <a href="/">due.moe</a> only ever contains outbound links to the following sites
				and services:
			</p>

			<ul>
				<li><a href="https://anilist.co/">AniList.co</a></li>
				<li><a href="https://myanimelist.net/">MyAnimeList</a> (optional)</li>
				<li><a href="https://animeschedule.net/">AnimeSchedule.net</a> (optional)</li>
				<li><a href="https://www.livechart.me/">LiveChart.me</a> (optional)</li>
				<li><a href="https://www.wikipedia.org/">Wikipedia</a> (when rate-limited)</li>
			</ul>
		</li>
	</ol>
</details>

<style>
	#mangadex {
		filter: blur(2.5px);
		transition: filter 0.25s;
	}

	#mangadex:hover {
		filter: none;
	}
</style>