summaryrefslogtreecommitdiff
path: root/poezio/core
AgeCommit message (Collapse)Author
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
2021-04-02refactor: rewrite config.get() to getbool, getstr, getint…mathieui
2021-03-14fix: pylint bogus errorsmathieui
2021-03-14fix: bad error handling when checking bookmarks storagemathieui
2021-03-13fix: do not crash on /invitationsmathieui
(but only if an invalid JID is in there, I guess)
2021-03-13fix: fix global /last_activitymathieui
2021-03-13Fix a typo in core.structs.__all__mathieui
2021-03-13Add missing ensure_future to bookmarks.save() callsmathieui
2021-02-27misc: wrap some calls in ensure_future to prepare for slix API changemathieui
Some things need to be rewritten in a cleaner way, and other need to be directly deleted, but that will need to wait for the slix api change merge.
2021-02-17muc: remove non-deterministic nick colorsmathieui
2021-02-09Remove activity/mood/gaming/tune from poezio coremathieui
rationale: probably 0.1% of poezio users have ever used the commands, and a very small number of users are using the PEP events like that. It is better to unclutter the poezio source and add it as a plugin, with less tight coupling.
2021-02-07/join: Fix autobookmarkingmathieui
(broken when moving bookmarks to async)
2021-02-07core commands: make /last_activity asyncEmmanuel Gil Peyrot
2021-02-07core commands: remove all remaining usage of safeJID()Emmanuel Gil Peyrot
2021-02-03invite: remove callback and force impromptu rooms to use mediatedmathieui
2021-02-03core commands: remove uses of callback=mathieui
2021-02-03bookmarks: get rid of callbacksmathieui
2021-02-03Use async properly on session startmathieui
2021-01-29Use typing_extensions for TypedDictmathieui
2021-01-28Fix /destroy error casesmathieui
2021-01-28core: move initial commands in a separate filesmathieui
(improve core.py SNR)
2021-01-28Move get_error_message to commonmathieui
2021-01-24Also receive self-message events in pluginsmathieui
fixes omemo messages from another of our connected clients
2020-12-28Add (back?) reason and altroom arguments for /destroy_room.Emmanuel Gil Peyrot
Also make use of slixmpp’s new destroy_room() function.