hardware-example 1.2.0-alpha.24 → 1.2.0-alpha.26
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/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "hardware-example",
|
|
3
3
|
"productName": "HardwareExample",
|
|
4
4
|
"executableName": "onekey-hardware-example",
|
|
5
|
-
"version": "1.2.0-alpha.
|
|
5
|
+
"version": "1.2.0-alpha.26",
|
|
6
6
|
"author": "OneKey",
|
|
7
7
|
"description": "End-to-end encrypted workspaces for teams",
|
|
8
8
|
"main": "dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"ts:check": "yarn tsc --noEmit"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@onekeyfe/hd-transport-electron": "1.2.0-alpha.
|
|
25
|
+
"@onekeyfe/hd-transport-electron": "1.2.0-alpha.26",
|
|
26
26
|
"@stoprocent/noble": "2.3.16",
|
|
27
27
|
"debug": "4.3.4",
|
|
28
28
|
"electron-is-dev": "^3.0.1",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"**/node-gyp": "^10.0.1",
|
|
46
46
|
"tmp": "0.2.4"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "1401fef3eb93f5a83ed5e8375b99181b7aaa6054"
|
|
49
49
|
}
|
package/public/icons/512x512.png
CHANGED
|
Binary file
|
|
Binary file
|
package/public/icons/icon.png
CHANGED
|
Binary file
|
package/src/index.ts
CHANGED
|
@@ -18,7 +18,7 @@ autoUpdater.logger = log;
|
|
|
18
18
|
const isMac = process.platform === 'darwin';
|
|
19
19
|
const isWin = process.platform === 'win32';
|
|
20
20
|
|
|
21
|
-
const APP_NAME = 'OneKey
|
|
21
|
+
const APP_NAME = 'OneKey Example';
|
|
22
22
|
app.name = APP_NAME;
|
|
23
23
|
let mainWindow: BrowserWindow | null;
|
|
24
24
|
|