feat(discord): add Discord Rich Presence integration#18
Merged
flexiondotorg merged 3 commits intomainfrom Mar 22, 2026
Merged
Conversation
- Add Discord RPC configuration and i18n translations - Implement core Discord presence module with playback tracking - Add tray menu toggle to control presence visibility - Include privacy and terms documentation - Wire Discord module into main process lifecycle Signed-off-by: Martin Wimpress <code@wimpress.io>
Remove scheduleUpdate() call from playbackTimeDidChange handler, which was continuously resetting the 1s debounce timer before sendActivity() could execute. The handler now only updates position; timestamps are calculated fresh at send time, preserving accuracy. Signed-off-by: Martin Wimpress <code@wimpress.io>
- Move @xhayper/discord-rpc from planned to current dependencies - Update i18n record count and config table with notification and Discord toggles - Document playbackTimeDidChange debounce pitfall in architecture notes - Resolve Discord Client ID and update field names, button behaviour, and reconnect backoff details - Replace pseudocode with event subscription table and clarify toggle behaviour Signed-off-by: Martin Wimpress <code@wimpress.io>
Contributor
There was a problem hiding this comment.
1 issue found across 14 files
Prompt for AI agents (unresolved issues)
Check if these issues are valid — if so, understand the root cause of each and fix them. If appropriate, use sub-agents to investigate and fix each issue separately.
<file name="src/integrations/discord-presence/index.ts">
<violation number="1" location="src/integrations/discord-presence/index.ts:63">
P1: This optional-chaining pattern can throw at runtime when `client.user` is undefined; chain `.catch` safely as well.</violation>
</file>
Reply with feedback, questions, or to request a fix. Tag @cubic-dev-ai to re-run a review.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds complete Discord Rich Presence integration allowing now playing information to be displayed in Discord user status. Includes RPC client lifecycle management with debounce, pause timeout, and reconnect backoff. Configurable via settings with i18n translations. Accessible via tray menu toggle.
Changes
Testing