apprenticius
2b02f5ebe4
slixmpp/plugins/xep_0353/jingle_message.py aktualisiert
2024-12-27 19:21:33 +00:00
apprenticius
7d7fccdb65
Dateien nach „slixmpp/plugins/xep_0353“ hochladen
2024-12-27 12:05:42 +00:00
apprenticius
c0881b5f36
Dateien nach „slixmpp/plugins/xep_0339“ hochladen
2024-12-27 12:05:23 +00:00
apprenticius
2b86ce9e39
Dateien nach „slixmpp/plugins/xep_0338“ hochladen
2024-12-27 12:05:09 +00:00
apprenticius
61d16b7585
Dateien nach „slixmpp/plugins/xep_0320“ hochladen
2024-12-27 12:04:53 +00:00
apprenticius
3e0890bdbf
Dateien nach „slixmpp/plugins/xep_0294“ hochladen
2024-12-27 12:04:37 +00:00
apprenticius
0461024bbe
Dateien nach „slixmpp/plugins/xep_0293“ hochladen
2024-12-27 12:04:22 +00:00
apprenticius
e212e7d62b
Dateien nach „slixmpp/plugins/xep_0262“ hochladen
2024-12-27 12:04:06 +00:00
apprenticius
5cdd923b8c
Dateien nach „slixmpp/plugins/xep_0215“ hochladen
2024-12-27 12:03:47 +00:00
apprenticius
39c6acde17
Dateien nach „slixmpp/plugins/xep_0177“ hochladen
2024-12-27 12:03:26 +00:00
apprenticius
4f28eb4067
Dateien nach „slixmpp/plugins/xep_0176“ hochladen
2024-12-27 12:03:11 +00:00
apprenticius
ca6a3ce241
Dateien nach „slixmpp/plugins/xep_0167“ hochladen
2024-12-27 12:02:42 +00:00
apprenticius
8abc9e4ab2
Dateien nach „slixmpp/plugins/xep_0166“ hochladen
2024-12-27 12:02:06 +00:00
apprenticius
0338a40b56
slixmpp/plugins/__init__.py aktualisiert
2024-12-27 11:58:09 +00:00
mathieui
09d9320b91
Release 1.8.6
slix-1.8.6
2024-12-26 22:39:49 +01:00
mathieui
fbf298c36d
XEP-0030: fix tests
...
Use None as the "no value" value, rather than ''.
2024-12-26 09:42:33 +01:00
mathieui
7153d79006
itests/examples: integrate imghdr code directly ( fix #3570 )
...
Python 3.13 removes it, and I would rather not add another dependency
only for tests or examples…
2024-12-14 16:08:49 +01:00
mathieui
1d3e03a923
XEP-0030: make read operations more resilient
...
Reading valid XML which does not respect the XEP schema should not crash
the parser badly.
2024-12-14 16:00:24 +01:00
mathieui
3d0b09e2e2
xmlstream: prevent stanza parsing from crashing the whole thing
...
If an error happened while parsing a stanza, it would bring the whole
program down and disconnect instead of logging an error. And the DEBUG
log happened afterwards (so, never).
2024-12-14 15:52:51 +01:00
nicoco
23544731ef
Support XEP-0490 (Message Display Synchronization)
2024-12-11 21:29:37 +00:00
nicoco
a18a6c4eb8
xep-0425: update to version 0.3.0
2024-12-11 21:24:12 +00:00
nicoco
dd903b1792
xep-0424: update to version 0.4.0
2024-12-11 21:24:12 +00:00
mathieui
cf3b30120e
repo: remove github pull request template
...
codeberg annoyingly picks it up, which creates confusion for
contributors
2024-12-11 22:18:38 +01:00
jinyu
d86dccaf85
enhancement: Update type hints
2024-12-11 21:17:23 +00:00
jinyu
075812adf3
fix: Update msg_kwargs documentation to clarify required parameters for make_message
2024-12-11 21:16:37 +00:00
jinyu
8955ece461
Fix missing parameters
2024-12-11 21:16:37 +00:00
jinyu
5051c60262
enhancement: Refactor reply handling in XEP-0461; add fallback support and improve message construction
2024-12-11 21:16:37 +00:00
mathieui
c495eb73fc
xmlstream: add stanza_not_sent event ( fixes #3559 )
2024-12-11 22:01:34 +01:00
jinyu
12c516d365
fix: Add future annotations import to base.py for improved type hinting
2024-11-19 18:44:33 +01:00
jinyu
d9b0b6dfe6
fix: Correct JID comparison in MUC plugin for bare JID matching
2024-11-19 18:44:27 +01:00
jinyu
7979e3b603
Resolve circular import
2024-11-19 18:44:20 +01:00
jinyu
f24a7679e5
enhancement: Improve JID handling and logging in MUC plugin; update status code return type
2024-11-19 18:44:11 +01:00
jinyu
df0ecfc142
Update the type of BasePlugin.xmpp to BaseXMPP. Increase the timeout for join_muc_wait.
2024-11-19 18:43:58 +01:00
jinyu
e79b98b266
add default timeout value
2024-11-19 18:43:49 +01:00
jinyu
5ed5e60b20
Fix: AttributeError in get_nick and jid_in_room due to incorrect JID type
2024-11-19 18:43:41 +01:00
mathieui
e5fe53ef45
tests: remove distutils use
2024-10-08 10:31:15 +02:00
mathieui
93608bd2f4
setup.py: Add python versions
2024-10-08 10:29:28 +02:00
nicoco
3b2386ee2f
stanzabase: Pass problematic object to TypeError raised by ElementBase.append()
...
This should help debugging those type of errors.
2024-09-27 13:00:28 +02:00
nicoco
b94c6716f7
xep-0231: fix TypeError when BoB cannot be found
...
Although it is not documented whether the get_bob API
call can return None, the default implementation can,
which raises a TypeError when the requested BoB is not
available. This commit prevents such TypeError by
raising a XMPPError instead.
References: https://todo.sr.ht/~nicoco/slidcord/23
2024-09-27 10:28:24 +02:00
jinyu
db8ce9187c
feat: Add is_correction method to XEP-0308 Last Message Correction plugin
2024-09-08 00:39:10 +08:00
mathieui
7f926a944a
setup.py: Do not install aiodns on windows ( fix #3556 )
...
aiodns is broken on the default windows event loop and the workaround
has significant downsides. This has downsides too as it prevents
resolution of SRV records by default.
2024-08-25 13:18:31 +02:00
sch
e96f8e1ed0
Correct an MUC-related error message which indicates the requirement of a JID
2024-06-20 19:00:20 +00:00
sch
c8c0bb9134
Add BukuBot
...
Add BukuBot for bookmarks
2024-06-04 10:22:24 +00:00
schimoni
825c51b87d
Add descriptive introduction and new links to project sendxmpp-py
...
Add descriptive introduction;
Change URL of repository sendxmpp-py;
Add groupchat to project sendxmpp-py.
2024-05-22 12:39:14 +00:00
mathieui
7c79f28587
XEP-0199: handle component case for keepalive ping
2024-03-22 20:48:36 +01:00
mathieui
dcaf812a28
ci: build cython module for itests
2024-02-09 23:28:15 +01:00
mathieui
ae4de043d2
itests: fix default server call
2024-02-09 23:11:29 +01:00
mathieui
998bbb80ad
itests: hardcode default MUC server
2024-02-09 23:07:32 +01:00
mathieui
5a5b36ab39
xmlstream: make mypy even happier
2024-02-09 22:58:20 +01:00
mathieui
f151f0a7ab
xmlstream/componentxmpp: fix some typing issues
...
Make mypy happier
2024-02-09 22:55:20 +01:00