New
Neutralinojs v6.5.0 released!
What's new
Core: events
- New window events:
windowMinimize,windowRestore,windowMaximize,windowFullScreenEnter, andwindowFullScreenExit
API: window
- Add
window.setBorderless(bool)to toggle borderless mode while the Neutralinojs app is running.
Configuration
- Add
modes.chrome.browserBinaryoption to set custom browser binary path under the chrome mode. If this field is specified, the framework will try to launch Chrome from there. If it fails, the framework will initiate the Chrome binary search as usual:
// cross-platform
"browserBinary": "/path/to/chrome/bin"
// platform-specific path
"browserBinaryLinux": "/usr/bin/google-chrome",
"browserBinaryDarwin": "/Applications/Google Chrome.app",
"browserBinaryWindows": "C:\\Programs\\Google Chrome\\chrome.exe"
// cross-platform (with path constants)
"browserBinary": "${NL_OSDATAPATH}/chrome/bin"
"browserBinaryWindows": "${NL_OSDOWNLOADSPATH}/chrome.exe"
- Add the option to activate DPI-aware sizing based on the operating system's display scale factor.