summaryrefslogtreecommitdiff
path: root/slixmpp/plugins
AgeCommit message (Collapse)Author
2021-02-13XEP-0231: Add typing, docs, and new-style kwargsmathieui
Also add content deletion scheduling if specified.
2021-02-13XEP-0047: Better typing, docs, coroutine.mathieui
- Add a gather() shortcut to buffer all data received in a stream - Fix a bug in sendall that happens if the data is above the block size.
2021-02-08XEP-0045: Types, visibility, and documentationmathieui
- Make all handlers private (_-prefixed) - Reorder methods in a more thematic order - Add docstrings to public methods - Add types where they were missing - Create new Literal types for closed enums - Make join_muc a wrapper around join_muc_wait and return a Future - Deprecate the current join_muc API - Fix some mypy issues
2021-02-05global: rewrite copyright notice to use commentsmathieui
2021-02-05XEP-0084: add integer wrappers for int stanza attributesmathieui
2021-02-05XEP-0191: Add type hints and switch to default argsmathieui
2021-02-05XEP-0153: Add typing and switch to default argsmathieui
(and refactor a bit)
2021-02-05XEP-0153: Fix a bug that would add muc elements to inbound presencemathieui
2021-02-05XEP-0152: Add type hints and switch to default argsmathieui
2021-02-05XEP-0092: Add type hints and switch to default argsmathieui
2021-02-05XEP-0084: Add type hints and switch to default argsmathieui
2021-02-05XEP-0054: Add type hints and switch to default argsmathieui
2021-02-04XEP-0049: Add type hints and switch to default argsmathieui
2021-02-04XEP-0012: Add type hints and switch to default argsmathieui
2021-02-04stanzabase: make _get_plugin part of the public APImathieui
it is the only way I know of checking if an element is present in a stanza without creating it or checking the XML manually.
2021-02-03XEP-0196: Fix return values and typingmathieui
2021-02-03XEP-0172: Fix return values and typingmathieui
2021-02-03XEP-0118: Fix return values and typingmathieui
2021-02-03XEP-0108: Fix return values and typingmathieui
2021-02-03XEP-0107: Fix return values and typingmathieui
2021-01-31XEP-0045: make the join_muc_wait timeout parameter optionalmathieui
2021-01-31XEP-0045: Add a join_muc_wait functionmathieui
Which is async, raises on timeout or error, and returns when joined.
2021-01-31XEP-0045: Add a specific handler for MUC presence errorsmathieui
2021-01-31XEP-0045: add a directed event for self-presencemathieui
2021-01-31Merge branch 'mix-additions' into 'master'mathieui
MIX additions: handle MIX-PAM with roster and new events See merge request poezio/slixmpp!108
2021-01-30xeps: fix description for the newer pluginsmathieui
2021-01-30XEP-0405: Manage MIX Roster itemsmathieui
2021-01-30XEP-0369: Add events for channel/participantsmathieui
2021-01-29XEP-0198: do not send acks when disconnectedmathieui
2021-01-29XEP-0198: Enable SM even if we failed resuming the sessionmathieui
And trigger session_end only after we fail the resuming.
2021-01-27Merge branch 'xep-0382-spoiler-messages' into 'master'mathieui
XEP-0382: Spoiler Messages See merge request poezio/slixmpp!100
2021-01-24Merge branch 'fix-emoji-update' into 'master'mathieui
XEP-0444: Fix emoji detection See merge request poezio/slixmpp!103
2021-01-24XEP-0444: Fix emoji detectionmathieui
the emoji lib just released a major release after 5 years, which breaks the API. This new code is compatible with both.
2021-01-24XEP-0199: Fix handler default parameter, add typingmathieui
Clear futures when disabling the keepalive, and do it on every disconnect instead of only at session end.
2021-01-22XEP-0199: cancel ongoing handlers on session endmathieui
and keep track of them but be careful to not store too many fix for #3442
2021-01-22XEP-0382: Spoiler Messagesmathieui
2021-01-12XEP-0045: Add a groupchat_join MUC event for componentsmathieui
2021-01-10XEP-0045: Better component handlingmathieui
2021-01-10XEP-0045: Better "groupchat_presence" targetingmathieui
(do not make EVERY SINGLE presence go through the 0045 handler)
2021-01-10XEP-0045: add more elements (<actor/>)mathieui
2020-12-27Merge branch 'muc-mypy-fixes' into 'master'mathieui
XEP-0045: Fix issues found by mypy See merge request poezio/slixmpp!95
2020-12-27XEP-0045: Add a set_subject() helperEmmanuel Gil Peyrot
2020-12-27XEP-0045: Add missing reason for affiliation and role changesEmmanuel Gil Peyrot
This is especially useful for ban/kick reasons.
2020-12-27XEP-0045: Fix issues found by mypyEmmanuel Gil Peyrot
2020-12-13XEP-0424: fire event even with groupchat messagesmathieui
2020-12-12Merge branch 'fix-moderation' into 'master'Link Mauve
XEP-0425: small fix & integration test See merge request poezio/slixmpp!86
2020-12-12XEP-0424: Add an event for message retractionmathieui
+ update the integration test
2020-12-12XEP-0425: Fix plugin registration, and add elementmathieui
2020-12-10docs: update docstrings for sphinx conformitymathieui
Remove most references to timeout/callback/ifrom/timeout_callbacks args
2020-12-08XEP-047: Room Activity Indicatorsmathieui
Implement the XEP