summaryrefslogtreecommitdiff
path: root/poezio/core
AgeCommit message (Collapse)Author
2022-08-23roezio: migrate poezio/xdg.pyroezioMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-04-06core: Log InvalidCABundle error in info bufferMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-04-03fix: add missing awaits in carbons handlingmathieui
2022-03-23internal: make command_say asyncmathieui
2022-03-01impromptu: types, fstrings, namingMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-03-01impromptu: wait for subject instead of self-presenceMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-03-01impromptu: Ensure a room is empty before joiningMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-02-25clean: remove unused importsmathieui
2022-02-25internal: make the other message handlers asyncmathieui
2022-02-25internal: move and split muc message handlingmathieui
2022-02-25bookmark: Add logging on InvalidJidMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-02-25bookmark nick: Treat empty string as no nickMaxime “pep” Buquet
And prevent the JID() call from failing with InvalidJid because of the empty resource. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-02-25Ensure /bookmark{,_local} and /join use the proper tab objectMaxime “pep” Buquet
Now that _add_bookmark is async. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2022-02-10internal: use async events where possiblemathieui
2022-02-06internal: make most core.handlers asyncmathieui
add some typing annotations on inputs as well, most are not necessary right now but the end goal is to make poezio internals much more async-friendly than it currently is.
2021-12-25impromptu: pronounceable MUC namesMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2021-12-24impromptu: add room jid in invite info messageMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2021-12-24impromptu: Wait for the self-presence to configure and inviteMaxime “pep” Buquet
MucTab.join doesn't allow us to wait until we are fully joined to a MUC, causing races between the MUC creation and configuration, making it impossible for invited users to join the MUC. This adds a disposable event (discarded after first use) that listens on the self-presence on the generated JID. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2021-12-24destroy_room: Allow empty altroom argumentMaxime “pep” Buquet
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2021-12-11Replace asyncio.ensure_future() with asyncio.create_task()Emmanuel Gil Peyrot
The latter function got introduced in Python 3.7, which is conveniently our MSPV, so let’s use that.
2021-11-15Add xmpp: URI support to the /join commandEmmanuel Gil Peyrot
2021-07-02fix: improve typingmathieui
preliminary to more typing added to slixmpp, fix things in advance
2021-06-22Fix the message doubling situationmathieui
Add an "initial" parameter for onetoonetabs, and delay the reception of the message until the sync is done (and possibly ignore the message if it is fetched by the sync). Fixes #3542
2021-04-17fix: allow certificate confirm dialog resizemathieui
fixes #3371
2021-04-16fix: regression on /setmathieui
2021-04-16fix: /set: do not priorize section printing if we detect an optionmathieui
2021-04-16fix: when detecting /set option = value, do the right thingmathieui
Previously: this creates a section with the option name, with an option named "=" and the value specified. Then you are stuck because "/set option value" will not work due to the command detecting the section name and only printing the value of [option] value=. Fixes #3517, probably
2021-04-16internal: remove the xep-0319 implementationmathieui
It is not privacy-friendly and not performance-friendly to have more code called on each input when in "available" status
2021-04-16fix: correction time in one to one tabs (fix #3532)mathieui
2021-04-15fix: tell pylint I know the curses module bettermathieui
2021-04-15fix: make mypy happiermathieui
conflict between the "tabs" module name and "tabs" Core attribute, mostly
2021-04-15fix: /join with passwordsmathieui
2021-04-15internal: add more annotation and remove unused attributesmathieui
2021-04-15internal: add a different class for UI messagesmathieui
2021-04-15fix: display issue when changing show_timestamps valuemathieui
2021-04-14fix: corrections in 1to1 tabsmathieui
2021-04-12fix: remove all remaining safejids (fix #3457)mathieui
2021-04-11typing: fix a bunch of type errorsmathieui
add more annotations
2021-04-11internal: remove more global state from configmathieui
2021-04-11feature: add a /debug command to change logging level dynamicallymathieui
And changing the path too
2021-04-11refactor: move argument parsing away from config.pymathieui
global state--
2021-04-11fix: typing imports for 3.9mathieui
2021-04-08fix: beep_on was broken with config changesmathieui
2021-04-02logging: Remove the "typ" passing when adding or logging messagesmathieui
2021-04-02fix: ignore typeerrors in tabs when we check beforehandmathieui
2021-04-02fix: type errors for GapTabmathieui
2021-04-02refactor: only init core wins after the curses initmathieui
2021-04-02make pylint happymathieui
(for now)
2021-04-02fix: tons of type errorsmathieui
2021-04-02fix: definition of commanddictmathieui