@@ -55,27 +55,6 @@ static const std::vector<StreamData> stream_data{
55
55
std::regex (" animenewsnetwork\\ .(?:com|cc)/video/[0-9]+" ),
56
56
std::regex (" (.+) - Anime News Network" ),
57
57
},
58
- // Crunchyroll
59
- {
60
- Stream::Crunchyroll,
61
- L" Crunchyroll" ,
62
- L" http://www.crunchyroll.com" ,
63
- std::regex (
64
- " crunchyroll\\ .[a-z.]+/[^/]+/(?:[^/]+/)?(?:"
65
- " episode-[0-9]+.*|"
66
- " .*-(?:movie|ona|ova)"
67
- " )-[0-9]+"
68
- ),
69
- std::regex (" (.+) - Watch on Crunchyroll" ),
70
- },
71
- // Funimation
72
- {
73
- Stream::Funimation,
74
- L" Funimation" ,
75
- L" https://www.funimation.com" ,
76
- std::regex (" funimation\\ .com/shows/[^/]+/[^/]+/" ),
77
- std::regex (" (?:Watch )?(.+) Anime.* (?:on|-) Funimation" ),
78
- },
79
58
// HIDIVE
80
59
{
81
60
Stream::Hidive,
@@ -172,10 +151,6 @@ bool IsStreamEnabled(const Stream stream) {
172
151
return taiga::settings.GetStreamAdn ();
173
152
case Stream::Ann:
174
153
return taiga::settings.GetStreamAnn ();
175
- case Stream::Crunchyroll:
176
- return taiga::settings.GetStreamCrunchyroll ();
177
- case Stream::Funimation:
178
- return taiga::settings.GetStreamFunimation ();
179
154
case Stream::Hidive:
180
155
return taiga::settings.GetStreamHidive ();
181
156
case Stream::Jellyfin:
@@ -209,12 +184,6 @@ void EnableStream(const Stream stream, const bool enabled) {
209
184
case Stream::Ann:
210
185
taiga::settings.SetStreamAnn (enabled);
211
186
break ;
212
- case Stream::Crunchyroll:
213
- taiga::settings.SetStreamCrunchyroll (enabled);
214
- break ;
215
- case Stream::Funimation:
216
- taiga::settings.SetStreamFunimation (enabled);
217
- break ;
218
187
case Stream::Hidive:
219
188
taiga::settings.SetStreamHidive (enabled);
220
189
break ;
0 commit comments