diff options
| author | Fuwn <[email protected]> | 2024-03-03 00:43:11 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-03-03 00:43:11 -0800 |
| commit | 3d45e946bf22a682cafa16e945d74b2553ae91ad (patch) | |
| tree | d3a13b0e6cfbbd8855bd114141147d652fadefb9 /src/lib/Tools/tools.ts | |
| parent | feat(tools): senpy shortcut (diff) | |
| download | due.moe-3d45e946bf22a682cafa16e945d74b2553ae91ad.tar.xz due.moe-3d45e946bf22a682cafa16e945d74b2553ae91ad.zip | |
feat(tools): auto-populate picker
Diffstat (limited to 'src/lib/Tools/tools.ts')
| -rw-r--r-- | src/lib/Tools/tools.ts | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/src/lib/Tools/tools.ts b/src/lib/Tools/tools.ts index 0f4da0a4..27a5f2b6 100644 --- a/src/lib/Tools/tools.ts +++ b/src/lib/Tools/tools.ts @@ -4,6 +4,7 @@ import { get } from 'svelte/store'; export const tools: { [key: string]: { name: () => string; + short?: string; description?: () => string; id: string; }; @@ -15,6 +16,7 @@ export const tools: { }, wrapped: { name: () => 'AniList Wrapped & Statistics Panel', + short: 'AniList Wrapped', description: () => 'Instantly generate an AniList themed Wrapped for your profile, doubling as a statistics panel for your bio', id: 'wrapped' @@ -43,22 +45,22 @@ export const tools: { description: () => "Generate random followers from any user's following list", id: 'random_follower' }, - likes: { - name: () => 'Likes', - description: () => 'Get all likes of an activity or forum thread', - id: 'likes' - }, dump_profile: { name: () => 'Dump Profile', description: () => "Dump a user's profile to JSON", id: 'dump_profile' }, + likes: { + name: () => 'Likes', + description: () => 'Get all likes of an activity or forum thread', + id: 'likes' + }, activity_history: { name: () => 'Activity History Analyser', id: 'activity_history', description: () => 'Activity history utilities & image exporter' }, - anime_girls_holding_programming_books: { + girls: { name: () => 'Anime Girls Holding Programming Books', id: 'girls', description: () => 'Find anime girls holding programming books by language' |