Skip to content
This repository has been archived by the owner on Dec 18, 2021. It is now read-only.

Releases: kiki7000/discord.py-components

2.1.2

13 Oct 02:17
Compare
Choose a tag to compare
  • disable_components

0.5.3

05 Jun 13:38
fc43d30
Compare
Choose a tag to compare
  • Change python version needed to 3.7
  • Improve type hints
  • Fixed minor bugs

0.5.2.4

29 May 13:52
Compare
Choose a tag to compare

Same as 0.5.2.3

0.5.2.3

29 May 13:42
Compare
Choose a tag to compare
  • Fix embed not JSON serializable

0.5.2.2

29 May 13:05
Compare
Choose a tag to compare
  • #45
  • Fixed #46 #47 #49
  • Add mention_author
  • Examples ( #40 #48 )
  • Fixed AttributeError: 'Bot' object has no attribute '_get_components_json'

0.5.2.1

29 May 12:57
Compare
Choose a tag to compare
  • #45
  • Fixed #46 #47 #49
  • Add mention_author
  • Examples ( #40 #48 )
  • Fixed AttributeError: 'Context' object has no attribute '_get_components_json'

0.5.2

29 May 12:29
Compare
Choose a tag to compare

0.5.1.1

28 May 16:01
Compare
Choose a tag to compare
  • Fix error raised when sending files
  • Fix components not deleting
  • Components in ephemeral messages
  • responded property in Context

0.5.1

28 May 15:53
Compare
Choose a tag to compare
  • Fix error raised when sending files
  • Fix components not deleting
  • Components in ephemeral messages
  • responded property in Context

0.5.0

28 May 09:01
Compare
Choose a tag to compare
  • Fixed minor bugs
  • Use dispatch method
    Now you have to change
await <DiscordComponents or Context>.wait_for_interact("button_click")

@<DiscordComponents>.on_interact("button_click")
async def on_button_click(res): ...

to

await <Client>.wait_for("button_click")

@<Client>.event
async def on_button_click(res): ...