Releases: 3ddelano/discord.gd
Releases · 3ddelano/discord.gd
1.2.1
Release 1.2.0
1.2.0
- Fixed some bugs in
DiscordInteraction
regarding updating the message of interaction. - Fixed typo in SelectMenu
Release 1.1.9
1.1.9
Implemented application commands (CHAT_INPUT / USER / MESSAGE commands) and also autocomplete response for application commands
- Added
is_command()
,is_autocomplete()
andrespond_autocomplete()
methods toDiscordInteraction
- Added
register_command()
,register_commands()
,delete_command()
,delete_commands()
,get_command()
andget_commands()
methods toDiscordBot
- Added class
ApplicationCommand
- Made data argument in
SelectMenu.add_option()
optional
Release 1.1.8
1.1.8
Implemented select menus
- Added class
SelectMenu
- Added helper method
Helpers.assert_length()
Release 1.1.7
1.1.7
Implemented reactions (CUSTOM REACTIONS ONLY)
- Fixed
DiscordBot.edit()
was not updatingMessage.attachments
properly - Added
DiscordBot.create_reaction()
- Added
DiscordBot.delete_reaction()
- Added
DiscordBot.delete_reactions()
- Added
DiscordBot.get_reactions()
- Added signal
DiscordBot.message_reaction_add
- Added signal
DiscordBot.message_reaction_remove
- Added signal
DiscordBot.message_reaction_remove_all
- Added signal
DiscordBot.message_reaction_remove_emoji
Release 1.1.6
1.1.6
- Fixed
DiscordBot.delete()
(Wasn't deleting the message)
Release 1.1.5
1.1.5
- Added
DiscordBot.create_dm_channel()
- Added
DiscordBot.get_guild_emojis()
- Added emoji support for
MessageButton
Release 1.1.4
1.1.4
- Added
DiscordBot.get_guild_member()
- Added
DiscordBot.add_member_role()
- Added
DiscordBot.remove_member_role()
Release 1.1.3
1.1.3
- Updated
DiscordBot.send
to accept the channel_id or aMessage
- Added
DiscordBot.permissions_in()
to get bot permissions in a channel - Added
DiscordBot.permissions_for()
to get permmissions for a specific user (currently only Bot works)
Release 1.1.2
1.1.2
- Added support for 4096 size in
DiscordBot.get_guild_icon()
- Added support for 4096 size in
User.get_display_avatar()
- Fixed dynamic option in
User.get_display_avatar()
- Fixed a bug where
Message
did not store components. - Added
DiscordInteraction.delete_follow_up(message: Message)
to delete a sent follow up message. - Certain functions now use
push_error()
instead ofassert()
so that the program doesn't stop is an error occurs.