forked from codeskyblue/electron-inno-auto-update
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1021 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Hello World!</title>
</head>
<body>
<h1>Hello World!</h1>
We are using node <script>document.write(process.versions.node)</script>,
Chrome <script>document.write(process.versions.chrome)</script>,
and Electron <script>document.write(process.versions.electron)</script>.
App version <script>document.write(require('electron').remote.app.getVersion())</script>.
<div>
<button id="check-update">Check for update</button>
<div id="update-downloaded" style="display: none">
Innobox will be updated after a restart.
<button id="quit-install">Update now</button>
<button id="later">Later</button>
<button id="changelog">Release notes</button>
</div>
<div id="update-not-avaliable" style="display: none">
There are no updates currently avaliable
<button id="close">Close</button>
</div>
</div>
<script src='index.js'></script>
</body>
</html>