()
| 49 | // обработчик 'update-available', здесь только диалоги. |
| 50 | export async function checkForUpdatesFromMenu() { |
| 51 | function showNoUpdatesDialog() { |
| 52 | dialog.showMessageBoxSync({ |
| 53 | message: i18n.t('messages:update.noAvailable'), |
| 54 | }) |
| 55 | } |
| 56 | |
| 57 | if (!app.isPackaged) { |
| 58 | showNoUpdatesDialog() |
no outgoing calls
no test coverage detected