diff --git a/build/appx/StoreLogo.png b/build/appx/StoreLogo.png index 9ce8a7fa..44a2b95f 100644 Binary files a/build/appx/StoreLogo.png and b/build/appx/StoreLogo.png differ diff --git a/src/main/ipc-handlers/updates.js b/src/main/ipc-handlers/updates.js index 33b8beda..d28538db 100644 --- a/src/main/ipc-handlers/updates.js +++ b/src/main/ipc-handlers/updates.js @@ -9,10 +9,13 @@ autoUpdater.allowPrerelease = persistentStore.get('allow_prerelease', true); export default () => { ipcMain.on('check-for-updates', event => { mainWindow = event; - - autoUpdater.checkForUpdatesAndNotify().catch(() => { - mainWindow.reply('check-failed'); - }); + if (process.windowsStore) + mainWindow.reply('no-auto-update'); + else { + autoUpdater.checkForUpdatesAndNotify().catch(() => { + mainWindow.reply('check-failed'); + }); + } }); ipcMain.on('restart-to-update', () => { diff --git a/src/renderer/components/ModalSettings.vue b/src/renderer/components/ModalSettings.vue index 6e7067ec..90138772 100644 --- a/src/renderer/components/ModalSettings.vue +++ b/src/renderer/components/ModalSettings.vue @@ -30,6 +30,7 @@ {{ $t('word.themes') }}