graceful-updater 1.1.1-beta.1 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.en.md +1 -0
- package/README.md +1 -0
- package/package.json +2 -2
package/README.en.md
CHANGED
@@ -104,6 +104,7 @@ electronUpdator.on(EventType.UPDATE_DOWNLOAD_PROGRESS, (data) => {
|
|
104
104
|
| logger | Object | No | Log method | `console` |
|
105
105
|
| productName | String | Yes | Application Name | |
|
106
106
|
| autoDownload | String | No | Whether to download automatically | false |
|
107
|
+
| getWindowsHelperExeDir | Function | No | Windows helper directory | false |
|
107
108
|
|
108
109
|
|
109
110
|
### UpdateInfo
|
package/README.md
CHANGED
@@ -103,6 +103,7 @@ electronUpdator.on(EventType.UPDATE_DOWNLOAD_PROGRESS, (data) => {
|
|
103
103
|
| logger | Object | 非必须 | 日志 | `console` |
|
104
104
|
| productName | String | 必须 | 应用完整名称 | |
|
105
105
|
| autoDownload | String | 非必须 | 是否自动下载 | false |
|
106
|
+
| getWindowsHelperExeDir | Function | 非必须 | Windows 下 helper 目录 | false |
|
106
107
|
|
107
108
|
|
108
109
|
### UpdateInfo
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "graceful-updater",
|
3
|
-
"version": "1.1.1
|
3
|
+
"version": "1.1.1",
|
4
4
|
"description": "graceful-updater is a software updator management solution for Electron applications, It is convenient to complete full software update and dynamic update.",
|
5
5
|
"scripts": {
|
6
6
|
"build": "sh ./build.sh",
|
@@ -25,7 +25,7 @@
|
|
25
25
|
},
|
26
26
|
"dependencies": {
|
27
27
|
"eventemitter3": "^4.0.0",
|
28
|
-
"graceful-updater-windows-helper": "1
|
28
|
+
"graceful-updater-windows-helper": "1",
|
29
29
|
"lodash": "4",
|
30
30
|
"moment": "2",
|
31
31
|
"nanoid": "^3.3.4",
|