2

'update-available'에서 발생하는 상황을 사용자가 제어 할 수 있기를 바랍니다. 내가 여기서 무엇을해도 자동 업데이트 프로그램이 업데이트를 다운로드하는 것처럼 보입니다.전자 자동 업데이트 : 'update-available'에서 사용자가 다운로드를 시작했습니다.

어떻게하면 자동 업데이트를 계속 진행할 수 있습니까?

autoUpdater 
    .on('error', function(error){ 
     // [Log and show dialog] ... 
    }) 
    .on('update-available', function(e) { 
     // [Confirmation dialog] ... 
     if (downloadConfirmation === 0) { 
      return; 
     } 
    }) 
    .on('update-downloaded', function (event) { 
    // [Restart now? Dialog] ... 
     if (index === 1) return; 
     force_quit = true; 
     autoUpdater.quitAndInstall(); 
    }); 

autoUpdater.checkForUpdates(); 

답변