Marcel Blum

Results 107 comments of Marcel Blum
trafficstars

Further to what @ash0x0 asked, can you provide pics of the keyboard you are seeing this on and details on keyboard model? (Is it Apple official? 3rd party? Built into...

this is avoided if you load iohook in the renderer process instead of main.

Sounds like security restrictions, try running your packaged electron app (or dev electron) as administrator and see if the same events are captured that way.

I have an Electron 12 project that uses iohook 0.9.3 and when I run the packaged app on Win 10 alongside latest Chrome I can't reproduce this problem *unless I...

That's really odd, I can only guess that Chrome was installed in some particular way that is making that happen, so maybe just try uninstalling/reinstalling. Keep in mind even a...

@chevonc it works fine if you build manually for electron 15. The only issue is that prebuilds are not provided.

Check the docs for supported targets, Node 16 is not yet supported https://wilix-team.github.io/iohook/installation.html

For most Nexus components the `change` event handler allows you to check `this.clicked` to determine whether the value change happened from a direct user interaction or not. You can use...

Well this works around the issue but I don't recommend it 🤷‍♂️ 😈 ```js const audify = require("audify"); webContents.forcefullyCrashRenderer(); webContents.reload(); //... const audify = require("audify"); //no crash, because a new...

I've found that the crashes on reload are eliminated if I comment out the following lines: https://github.com/almoghamdani/audify/blob/6761e1259212948d4b6333106da654f366175e41/src/rt_audio.cpp#L109-L110 https://github.com/almoghamdani/audify/blob/6761e1259212948d4b6333106da654f366175e41/src/opus_decoder.cpp#L11-L12 https://github.com/almoghamdani/audify/blob/6761e1259212948d4b6333106da654f366175e41/src/opus_encoder.cpp#L13-L14 But otherwise the lib continues to work fine AFAICT (note: have...