Linking:
Because that patch is not going to happen any time soon…
…I am using DVJs (Dataview plugin)/DCJsx (Datacore plugin) single queries to get the currently used OS:
...
// Platform detection
const isWindows = navigator.platform.toLowerCase().includes('win');
console.log(`Platform detected: ${navigator.platform} (${isWindows ? "Windows" : "Linux/Other"})`);
...
…then based on where I’m at the results will be output based on ‘mtime’ on Windows and ‘date modified’ on Linux. Meaning I can update links on Windows to reflect on my queries and on Linux I do Python search and replaces.