@@ -4,12 +4,13 @@ import { t } from 'i18next'
4
4
5
5
import { icon } from './constants'
6
6
// import { showDialogBoxModalAuto } from './dialog/dialog'
7
- import { logError , LogPrefix } from './logger/logger'
7
+ import { logError , LogPrefix , logInfo } from './logger/logger'
8
8
9
9
autoUpdater . autoDownload = false
10
10
autoUpdater . autoInstallOnAppQuit = false
11
11
12
12
autoUpdater . on ( 'update-available' , async ( ) => {
13
+ logInfo ( 'App update is available' )
13
14
const { response, checkboxChecked } = await dialog . showMessageBox ( {
14
15
title : t ( 'box.info.update.title' , 'HyperPlay' ) ,
15
16
message : t ( 'box.info.update.message' , 'There is a new Version available!' ) ,
@@ -23,13 +24,17 @@ autoUpdater.on('update-available', async () => {
23
24
buttons : [ t ( 'box.no' ) , t ( 'box.yes' ) ]
24
25
} )
25
26
if ( checkboxChecked ) {
26
- shell . openExternal ( 'https://github.com/G7DAO/HyperPlay/releases' )
27
+ shell . openExternal (
28
+ 'https://github.com/HyperPlay-Gaming/hyperplay-desktop-client/releases'
29
+ )
27
30
}
28
31
if ( response === 1 ) {
29
32
autoUpdater . downloadUpdate ( )
30
33
}
31
34
} )
35
+
32
36
autoUpdater . on ( 'update-downloaded' , async ( ) => {
37
+ logInfo ( 'App update is downloaded' )
33
38
const { response } = await dialog . showMessageBox ( {
34
39
title : t ( 'box.info.update.title-finished' , 'Update Finished' ) ,
35
40
message : t (
0 commit comments