electron-about-window
Advanced tools
Comparing version 1.15.0 to 1.15.1
@@ -0,1 +1,10 @@ | ||
<a name="v1.15.0"></a> | ||
# [v1.15.0](https://github.com/rhysd/electron-about-window/releases/tag/v1.15.0) - 02 Oct 2021 | ||
- Support Electron 14+ by removing dependency of `remote` module | ||
- Update all dependencies to the latest | ||
[Changes][v1.15.0] | ||
<a name="v1.14.0"></a> | ||
@@ -58,2 +67,3 @@ # [v1.14.0](https://github.com/rhysd/electron-about-window/releases/tag/v1.14.0) - 09 Mar 2021 | ||
[v1.15.0]: https://github.com/rhysd/electron-about-window/compare/v1.14.0...v1.15.0 | ||
[v1.14.0]: https://github.com/rhysd/electron-about-window/compare/v1.13.4...v1.14.0 | ||
@@ -66,2 +76,2 @@ [v1.13.4]: https://github.com/rhysd/electron-about-window/compare/v1.13.3...v1.13.4 | ||
<!-- Generated by changelog-from-release --> | ||
<!-- Generated by https://github.com/rhysd/changelog-from-release --> |
{ | ||
"name": "electron-about-window", | ||
"version": "1.15.0", | ||
"version": "1.15.1", | ||
"description": "'About App' window for Electron application", | ||
"main": "src/index.js", | ||
"typings": "src/index.d.ts", | ||
"scripts": { | ||
@@ -7,0 +8,0 @@ "dep": "npm install", |
@@ -102,4 +102,4 @@ 'About This App' Window for [Electron](https://github.com/atom/electron) Apps | ||
| `app` | [app](https://www.electronjs.org/docs/latest/api/app) instance to use. This property is necessary only when using on renderer processes. **Optional** | Electron.App | | ||
| `BrowserWindow` | Constructor of [BrowserWindow](https://www.electronjs.org/docs/latest/api/browser-window) to use. This property is necessary only when using on renderer processes. **Optional** | Electron.App | | ||
| `ipcMain` | [ipcMain](https://www.electronjs.org/docs/latest/api/ipc-main) instance to use. This property is necessary only when using on renderer processes. **Optional** | Electron.App | | ||
| `BrowserWindow` | Constructor of [BrowserWindow](https://www.electronjs.org/docs/latest/api/browser-window) to use. This property is necessary only when using on renderer processes. **Optional** | Electron.BrowserWindow | | ||
| `ipcMain` | [ipcMain](https://www.electronjs.org/docs/latest/api/ipc-main) instance to use. This property is necessary only when using on renderer processes. **Optional** | Electron.IpcMain | | ||
@@ -106,0 +106,0 @@ **Note:** If you set `use_inner_html` to `true`, please ensure that contents don't contain any untrusted external input |
@@ -15,3 +15,4 @@ { | ||
"target": "es2015", | ||
"sourceMap": true | ||
"sourceMap": true, | ||
"declaration": true | ||
}, | ||
@@ -18,0 +19,0 @@ "include": [ |
34904
16
417