aboutsummaryrefslogtreecommitdiff
path: root/discord/ui/view.py
Commit message (Expand)AuthorAgeFilesLines
* Fallback to None message_id searches in View dispatchRapptz2021-08-011-1/+3
* Remove unused variable in viewRapptz2021-08-011-1/+0
* Change View dispatch mechanism to be keyed by message_id as wellRapptz2021-07-311-5/+6
* Add versionadded to ui.View and ui.Itemscrazzz2021-07-211-0/+2
* Fix documentation note for interaction_checkKaylynn Morgan2021-07-211-3/+2
* Remove extraneous dict assignment from view storeRapptz2021-07-071-1/+0
* Specify View timeouts is in secondsRapptz2021-07-041-1/+1
* Rework view timeouts to work as documentedRapptz2021-07-021-34/+63
* [docs] Fix more referencesJosh2021-07-011-1/+1
* Change timeout parameter in View.from_message to keyword onlyRapptz2021-06-301-1/+1
* Add View.from_message to convert message components to a ViewRapptz2021-06-301-0/+31
* Add conversion routine for SelectMenu to ui.SelectRapptz2021-06-301-1/+5
* Make View timeout parameter keyword-onlyRapptz2021-06-101-1/+1
* Grammatical improvements in View documentationUP9293122021-06-081-2/+2
* Add pre-conditions to avoid on_timeout being called after stop()Rapptz2021-06-061-2/+4
* Add View.on_error callback for swallowed exceptionsRapptz2021-06-051-10/+31
* Add View.is_dispatching to detect whether a view has been addedRapptz2021-06-041-0/+5
* Add Client.persistent_views to get all persistent viewsRapptz2021-05-311-1/+10
* Ensure views added to Client.add_view are persistent viewsRapptz2021-05-311-0/+8
* Remove view syncing before editing in viewsRapptz2021-05-311-0/+3
* Add View.is_finished() to query listening stateRapptz2021-05-311-0/+4
* Fix potential KeyError when removing viewsRapptz2021-05-301-1/+1
* Add __repr__ for ViewRapptz2021-05-301-0/+3
* Rework item grouping behaviour to take into consideration weightsRapptz2021-05-291-20/+60
* Check future state before setting result in ViewRapptz2021-05-291-2/+5
* Remove __slots__ from ViewRapptz2021-05-281-7/+0
* Add support for select componentsRapptz2021-05-281-3/+6
* Fix View.wait not returning when it times outRapptz2021-05-281-5/+14
* Add a timeout callback for detecting when a View times outRapptz2021-05-281-3/+24
* Add View.remove_item and View.clear_itemsRapptz2021-05-281-0/+18
* Add View.interaction_check for interaction pre-conditionsRapptz2021-05-281-0/+36
* Add a way to wait for a view to finish its interactionsRapptz2021-05-271-0/+9
* Allow View to be instantiated without subclassingRapptz2021-05-271-3/+1
* Only automatically defer if no response was given in callbackRapptz2021-05-271-1/+2
* Rename enums to use official API namingRapptz2021-05-271-1/+1
* Change the way callbacks are defined to allow derivingRapptz2021-05-271-6/+13
* Add initial support for buttons and componentsRapptz2021-05-271-0/+270