Releases: woohyunjng/discord.py-components
Releases · woohyunjng/discord.py-components
2.1.2
13 Oct 02:17
Compare
Sorry, something went wrong.
No results found
0.5.3
05 Jun 13:38
Compare
Sorry, something went wrong.
No results found
Change python version needed to 3.7
Improve type hints
Fixed minor bugs
0.5.2.4
29 May 13:52
Compare
Sorry, something went wrong.
No results found
0.5.2.3
29 May 13:42
Compare
Sorry, something went wrong.
No results found
Fix embed not JSON serializable
0.5.2.2
29 May 13:05
Compare
Sorry, something went wrong.
No results found
#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
Sorry, something went wrong.
No results found
#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
Sorry, something went wrong.
No results found
0.5.1.1
28 May 16:01
Compare
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
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
Sorry, something went wrong.
No results found
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 ): ...