Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Raise error if both error and response_code is missing | Trygve Aaberge | 2024-02-18 | 1 | -0/+9 |
| | | | | | I experienced a KeyError on response_code and not sure when that could happen, so log the output to check it if it happens again. | ||||
* | Add unread buffers to hotlist on connect | Trygve Aaberge | 2024-02-18 | 5 | -8/+29 |
| | |||||
* | Use notify_private tag in private buffers | Trygve Aaberge | 2024-02-18 | 2 | -7/+36 |
| | |||||
* | Mark as read when switching away from buffer | Trygve Aaberge | 2024-02-18 | 8 | -5/+112 |
| | |||||
* | Update message_json dict rather than replacing it | Trygve Aaberge | 2024-02-18 | 1 | -1/+3 |
| | | | | | In the message_replied event, the message json doesn't include all properties, so `subscribed` and others were removed when we replaced it. | ||||
* | Mark buffer as read when conversation/thread is marked | Trygve Aaberge | 2024-02-18 | 4 | -0/+43 |
| | |||||
* | Set unread marker after last read message | Trygve Aaberge | 2024-02-18 | 1 | -0/+2 |
| | |||||
* | Correctly tag unread messages from history | Trygve Aaberge | 2024-02-18 | 4 | -7/+28 |
| | | | | | | Now notify tags are set based on last_read so both read and unread messages gets the correct tags irregardless if they come from history or websocket. | ||||
* | Split users.info into multiple requests when necessary | Trygve Aaberge | 2024-02-18 | 2 | -2/+56 |
| | | | | | | If you try to request several thousand users in one request (not sure exactly what the limit is), it just returns HTTP 500, so split it into multiple requests with a max of 1000 users per request. | ||||
* | Get all reaction users in one request | Trygve Aaberge | 2024-02-18 | 2 | -2/+15 |
| | |||||
* | Support overriding display_reaction_nicks per buffer | Trygve Aaberge | 2024-02-18 | 3 | -2/+10 |
| | |||||
* | Prefix private conversations with & | Trygve Aaberge | 2024-02-18 | 1 | -2/+4 |
| | |||||
* | Open conversations in sorted order by name | Trygve Aaberge | 2024-02-18 | 2 | -6/+31 |
| | |||||
* | Add an option for what to replace space in nicks with | Trygve Aaberge | 2024-02-18 | 2 | -2/+11 |
| | |||||
* | Unfurl refs in text blocks | Trygve Aaberge | 2024-02-18 | 1 | -8/+18 |
| | |||||
* | Check that script loads in WeeChat in CI | Trygve Aaberge | 2024-02-18 | 1 | -13/+9 |
| | |||||
* | Include cookie when making the websocket connection | Trygve Aaberge | 2024-02-18 | 1 | -0/+1 |
| | | | | Slack began to require this for xoxc tokens today. | ||||
* | Don't add to nicklist for ims | Trygve Aaberge | 2024-02-18 | 1 | -2/+4 |
| | |||||
* | If a message has a user, use that even though it's a bot_message | Trygve Aaberge | 2024-02-18 | 3 | -19/+19 |
| | | | | | | | | | Messages from Slackbot apparently have both a user and a bot_id, and sometimes have the subtype bot_message, other times not. However, the bot_id is B01 which gives bot_not_found when trying to look it up. I see that the web client shows it with the user profile, and doesn't show the message as a bot message, so do that here as well to match it and avoid the invalid bot_id. | ||||
* | Highlight messages with mentions | Trygve Aaberge | 2024-02-18 | 2 | -18/+82 |
| | |||||
* | Add/remove nicks from nicklist when messages are printed | Trygve Aaberge | 2024-02-18 | 3 | -14/+69 |
| | | | | | | This ensures that all nicks that have typed in the channel and still is in it are in the nicklist, so they are not colored as offline. It also removes nicks from the nicklist when they leave a channel. | ||||
* | Support typing notices for thread buffers | Trygve Aaberge | 2024-02-18 | 3 | -19/+36 |
| | |||||
* | Fetch thread replies when receiving thread message | Trygve Aaberge | 2024-02-18 | 3 | -20/+35 |
| | | | | | | This is done so we can know if we should include a message hash when completing thread hashes, and it also has the benefit of eliminating the loading time when opening thread buffers. | ||||
* | Make sure thread prefix is rendered even though parent isn't fetched | Trygve Aaberge | 2024-02-18 | 2 | -6/+9 |
| | |||||
* | Support opening a debug buffer with all ws messages | Trygve Aaberge | 2024-02-18 | 2 | -2/+50 |
| | |||||
* | Support thread hash completion | Trygve Aaberge | 2024-02-18 | 2 | -10/+76 |
| | |||||
* | Support thread buffers | Trygve Aaberge | 2024-02-18 | 8 | -304/+525 |
| | |||||
* | Fetch replies in conversation when display_thread_replies is on | Trygve Aaberge | 2024-02-18 | 3 | -9/+58 |
| | |||||
* | Remove own nick from mpim name and sort names | Trygve Aaberge | 2024-02-18 | 1 | -2/+6 |
| | |||||
* | Unescape &, < and > in message text field | Trygve Aaberge | 2024-02-18 | 1 | -1/+1 |
| | |||||
* | Show number of reactions also when display_reaction_nicks is on | Trygve Aaberge | 2024-02-18 | 1 | -2/+4 |
| | |||||
* | Only take in limit, not pages in api methods | Trygve Aaberge | 2024-02-18 | 2 | -14/+13 |
| | | | | | | Instead of having to supply both a limit and the number of pages, change it to only take in a limit, and determine the number of pages automatically. | ||||
* | Use hook_url for http requests when available | Trygve Aaberge | 2024-02-18 | 3 | -13/+56 |
| | |||||
* | Use None instead of 0 for missing http code in HttpError | Trygve Aaberge | 2024-02-18 | 2 | -2/+2 |
| | |||||
* | Create a readonly messages property instead of get_message | Trygve Aaberge | 2024-02-18 | 2 | -10/+10 |
| | |||||
* | Render tombstone messages as deleted messages | Trygve Aaberge | 2024-02-18 | 1 | -10/+11 |
| | |||||
* | Display the correct thread messages in channels | Trygve Aaberge | 2024-02-18 | 1 | -2/+10 |
| | | | | | | Both when filling from history and on new messages, only display thread messages in channels if they're either a thread broadcast or if the option to display thread messages in channels is enabled. | ||||
* | Show prefix for thread broadcast messages | Trygve Aaberge | 2024-02-18 | 2 | -1/+17 |
| | |||||
* | Improve typing in task.py | Trygve Aaberge | 2024-02-18 | 1 | -6/+7 |
| | |||||
* | Support showing thread replies in the channel | Trygve Aaberge | 2024-02-18 | 3 | -7/+65 |
| | |||||
* | Fetch usergroups at startup if edgeapi isn't available | Trygve Aaberge | 2024-02-18 | 2 | -0/+11 |
| | |||||
* | Split edgeapi out to separate class | Trygve Aaberge | 2024-02-18 | 4 | -44/+54 |
| | | | | | Since this isn't available for OAuth tokens it's good to have an easy way to see where it's used. | ||||
* | Define __bool__ in WeeChatOption | Trygve Aaberge | 2024-02-18 | 5 | -13/+12 |
| | |||||
* | Remove history render time logging | Trygve Aaberge | 2024-02-18 | 1 | -2/+0 |
| | |||||
* | Render thread suffix in messages | Trygve Aaberge | 2024-02-18 | 3 | -5/+90 |
| | |||||
* | Support rendering attachments | Trygve Aaberge | 2024-02-18 | 3 | -13/+216 |
| | |||||
* | Support rendering huddles | Trygve Aaberge | 2024-02-18 | 3 | -2/+43 |
| | |||||
* | Support rendering files | Trygve Aaberge | 2024-02-18 | 3 | -10/+64 |
| | |||||
* | Rename add_message and add some TODOs | Trygve Aaberge | 2024-02-18 | 4 | -2/+5 |
| | |||||
* | Use blocks to render messages | Trygve Aaberge | 2024-02-18 | 3 | -12/+305 |
| |