You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Before opening an issue, please search and see if it has already been raised.
Bug Report
Feature Request
Successfully reproduced against the latest version of NW.js?
Please use our mailing list or Gitter chatroom to ask questions. The issue tracker is only for bugs and feature requests, in English only. Please note that issues without a repro or code snippet are less likely to be resolved.
Current/Missing Behavior
The reopen event is never triggered.
Expected/Proposed Behavior
Each time the user clicks the Mac OS Dock icon of the application, the reopen event should be triggered, allowing the application to decide how to handle this event. This is because sometimes the app is minimized and sometimes it's hidden, so it may require different logic.
Run npm i and start it with npm start, then follow these steps:
click the close button of the window.
Then click the dock icon to reopen. It should reopen.
Close the window with close button.
Click the dock icon again.
These errors show in console, and the window is not reopened:
[69103:259:0216/194738.214409:ERROR:api_binding_hooks.cc(236)] Check failed: false. No callback found for the specified request ID.
[69103:259:0216/194738.843692:ERROR:api_binding_hooks.cc(236)] Check failed: false. No callback found for the specified request ID.
[69103:259:0216/194739.056158:ERROR:api_binding_hooks.cc(236)] Check failed: false. No callback found for the specified request ID.
[69103:259:0216/194739.236249:ERROR:api_binding_hooks.cc(236)] Check failed: false. No callback found for the specified request ID.
Quit the app completely
Edit package.json and downgrade nw to "^0.83.0"
Update modules with rm -rf node_modules && npm install nw --nwjs_build_type=sdk && npm i
Now version 83 should be installed. Repeat steps 1-4, the console errors in step 5 don't show anymore.
Edit package json to upgrade to 84, the console errors in 5 show again.
The text was updated successfully, but these errors were encountered:
Issue Type
Before opening an issue, please search and see if it has already been raised.
Bug Report
Feature Request
Successfully reproduced against the latest version of NW.js?
Current/Missing Behavior
The reopen event is never triggered.
Expected/Proposed Behavior
Each time the user clicks the Mac OS Dock icon of the application, the reopen event should be triggered, allowing the application to decide how to handle this event. This is because sometimes the app is minimized and sometimes it's hidden, so it may require different logic.
Additional Info
Run
npm i
and start it withnpm start
, then follow these steps:rm -rf node_modules && npm install nw --nwjs_build_type=sdk && npm i
The text was updated successfully, but these errors were encountered: