SwiftDiscord icon indicating copy to clipboard operation
SwiftDiscord copied to clipboard

Discord API Client for Swift

Results 12 SwiftDiscord issues
Sort by recently updated
recently updated
newest added

Hey. I'm trying to integrate SwiftDiscord into my CLI project, but when it's trying to compile `DiscordOpus/configure.h`, it fails at the `#include ` line, with `file not found`. I've installed...

- [x] Handle new events - [ ] Voice resume - [ ] Voice decoding

enhancement

With the newly released Swift 5.3 toolchain for Windows and Swift NIO having some degree of Windows support too, it would be nice to see whether this library could be...

Add a `keys` property that allows consumers of `DiscordLazyDictionary` to access the collection of keys without evaluating the associated values.

Adds reaction events Note: for now, it uses the `member` part of the info sent in reaction add to update the guild object, but doesn't pass it through to the...

Will include vapor 3

When compiling a new SwiftPM project with your library it fails with the following errors ``` /.build/checkouts/SwiftDiscord--7968038837483286921/Sources/SwiftDiscord/Voice/DiscordVoiceEngine.swift:235:96: error: cannot convert value of type '[UInt8]' to expected argument type 'UInt8' let...

xcode + vapor 3.08 +swiftdiscord vapor branch creating controller ```swift class SwiftDiscordController: DiscordClientDelegate { var client: DiscordClient! func botstart(){ client = DiscordClient(token: "Bot sometoken", delegate: self, configuration: [.log(.info)]) client.connect() }...