What I’m trying to do
Trying to stop obsidian from updating automatically but all the suggested means fail (it keeps updating my installation from v1.5.3 to v1.5.8).
There is a bug related to the display of markdown tables when creating them in a dataview query result. The resulting table has all of it’s column values shifted one position to the right from the second row on , i.e. a table like this :
| A | B | C |
| --- | --- | --- |
| 11 | 12 | 13 |
| 21 | 22 | 23 |
will end up looking like this:
| A | B | C |
| --- | --- | --- |
| 11 | 12 | 13 |
| | 21 | 22 |
Things I have tried
I’ve tried removing the app and reinstalling several times from diffrent packages (snap, .deb, appimage) but ALL of them seem to have the 'Automatic updates ’ enabled by default and disabling does not seem to persis, so even if I manage to reinstall the version 1.5.3 and have a session in that version, after closing the app the 'Automatic updates ’ is on again and the version is back to 1.5.8. (also, with the snap installation, I’ve made sure to disable snaps autorefresh with sudo snap refresh --hold=forever obsidian
, to no avail)
Please if anyone could help me solve this problem I would be veeeery grateful, I have a ton of scripts relying on dataview queries that format markdown tables and if I cannot circumvent the automatic update I lose more than a year’s worth of query scripting …