diff options
| author | Fuwn <[email protected]> | 2024-10-12 20:12:26 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-12 20:12:26 -0700 |
| commit | c7da36d89c1d3a81aaa7e1095ee9a8a064a570b5 (patch) | |
| tree | 56c839a144b3d24418447fb350e356686761627f /src/lib/Tools/tools.ts | |
| parent | fix(DueAnimeList): filter out dropped media (diff) | |
| download | due.moe-c7da36d89c1d3a81aaa7e1095ee9a8a064a570b5.tar.xz due.moe-c7da36d89c1d3a81aaa7e1095ee9a8a064a570b5.zip | |
feat(tools): add simple tracker
Diffstat (limited to 'src/lib/Tools/tools.ts')
| -rw-r--r-- | src/lib/Tools/tools.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib/Tools/tools.ts b/src/lib/Tools/tools.ts index b85ff7f6..06249ab3 100644 --- a/src/lib/Tools/tools.ts +++ b/src/lib/Tools/tools.ts @@ -7,6 +7,7 @@ export const tools: { short?: string; description?: () => string; id: string; + hidden?: boolean; }; } = { default: { @@ -35,6 +36,12 @@ export const tools: { "Find media with prequels you haven't seen yet for any given simulcast season", id: 'sequel_spy' }, + tracker: { + name: () => 'Tracker', + description: () => 'Track your anime and manga progress with ease, intended for media that doesn\'t qualify for an AniList entry', + id: 'tracker', + hidden: true + }, uma_musume_birthdays: { name: () => { return 'Uma Musume: Pretty Derby Character Birthdays'; |