Matt Carey

Results 39 issues of Matt Carey

Support the `allowed_mentions` field outlined in discordapp/discord-api-docs#1396 to allow for finer control over what mentions trigger pings.

api-support

# Summary Updates the REST API to use v8. Still a WIP as the enhanced errors need to be implemented. ## Added `Overwrite::TYPES` - Symbol to Integer mapping for the...

# Summary Add support for `INVITE_CREATE` and `INVITE_DELETE` events. I'm not a huge fan of how I handle the `channel` and `server` fields, specifically how it changes the `Invite#server/channel` fields...

# Summary Expose a `VoiceServerUpdateEvent` that can be used for libraries like [telecom](https://github.com/b1naryth1ef/telecom) and [lavalink](https://github.com/Frederikam/Lavalink). Previously the event handler was used only internally and had a stub saying that it...

The wiki now references prebuilt binaries that include support for 64 bit DLLs, so this warning is not true.

# Summary Add support for viewing the `client_status` field on Users. Also adds support for matching `client_status` in presence events. ```ruby bot.presence(client_status: { mobile: :online }) do |event| puts "Someone...

# Summary Adds support for uploading images with a message for reference in an embed via `attachment://filename.png` --- ## Changed The following methods have had `attachments` added as optional positional...

# Summary Windows does not support using `TERM` as a kill signal. This changes to using `KILL` on Windows platforms and verifies that our child process has not already exited...

# Summary A change to `Message#reactions?` in 1e9691697f054c56688855a26eb0030d0b127178 forgot to negate the return of `empty?` --- ## Fixed `Discordrb::Message#reactions?` - invert returned bool

# Summary Store `message_id` on `ReactionEvents` to allow for `message` matching. Also add support for `from` and `in` matching. --- ## Added - `from`, `in`, and `message` matchers for `ReactionAddEvent`...