nazar322
nazar322
``` private string ConvertYouTubeXmlToSrtFormat(string ytSubtitles) { var expression = new Regex("(?.*?)", RegexOptions.Singleline); var matchedSubtitles = expression.Matches(ytSubtitles); if (matchedSubtitles.Count == 0) throw new Exception("Failed to extract subtitles"); var srtWriter = new...
I too had this problem. I managed to solve it. First of all, check if nothing has occupied port 9222. Run `netstat -ab` and see if there any processes listening...
> currently, electron have handle and invoke methods, wich provides async await calls > > // Renderer process > ipcRenderer.invoke('some-name', someArgument).then((result) => { > // ... > }) > >...
AutoUpdater.NET would be a perfect fit for me if not this. Is there some specific reason there is no method like `AutoUpdater.SetOwner` for the image? Skip... too bad...
I've gotten a similar issue, so I posted it here. What I did: 1. Copy files from `electron-builder-master\packages\app-builder-lib\templates\nsis` 2. Paste it to `build` folder of my Electron.NET app. 3. Change...
@GregorBiswanger still nor `Electron.Tray.OnClick` or `Electron.Tray.OnDoubleClick` does fire an event. Electron.CLI 23.6.1. How can I help to reproduce?

The interesting part is that you have to first call Show method, ONLY THEN AFTER YOU CAN SUBSCRIBE TO TRAY EVENTS! Thx to this beautiful if statement in the native...
Can someone please provide an example of `notarize` property in electron.manifest.json?
@gorsheninmv thanks!