discord.v 0.1.0 - kinda major
04 Jan 2021
- Separate
client
module- Gateway can be imported and used anywhere as module.
- Client implemented in root module (discord.v)
- Delete
sharding
module - Implement Sharding in Client
- Delete
structs
module - All structs implemented in root module (discord.v)
- Implement all events from Gateway
- Concat all struct files into one
- Implement some REST
- Rate Limiting with buckets
multipart/form-data
for file uploadingchannel_message_send
request can send text, embeds, images
- Create 3 examples
- Simplest Ping-Pong Bot
- Embed example
- Upload image example
- New FancyLog for internal logging
- Get rid of
util
module, now snowflake accessible bydiscordv.snowflake
discord.v 0.0.1 - doo doo
13 Nov 2020
- Established a connection to the Discord gateway
- Rewrited EventBus from vlib to fit our needs (custom EventHandlerFn)
- We have Ready, MessageCreate, MessageUpdate, MessageDelete events to subscribe
- Sharding barebones