(latestVersion: string)
| 17 | // Уведомление без установки: для выключенного автообновления и нового мажора, |
| 18 | // который требует осознанного перехода (миграция vault). |
| 19 | function notifyAboutUpdate(latestVersion: string) { |
| 20 | const lastNotifiedVersion = store.app.get( |
| 21 | 'notifications.lastNotifiedUpdateVersion', |
| 22 | ) |
| 23 | |
| 24 | if (lastNotifiedVersion === latestVersion) { |
| 25 | return |
| 26 | } |
| 27 | |
| 28 | send('system:update-available') |
| 29 | store.app.set('notifications.lastNotifiedUpdateVersion', latestVersion) |
| 30 | } |
| 31 | |
| 32 | async function runUpdateCheck() { |
| 33 | try { |
no test coverage detected