diff --git a/README.md b/README.md index 8ea22d2..af62292 100644 --- a/README.md +++ b/README.md @@ -21,15 +21,14 @@ Vesktop is a custom Discord desktop app If you don't know the difference, pick the Installer. -- [Installer](https://vencord.dev/download/vesktop/amd64/windows) -- [Portable](https://vencord.dev/download/vesktop/amd64/windows-portable) +- [Installer](https://vencord.dev/download/vesktop/universal/windows) +- Portable: + - [x64 / amd64](https://vencord.dev/download/vesktop/amd64/windows-portable) + - [arm64](https://vencord.dev/download/vesktop/arm64/windows-portable) ### Mac -If you don't know the difference, pick the Intel build. - -- [Intel build (amd64)](https://vencord.dev/download/vesktop/amd64/dmg) -- [Apple Silicon (arm64)](https://vencord.dev/download/vesktop/arm64/dmg) +[Vesktop.dmg](https://vencord.dev/download/vesktop/universal/dmg) ### Linux diff --git a/meta/dev.vencord.Vesktop.metainfo.xml b/meta/dev.vencord.Vesktop.metainfo.xml index 2c94c9e..853d520 100644 --- a/meta/dev.vencord.Vesktop.metainfo.xml +++ b/meta/dev.vencord.Vesktop.metainfo.xml @@ -28,6 +28,34 @@ + + https://github.com/Vencord/Vesktop/releases/tag/v1.5.3 + +

Features

+
    +
  • added arm64 Windows support
  • +
  • windows & macOS builds are now universal
  • +
  • added option to configure spellcheck languages
  • +
  • will auto-update from now on
  • +
  • updated electron to 31 & Chromium to 126
  • +
  • macOS: Added customized dmg background by @khcrysalis
  • +
  • Windows Portable: store settings in portable folder by @MrGarlic1
  • +
  • linux audioshare: added granular selection, more options, better ui by @Curve
  • +
  • changed default screen-sharing quality to 720p 30 FPS by @Tiagoquix
  • +
+

Fixes

+
    +
  • macOS: Added workaround for making things in draggable area clickable by @HAHALOSAH
  • +
  • fixed Screenshare UI for non-linux systems by @PolisanTheEasyNick
  • +
  • fixed opening on screen that was disconnected by @MrGarlic1
  • +
  • mac: hide native window controls with custom titlebar enabled by @MrGarlic1
  • +
  • fixed some broken patches by @D3SOX
  • +
  • fixed framerate in constraints by @kittykel
  • +
  • fixed some first launch switches not applying
  • +
  • fixed potential sandbox escape via custom vencord location
  • +
+
+
https://github.com/Vencord/Vesktop/releases/tag/v1.5.2 @@ -208,4 +236,4 @@ Privacy Mod - + \ No newline at end of file diff --git a/package.json b/package.json index b00966e..3e4f73e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vesktop", - "version": "1.5.2", + "version": "1.5.3", "private": true, "description": "", "keywords": [], diff --git a/src/main/index.ts b/src/main/index.ts index dbc0ee2..2e0d6f7 100644 --- a/src/main/index.ts +++ b/src/main/index.ts @@ -19,10 +19,10 @@ import { isDeckGameMode } from "./utils/steamOS"; if (IS_DEV) { require("source-map-support").install(); +} else { + autoUpdater.checkForUpdatesAndNotify(); } -autoUpdater.checkForUpdatesAndNotify(); - // Make the Vencord files use our DATA_DIR process.env.VENCORD_USER_DATA_DIR = DATA_DIR;