mirror of
https://github.com/idanoo/autobrr
synced 2025-07-25 09:49:13 +00:00
feat(lists): add anilist support (#1949)
* fix(lists): clear selected list * chore(web): improve onChange set values for select_wide * feat(web): add anilist lists * feat(web): Filter is required on ListForm * fix(web): ListForm reset url when change type * feat(lists): add anilist support * feat(lists): filter duplicates for anilist * feat(anilist): handle special characters * fix(lists): better title matching fix(lists): add alternatives to apostrophe replacement * test(title): add some anime cases * feat(anilist): replace unicodes with regex * feat(lists): move additional anilist processing to autobrr instead of brr api * feat(lists): clean Unicode Block “Latin Extended-A” chars --------- Co-authored-by: martylukyy <35452459+martylukyy@users.noreply.github.com>
This commit is contained in:
parent
5e2769639f
commit
b724429b97
10 changed files with 257 additions and 55 deletions
13
web/src/types/List.d.ts
vendored
13
web/src/types/List.d.ts
vendored
|
@ -41,4 +41,15 @@ interface ListCreate {
|
|||
include_alternate_titles: boolean;
|
||||
}
|
||||
|
||||
type ListType = "SONARR" | "RADARR" | "LIDARR" | "READARR" | "WHISPARR" | "MDBLIST" | "TRAKT" | "METACRITIC" | "STEAM" | "PLAINTEXT";
|
||||
type ListType =
|
||||
| "SONARR"
|
||||
| "RADARR"
|
||||
| "LIDARR"
|
||||
| "READARR"
|
||||
| "WHISPARR"
|
||||
| "MDBLIST"
|
||||
| "TRAKT"
|
||||
| "METACRITIC"
|
||||
| "STEAM"
|
||||
| "PLAINTEXT"
|
||||
| "ANILIST";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue