~tardypad

https://tardypad.me

Trackers

~tardypad/wee-most

Last active 5 months ago

~tardypad/plott

Last active 2 years ago

~tardypad/jargon-gemini

Last active 2 years ago

#185 Maildir new messages in subfolders not displayed in dirlist at start a month ago

Ticket created by ~tardypad on ~rjarry/aerc

This follows the mailing list "discussion" https://lists.sr.ht/~rjarry/aerc-discuss/%3CCSLCE7V6PBJA.THVFF075ARCT%40walnut%3E#%3CCUCSBPWQPMTR.1YRS06PUGJK6G@walnut%3E.

When using a maildir account, at startup, unread "current" messages in subfolders (in maildir terms, the ones within the "cur" directories that contains mails "seen" by aerc before) are displayed correctly. However completely new (so also unread) messages in subfolders (in maildir terms, the ones within the "new" directories) are not displayed.

#10 Display file download result to user 5 months ago

Comment by ~tardypad on ~tardypad/wee-most

Damien Tardy-Panis referenced this ticket in commit d2c5a3c.

REPORTED RESOLVED IMPLEMENTED

#10 Display file download result to user 6 months ago

Comment by ~tardypad on ~tardypad/wee-most

A failure to download a file is already informed to the user via an error message in the server buffer

#1 Remove trailing newlines from post messages 6 months ago

Comment by ~tardypad on ~tardypad/wee-most

Damien Tardy-Panis referenced this ticket in commit 76eacca.

REPORTED RESOLVED FIXED

#1 Remove trailing newlines from post messages 6 months ago

Comment by ~tardypad on ~tardypad/wee-most

Actually the web client also:

  • trims leading newlines
  • replaces multiple consecutive newlines in the text with a single one

We'll just trim leading and trailing newlines, which can more easily happen by mistake. Consecutives newlines inside the text are most likely intentional.

#12 DM channel with unread messages is not added to hotlist after load 6 months ago

Comment by ~tardypad on ~tardypad/wee-most

This is now fixed with the new way to detect unread posts and the refactor of fetching them. (see commits https://git.sr.ht/~tardypad/wee-most/commit/733de2ab605c8c461e0aa6516b5e4d3ee22c59ae and https://git.sr.ht/~tardypad/wee-most/commit/232521b436d3dc2bc726996b84c9f075dd15e354)

Previously the initial status was set to "read" for all posts coming from posts/unread?limit_after=1 and "unread" for the ones after. But actually in the first call https://api.mattermost.com/#tag/posts/operation/GetPostsAroundLastUnread limit_after is "Number of posts after and including the oldest unread post" so the status was set wrong for that oldest unread item.

The bug was actually present in all types of channels but was more visible in DM channels where there is less noise.

REPORTED RESOLVED CLOSED

#28 Fix message rendering when attachment is modified 7 months ago

bug added by ~tardypad on ~tardypad/wee-most

#28 Fix message rendering when attachment is modified 7 months ago

Ticket created by ~tardypad on ~tardypad/wee-most

render_message function assumes that the attachments of a message cannot be modified and thus that they will use the same number of lines as before when a message is edited. But this is not true as for example a poll will update its attachment with the results (which can then become longer than initially)

We then need to remove this assumption and refactor this function.

#27 Store and reuse login token 7 months ago

research added by ~tardypad on ~tardypad/wee-most

#27 Store and reuse login token 7 months ago

Ticket created by ~tardypad on ~tardypad/wee-most

Check if we can safely store the login token for future reuse instead of login in and login out every time