Results 272 comments of PalmerAL

It looks like the solution Electron eventually decided on is this: https://github.com/electron/electron/pull/33554/files Unfortunately, we store browsing history using IndexedDB, which I think would be part of `sessionData`. We don't want...

Building from source can be kind of a pain though, so if there are ways we can make it easier to avoid that it might be worth looking into (and...

That's strange! When you exit Min, is it actually closing fully - are there any remaining Min processes listed in Task manager? Is the `\AppData\Roaming` folder on a network drive...

I'm using the same OS with ARM and it works for me, so there's something else going on. If you run `./node_modules/bin/electron` directly, does it work? How about if you...

It seems that when JS is disabled, calling `setTimeout` in the preload script doesn't work - if I add this code, I only see "before" in the console, which is...

Wouldn't that block the rest of the preload (and potentially the whole page) while it's running? I think my preference would be to just run the text extraction immediately if...

It looks like requestAnimationFrame works, so we could do something hacky like this: ``` function iter(count = 0) { if (count === 200) { console.log("dispatch") } requestAnimationFrame(() => {iter(count +...

That's OK, the existing timeout is approximate anyways.

There was a related discussion recently in this issue: #2429 Chromium leaves this disabled by default, which Electron (and therefore us) inherit. We could override their decision and enable the...

The translation feature has always used LibreTranslate (we run our own instance: https://translate-api.minbrowser.org/). It would be super cool to make it run offline, probably by using the same models that...