36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|     <head>
 | |
|         <meta charset="UTF-8">
 | |
|         <title>Updating app</title>
 | |
| 
 | |
|         <script type="application/javascript">
 | |
|             const exports = {};
 | |
|         </script>
 | |
|         <script src="index.js" type="application/javascript"></script>
 | |
|         <link rel="stylesheet" href="index.css">
 | |
|     </head>
 | |
|     <body>
 | |
|         <div class="page info">
 | |
|             <div class="state">Downloading update. Please wait!</div>
 | |
|             <progress class="progress" value="0" max="100"></progress>
 | |
|         </div>
 | |
|         <div class="page error">
 | |
|             <div class="message"></div>
 | |
|         </div>
 | |
|         <div class="page confirm-restart">
 | |
|             Download succeeded.<br>
 | |
|             Update installation requires client restart!<br>
 | |
|             Please ensure that <b>all instances</b> are closed!<br>
 | |
|             If not this app would kill them!<br>
 | |
|             <button class="button-execute">Execute update</button>
 | |
|         </div>
 | |
|         <div class="page config-update">
 | |
|             Update available.<br>
 | |
|             Current version: <a class="current-version"></a><br>
 | |
|             Target version: <a class="target-version"></a><br>
 | |
|             <button class="button-update">update</button>
 | |
|             <button class="button-cancel">cancel</button>
 | |
|         </div>
 | |
|     </body>
 | |
| </html> |