feat(discord): add configurable presence style presets

Replace the hardcoded "Mining and crafting (Anki cards)" meme message
with a preset system. New `discordPresence.presenceStyle` option
supports four presets: "default" (clean bilingual), "meme" (the OG
Minecraft joke), "japanese" (fully JP), and "minimal". The default
preset shows "Sentence Mining" with 日本語学習中 as the small image
tooltip. Existing users can set presenceStyle to "meme" to keep the
old behavior.
This commit is contained in:
2026-03-29 15:28:01 -07:00
parent 6648ed1332
commit 33319a102d
9 changed files with 148 additions and 37 deletions

View File

@@ -273,6 +273,7 @@ export interface ResolvedConfig {
};
discordPresence: {
enabled: boolean;
presenceStyle: import('./integrations').DiscordPresenceStylePreset;
updateIntervalMs: number;
debounceMs: number;
};