sphh
sphh
Thank you so much for your great work, @jobisoft! Here are some more possible alternatives: - https://mailredirect.sourceforge.io/installation.html → https://addons.thunderbird.net/en-GB/thunderbird/addon/simple-mail-redirection/ - https://addons.thunderbird.net/en-GB/thunderbird/addon/toggle-quotes/ → https://addons.thunderbird.net/thunderbird/addon/quotecolors/ The only functionality I really miss is...
ExchangeCalendar made it to TB60, but does not work for TB 68. So I have again depend on TbSync … @jobisoft: Do you already know if this will be planned?...
I came here, because I was looking for an updated AppImage. Is one already available? Thanks.
At the moment pasting into Thunderbird's (102.2.2) plain text _and_ HTML editor (even with non-ASCII characters) works for me with the following settings on Linux, X-Windows (see #455): ```yaml filter_class:...
For a (lengthy) investigations into html vs. plain text editors, please see #455. And you are right, it only occurs in the html editor, but not the plain text editor...
You are absolutely right (https://github.com/espanso/espanso/issues/455#issuecomment-769297734): > If xclip could support multiple paste formats (last time I searched it wasn't clear how to do it), we could instruct espanso to copy...
I just ran into the same problem: I scan the notes with `OpenNoteScanner`, transfer the `.jpg` files to my computer and use [img2pdf](https://pypi.org/project/img2pdf/) to convert them to pdfs. `img2pdf` complains...
Currently I use 2, but would like to have a proper singularity. If 1. is possible, that would be great. What would `uk` look like if `d→0`? Is this limes...
I replaced line 452 ```python3 uk[i] = sum(cds[0:i + 1]) / d ``` with ```python3 try: uk[i] = sum(cds[0:i + 1]) / d except ZeroDivisionError: if sum(cds[0:i + 1]) ==...
I have not looked into the code more closely, but I wanted to implement it strictly according to @portnov! If `sum(cds[0:1 + 1])` is always `0` whenever `d==0`, my approach...