Merge branch 'main' into tray-icon
This commit is contained in:
commit
01fbcffd83
4 changed files with 37 additions and 10 deletions
11
README.md
11
README.md
|
@ -21,15 +21,14 @@ Vesktop is a custom Discord desktop app
|
||||||
|
|
||||||
If you don't know the difference, pick the Installer.
|
If you don't know the difference, pick the Installer.
|
||||||
|
|
||||||
- [Installer](https://vencord.dev/download/vesktop/amd64/windows)
|
- [Installer](https://vencord.dev/download/vesktop/universal/windows)
|
||||||
- [Portable](https://vencord.dev/download/vesktop/amd64/windows-portable)
|
- Portable:
|
||||||
|
- [x64 / amd64](https://vencord.dev/download/vesktop/amd64/windows-portable)
|
||||||
|
- [arm64](https://vencord.dev/download/vesktop/arm64/windows-portable)
|
||||||
|
|
||||||
### Mac
|
### Mac
|
||||||
|
|
||||||
If you don't know the difference, pick the Intel build.
|
[Vesktop.dmg](https://vencord.dev/download/vesktop/universal/dmg)
|
||||||
|
|
||||||
- [Intel build (amd64)](https://vencord.dev/download/vesktop/amd64/dmg)
|
|
||||||
- [Apple Silicon (arm64)](https://vencord.dev/download/vesktop/arm64/dmg)
|
|
||||||
|
|
||||||
### Linux
|
### Linux
|
||||||
|
|
||||||
|
|
|
@ -28,6 +28,34 @@
|
||||||
</screenshot>
|
</screenshot>
|
||||||
</screenshots>
|
</screenshots>
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="1.5.3" date="2024-07-04" type="stable">
|
||||||
|
<url>https://github.com/Vencord/Vesktop/releases/tag/v1.5.3</url>
|
||||||
|
<description>
|
||||||
|
<p>Features</p>
|
||||||
|
<ul>
|
||||||
|
<li>added arm64 Windows support</li>
|
||||||
|
<li>windows & macOS builds are now universal</li>
|
||||||
|
<li>added option to configure spellcheck languages</li>
|
||||||
|
<li>will auto-update from now on</li>
|
||||||
|
<li>updated electron to 31 & Chromium to 126</li>
|
||||||
|
<li>macOS: Added customized dmg background by @khcrysalis</li>
|
||||||
|
<li>Windows Portable: store settings in portable folder by @MrGarlic1</li>
|
||||||
|
<li>linux audioshare: added granular selection, more options, better ui by @Curve</li>
|
||||||
|
<li>changed default screen-sharing quality to 720p 30 FPS by @Tiagoquix</li>
|
||||||
|
</ul>
|
||||||
|
<p>Fixes</p>
|
||||||
|
<ul>
|
||||||
|
<li>macOS: Added workaround for making things in draggable area clickable by @HAHALOSAH</li>
|
||||||
|
<li>fixed Screenshare UI for non-linux systems by @PolisanTheEasyNick</li>
|
||||||
|
<li>fixed opening on screen that was disconnected by @MrGarlic1</li>
|
||||||
|
<li>mac: hide native window controls with custom titlebar enabled by @MrGarlic1</li>
|
||||||
|
<li>fixed some broken patches by @D3SOX</li>
|
||||||
|
<li>fixed framerate in constraints by @kittykel</li>
|
||||||
|
<li>fixed some first launch switches not applying</li>
|
||||||
|
<li>fixed potential sandbox escape via custom vencord location</li>
|
||||||
|
</ul>
|
||||||
|
</description>
|
||||||
|
</release>
|
||||||
<release version="1.5.2" date="2024-05-01" type="stable">
|
<release version="1.5.2" date="2024-05-01" type="stable">
|
||||||
<url>https://github.com/Vencord/Vesktop/releases/tag/v1.5.2</url>
|
<url>https://github.com/Vencord/Vesktop/releases/tag/v1.5.2</url>
|
||||||
<description>
|
<description>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "vesktop",
|
"name": "vesktop",
|
||||||
"version": "1.5.2",
|
"version": "1.5.3",
|
||||||
"private": true,
|
"private": true,
|
||||||
"description": "",
|
"description": "",
|
||||||
"keywords": [],
|
"keywords": [],
|
||||||
|
|
|
@ -19,9 +19,9 @@ import { isDeckGameMode } from "./utils/steamOS";
|
||||||
|
|
||||||
if (IS_DEV) {
|
if (IS_DEV) {
|
||||||
require("source-map-support").install();
|
require("source-map-support").install();
|
||||||
}
|
} else {
|
||||||
|
|
||||||
autoUpdater.checkForUpdatesAndNotify();
|
autoUpdater.checkForUpdatesAndNotify();
|
||||||
|
}
|
||||||
|
|
||||||
// Make the Vencord files use our DATA_DIR
|
// Make the Vencord files use our DATA_DIR
|
||||||
process.env.VENCORD_USER_DATA_DIR = DATA_DIR;
|
process.env.VENCORD_USER_DATA_DIR = DATA_DIR;
|
||||||
|
|
Loading…
Reference in a new issue