Skip to content

Releases: 3ddelano/discord.gd

1.2.1

17 Jan 02:41
Compare
Choose a tag to compare

1.2.1

  • Fixed Embed.set_color() for an array of RGB values
  • Moved documentation to Discord.gd
  • Added DiscordBot.guild_update signal
  • Added Helpers.iso2unix() method
  • Fixed DiscordBot.get_guild_icon() used to crash the bot if guild had no icon.

Release 1.2.0

24 Dec 12:17
Compare
Choose a tag to compare

1.2.0

  • Fixed some bugs in DiscordInteraction regarding updating the message of interaction.
  • Fixed typo in SelectMenu

Release 1.1.9

18 Dec 18:13
Compare
Choose a tag to compare

1.1.9

Implemented application commands (CHAT_INPUT / USER / MESSAGE commands) and also autocomplete response for application commands

  • Added is_command(), is_autocomplete() and respond_autocomplete() methods to DiscordInteraction
  • Added register_command(), register_commands(), delete_command(), delete_commands(), get_command() and get_commands() methods to DiscordBot
  • Added class ApplicationCommand
  • Made data argument in SelectMenu.add_option() optional

Release 1.1.8

16 Dec 12:33
Compare
Choose a tag to compare

1.1.8

Implemented select menus

  • Added class SelectMenu
  • Added helper method Helpers.assert_length()

Release 1.1.7

08 Nov 05:38
Compare
Choose a tag to compare

1.1.7

Implemented reactions (CUSTOM REACTIONS ONLY)

  • Fixed DiscordBot.edit() was not updating Message.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

19 Oct 04:15
Compare
Choose a tag to compare

1.1.6

  • Fixed DiscordBot.delete() (Wasn't deleting the message)

Release 1.1.5

04 Oct 05:22
Compare
Choose a tag to compare

1.1.5

  • Added DiscordBot.create_dm_channel()
  • Added DiscordBot.get_guild_emojis()
  • Added emoji support for MessageButton

Release 1.1.4

02 Oct 05:37
Compare
Choose a tag to compare

1.1.4

  • Added DiscordBot.get_guild_member()
  • Added DiscordBot.add_member_role()
  • Added DiscordBot.remove_member_role()

Release 1.1.3

14 Sep 10:41
Compare
Choose a tag to compare

1.1.3

  • Updated DiscordBot.send to accept the channel_id or a Message
  • 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

24 Aug 03:54
Compare
Choose a tag to compare

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 of assert() so that the program doesn't stop is an error occurs.