boblund

Results 6 comments of boblund

I have a solution using an existing binary that I use described [here](https://github.com/boblund/m1wrtc).

I fixed the above by downgrading the required colorette dependency to 1.2.0. A web search suggested that node 14 was required for the newer version of colorette. I then ran...

I tried the following: ``` let response = await Neutralino.os.getPath('downloads') + '/' + m3uName; response = await Neutralino.os.showSaveDialog('Save as', {defaultPath: response}); await Neutralino.filesystem.writeFile(response, out); ``` and got this dialogue It...

Hi, I'm using "version": "0.3.4". boblund

```npm i --install-strategy=nested pkg_name``` is the only way I have found that works consistently. This will result in the proper nested config in package-lock.json. Use ```npm i``` once you have...

Here's the code change ``` for (var i = 0; i < len; ++i) if( ReflectApply(listeners[i], this, args) === 'stopImmediatePropagation' ) break; ```