Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-05-24 | Merge branch 'fix-message-basetabs' into 'master' | Maxime Buquet | |
Fix a type collision between Messages See merge request poezio/poezio!107 | |||
2020-05-24 | Fix a type collision between Messages | mathieui | |
2020-05-23 | Merge branch 'fix-history-fetch' into 'master' | mathieui | |
Fix many MAM issues Closes #3516, #3496, #3498, #3506, #3522, and #3493 See merge request poezio/poezio!105 | |||
2020-05-23 | Remove remaining occurences of tab.last_stanza_id | mathieui | |
2020-05-23 | Fix types in text_buffer | mathieui | |
2020-05-23 | Fix typing in mam.py | mathieui | |
2020-05-23 | ChatTab: make set text_win in constructor (typing) | mathieui | |
2020-05-23 | Convert all datetimes to UTC when doing comparisons | mathieui | |
2020-05-23 | Fix some edge cases of MAM history fetch | mathieui | |
- Wait until we receive our own MUC presence to fetch history - Fix /reconnect weirdness | |||
2020-05-23 | Fix some remaining refresh issues | mathieui | |
2020-05-23 | Add an "end of archive" message type | mathieui | |
2020-05-23 | MAM: many changes | mathieui | |
- Fix color & nicks in one to one chats - Make poezio-facing functions "schedules" to avoid races on tab query state - Rename functions - Use a different behavior when filling a history gap and populating a new tab in a MUC | |||
2020-05-23 | Textbuffer: add "find last message" function | mathieui | |
2020-05-23 | Core: dedup some code | mathieui | |
2020-05-23 | Remove "top" message logic | mathieui | |
2020-05-23 | Add tests for text_buffer | mathieui | |
2020-05-23 | Add a concept of "history gap" | mathieui | |
2020-05-23 | Add specific types for own leave and join | mathieui | |
2020-05-22 | Merge branch 'deploy-doc-python3-image' into 'master' | louiz’ | |
ci: Deploy the doc using the python:3 docker image See merge request poezio/poezio!106 | |||
2020-05-22 | ci: Deploy the doc using the python:3 docker image | louiz’ | |
2020-05-22 | Merge branch 'muctab-presence-types' into 'master' | mathieui | |
MucTab: add some typing to presence handlers See merge request poezio/poezio!104 | |||
2020-05-20 | MucTab: add some typing to presence handlers | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-20 | Merge branch 'ignore-muc-avatar' into 'master' | mathieui | |
MucTab: Ignore presence from MUC barejid See merge request poezio/poezio!103 | |||
2020-05-20 | MucTab: Ignore presence from MUC barejid | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-17 | Merge branch 'fix-highlights' into 'master' | Maxime Buquet | |
Fix highlights See merge request poezio/poezio!102 | |||
2020-05-17 | Fix highlight display on corrections | mathieui | |
2020-05-17 | Fix a corner case with correction when moving between highlights | mathieui | |
(there are still a few but this one would wipe all other highlights, making it a bit painful) | |||
2020-05-17 | Fix highlight navigation | mathieui | |
2020-05-17 | Remove extra logging | mathieui | |
2020-05-17 | Fix highlights color | mathieui | |
2020-05-14 | Merge branch 'ci-doc' into 'master' | Maxime Buquet | |
CI: limit the doc deploy job to master on poezio/poezio See merge request poezio/poezio!101 | |||
2020-05-14 | CI: limit the doc deploy job to master on poezio/poezio | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-14 | Merge branch 'reorder-gaptab' into 'master' | Maxime Buquet | |
plugins/reorder: fix GapTab serialization See merge request poezio/poezio!100 | |||
2020-05-14 | plugins/reorder: fix GapTab serialization | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-13 | Merge branch 'reorder-plugin-handle-corner-case' into 'master' | Maxime Buquet | |
Fix an issue where the reorder plugin would not create gaps See merge request poezio/poezio!99 | |||
2020-05-12 | Fix an issue where the reorder plugin would not create gaps | mathieui | |
2020-05-12 | Merge branch 'fix-composing-tab-state-case' into 'master' | Maxime Buquet | |
Fix a bug when the value of show_composing_chat_state is not lowercase See merge request poezio/poezio!98 | |||
2020-05-12 | Fix a bug when the value of show_composing_chat_state is not lowercase | mathieui | |
2020-05-12 | Merge branch 'feature/unique-prefix-tab-names' into 'master' | mathieui | |
Unique prefix tab names Closes #3525 See merge request poezio/poezio!94 | |||
2020-05-12 | Add keyboard action to go to room by unique prefix | Jonas Schäfer | |
This is especially useful in combination with the newly introduced `unique_prefix_tab_names` config option. It has no default binding. | |||
2020-05-12 | Add option to show only the unique prefix of tab names | Jonas Schäfer | |
When the set of tabs used fluctuate, the memory of which number belongs to which chat becomes difficult to work with. Non-numbers can be used to navigate tabs with `/win`, however, it is difficult to know which letters are required to select a certain tab. This option introduces a display mode for tab names where only the unique prefix of the tab name is shown, saving space and providing with a minimal string which can be used with `/win`. | |||
2020-05-12 | Add /wup command | Jonas Schäfer | |
The `/wup` command selects a tab by the prefix of its name only. The `/win` will do a substring match based on the first tab going from the current tab which matches the substring. This can be confusing, especially since `/win` matches on different types of tab "names" not only on the name which is shown in the info bar by default. The `/wup` command exclusively matches based on the prefix of the tab.name string. This has the advantage that it is consistent, deterministic and independent of the currently selected tab. | |||
2020-05-12 | Add function to find a tab by unique prefix | Jonas Schäfer | |
2020-05-12 | Add function to calculate unique prefix of two strings | Jonas Schäfer | |
2020-05-12 | Merge branch 'upload-exceptions' into 'master' | Maxime Buquet | |
plugins/upload: handle more exceptions See merge request poezio/poezio!97 | |||
2020-05-12 | plugins/upload: handle more exceptions | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-12 | Merge branch 'muc-barejid-info' into 'master' | Maxime Buquet | |
poezio.core.handlers: Treat MUC Barejid message as info See merge request poezio/poezio!96 | |||
2020-05-12 | poezio.core.handlers: Treat MUC Barejid message as info | Maxime “pep” Buquet | |
Signed-off-by: Maxime “pep” Buquet <pep@bouah.net> | |||
2020-05-10 | Merge branch 'move-deny-remove-global-scope' into 'master' | Maxime Buquet | |
Move /deny and /remove global scope See merge request poezio/poezio!93 | |||
2020-05-10 | Move /deny and /remove to global scope as well | mathieui | |