electron-about-window
Advanced tools
Comparing version 1.15.1 to 1.15.2
@@ -0,1 +1,9 @@ | ||
<a name="v1.15.1"></a> | ||
# [v1.15.1](https://github.com/rhysd/electron-about-window/releases/tag/v1.15.1) - 25 Oct 2021 | ||
- Fix the type definitions file for TypeScript is outdated (thanks @h3poteto, #70) | ||
[Changes][v1.15.1] | ||
<a name="v1.15.0"></a> | ||
@@ -67,2 +75,3 @@ # [v1.15.0](https://github.com/rhysd/electron-about-window/releases/tag/v1.15.0) - 02 Oct 2021 | ||
[v1.15.1]: https://github.com/rhysd/electron-about-window/compare/v1.15.0...v1.15.1 | ||
[v1.15.0]: https://github.com/rhysd/electron-about-window/compare/v1.14.0...v1.15.0 | ||
@@ -69,0 +78,0 @@ [v1.14.0]: https://github.com/rhysd/electron-about-window/compare/v1.13.4...v1.14.0 |
{ | ||
"name": "electron-about-window", | ||
"version": "1.15.1", | ||
"version": "1.15.2", | ||
"description": "'About App' window for Electron application", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -1,2 +0,36 @@ | ||
/// <reference types="electron" /> | ||
export interface LicenseEntry { | ||
type: string; | ||
url: string; | ||
} | ||
export interface PackageJson { | ||
productName?: string; | ||
description?: string; | ||
homepage?: string; | ||
license?: string | LicenseEntry; | ||
bugs?: { | ||
url: string; | ||
}; | ||
} | ||
export interface AboutWindowInfo { | ||
icon_path: string; | ||
product_name?: string; | ||
copyright?: string; | ||
homepage?: string; | ||
description?: string; | ||
package_json_dir?: string; | ||
about_page_dir?: string; | ||
license?: string; | ||
bug_report_url?: string; | ||
css_path?: string | string[]; | ||
adjust_window_size?: boolean; | ||
win_options?: Electron.BrowserWindowConstructorOptions; | ||
open_devtools?: boolean; | ||
use_inner_html?: boolean; | ||
bug_link_text?: string; | ||
use_version_info?: boolean | [string, string][]; | ||
show_close_button?: string; | ||
app?: Electron.App; | ||
BrowserWindow?: typeof Electron.BrowserWindow; | ||
ipcMain?: Electron.IpcMain; | ||
} | ||
export default function openAboutWindow(info_or_img_path: AboutWindowInfo | string): Electron.BrowserWindow; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
35061
15
410