hxelectron
hxelectron copied to clipboard
Haxe type definitions for electron
TravisCI should test the demo application using a Virtual Display Server: https://github.com/electron/electron/blob/master/docs/tutorial/testing-on-headless-ci.md
Introduced with electron v14.0.0. https://github.com/tong/hxelectron/blob/0ba07d000fe33a4a76ba4fd633ae411e0cb50ca4/src/electron/main/SystemPreferences.hx#L101
I came across a missing `static` definition in `InAppPurchase.hx`. But since I know everything is generated based on the electron-api.json I don't know if it makes sense to add these...
For example:https://www.electronjs.org/docs/api/app#appgetfileiconpath-options
These types got introduced in electron v9.1.0 with broken names.
Hey there after upgrading the latest version of hxelectron I'm getting the following error: Science.js:7539 Uncaught TypeError: Cannot read property 'TouchBarButton' of undefined It seems to be a result of...
Used by electron.main.DownloadItem. Currently manually patched in ElectronAPI generator.
Using electron.Screen throws following error at runtime: `Error: Cannot require "screen" module before app is ready` But how can we prevent loading the screen module before the App.ready event ?
Electron 3.0.0-beta.3 added methods to electron.Screen (electron/electron#12879): - electron.Screen.screenToDipRect - electron.Screen.dipToScreenRect … which have BrowserWindow as first parameter which is only availble in the main process (while Screen is available...