From 95700d5d3db1ea9f87112bc73125e0fa4acac882 Mon Sep 17 00:00:00 2001 From: devance Date: Sat, 16 Mar 2024 01:07:03 +0530 Subject: [PATCH] fix: opposite event description in blog --- blog/electron-18.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/electron-18.md b/blog/electron-18.md index 8e92081e..d955182f 100644 --- a/blog/electron-18.md +++ b/blog/electron-18.md @@ -39,7 +39,7 @@ Additionally, Electron has changed supported versions from latest three versions - Removed the old `BrowserWindowProxy`-based implementation of `window.open`. This also removes the `nativeWindowOpen` option from `webPreferences`. [#29405](https://github.com/electron/electron/pull/29405) - Added 'focus' and 'blur' events to `WebContents`. [#25873](https://github.com/electron/electron/pull/25873) - Added Substitutions menu roles on macOS: `showSubstitutions`, `toggleSmartQuotes`, `toggleSmartDashes`, `toggleTextReplacement`. [#32024](https://github.com/electron/electron/pull/32024) -- Added `first-instance-ack` event to the `app.requestSingleInstanceLock()` flow, so that users can pass some data back from the second instance to the first instance. [#31460](https://github.com/electron/electron/pull/31460) +- Added a `first-instance-ack` event to the `app.requestSingleInstanceLock()` flow, allowing users to seamlessly transmit data from the first instance to the second instance. [#31460](https://github.com/electron/electron/pull/31460) - Added support for more color formats in `setBackgroundColor`. [#33364](https://github.com/electron/electron/pull/33364) See the [18.0.0 release notes](https://github.com/electron/electron/releases/tag/v18.0.0) for a full list of new features and changes.