Maksim Kalinin

Results 15 comments of Maksim Kalinin

Perfect! Let me know if you would like me to help, otherwise the issue can be considered closed.

> @MaximKalinin have you given your app permission to screen record? Yes, I did.

I also faced the problem. Apart from what have been said, I can add that using more meaningful action type (for example, `'START-REDUX-ASYNC-INITIAL-STATE'`) can help understand the intention later: ```...

> What is the impact of the $2 argument not working as it previously was? I am trying to access files that are placed inside the installed app folder. For...

> I still think it's expected behavior from my quick research Does it mean that all the previous versions were working incorrectly, passing `/Applications` as a second argument?

What is the manual step for generating .pkg file? If I try `pkgbuild --root --scripts --component-plist` I will get the expected `/Applications` as a second argument. > If you look...

Ok, I think I found the real issue. It actually runs the postinstall script twice. Once for the application and once for the component specified in plist file. This seems...

Scripts were working fine for me, you can see it in the test repository: https://github.com/MaximKalinin/electron-builder-test.

Do you mean creating NSIS installer without using electron-builder? If that is the case, there's an official website with some examples and tutorials: https://nsis.sourceforge.io/Main_Page.

> i stumbled upon this: https://github.com/electron-userland/electron-builder-binaries/releases/download/nsis-3.0.4.1/nsis-3.0.4.1.7z but it seems like its not it since its detected by avast antivirus Yes, I think this is what electron-builder uses: https://github.com/electron-userland/electron-builder/blob/fa6fc16040a93c6ee751a7a27ab6eeb1dbdd31a7/packages/app-builder-lib/src/targets/nsis/nsisUtil.ts#L38 https://github.com/electron-userland/electron-builder/blob/fa6fc16040a93c6ee751a7a27ab6eeb1dbdd31a7/packages/app-builder-lib/src/binDownload.ts#L18-L40 There's...