Zagreb, Croatia
From Ivan Habunek to ~ihabunek/toot-discuss
There is now a contribution guide available at: https://github.com/ihabunek/toot/blob/master/CONTRIBUTING.md Comments and suggestions welcome. -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
I changed the name to TOOT_POST_VISIBILITY. In the future I plan to support overriding any commandline option by settings TOOT_<command>_<option> variable so this change makes it compatible with future plans. -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Thanks! -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Thanks! -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Thanks! -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Thanks, applied! -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Hi Daniel, This patch does not apply cleanly: error: corrupt patch at line 114 Did you use git to send the email? Here's a good tutorial: https://git-send-email.io/ -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
On Sun, 27 Nov 2022, at 04:25, Daniel Schwarz wrote: > 'm' command to view images is now surfaced in help and on the status > detail page. Also, an in-console image viewer "chafa" is now supported. > (Try it; it's surprisingly good, and supports pixel accurate image display > if you use kitty or xterm) https://github.com/hpjansson/chafa Thanks, but I'd prefer to leave this until I've added user settings. Regards, -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Thanks, merged. -- Ivan
From Ivan Habunek to ~ihabunek/toot-discuss
Hi Daniel, This patch does not apply on master. I already merged the version with the following code containing the bug: elif key in (',') The problem is that (',') resolves to just ',' in Python. If we wanted a tuple with a single element we'd have to add a trailing comma (',',). But it's best to just replace it with: elif key == ','