From 2c60929139258e8951b1135bb715520855f02655 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 29 Apr 2025 11:21:56 +0000 Subject: [PATCH 1/3] v1.11.100-rc.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 4d142e2..4e9d948 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Element", "main": "lib/electron-main.js", "exports": "./lib/electron-main.js", - "version": "1.11.99", + "version": "1.11.100-rc.0", "description": "Element: the future of secure communication", "author": "Element", "homepage": "https://element.io", From a1bba6f8d3252e7baffa99cf33be13a1a6319d99 Mon Sep 17 00:00:00 2001 From: David Baker Date: Tue, 6 May 2025 13:24:49 +0100 Subject: [PATCH 2/3] Apply workaround to fix app launching on Linux Manual backport of https://github.com/element-hq/element-desktop/pull/2307 --- src/electron-main.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/electron-main.ts b/src/electron-main.ts index fddee60..5d9e888 100644 --- a/src/electron-main.ts +++ b/src/electron-main.ts @@ -326,6 +326,11 @@ app.commandLine.appendSwitch("--enable-usermedia-screen-capturing"); if (!app.commandLine.hasSwitch("enable-features")) { app.commandLine.appendSwitch("enable-features", "WebRTCPipeWireCapturer"); } +// Workaround bug in electron 36:https://github.com/electron/electron/issues/46538 +// Hopefully this will no longer be needed soon and can be removed +if (process.platform === "linux") { + app.commandLine.appendSwitch("gtk-version", "3"); +} const gotLock = app.requestSingleInstanceLock(); if (!gotLock) { From b5febd1a0726aa3c9b0fccde7d0334d913cd98f4 Mon Sep 17 00:00:00 2001 From: RiotRobot Date: Tue, 6 May 2025 14:19:52 +0000 Subject: [PATCH 3/3] v1.11.100 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b661abb..eeeaaba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +Changes in [1.11.100](https://github.com/element-hq/element-desktop/releases/tag/v1.11.100) (2025-05-06) +======================================================================================================== +## ✨ Features + +* Move rich topics out of labs / stabilise MSC3765 ([#29817](https://github.com/element-hq/element-web/pull/29817)). Contributed by @Johennes. +* Spell out that Element Web does \*not\* work on mobile. ([#29211](https://github.com/element-hq/element-web/pull/29211)). Contributed by @ara4n. +* Add message preview support to the new room list ([#29784](https://github.com/element-hq/element-web/pull/29784)). Contributed by @dbkr. +* Global configuration flag for media previews ([#29582](https://github.com/element-hq/element-web/pull/29582)). Contributed by @Half-Shot. +* New room list: add partial keyboard shortcuts support ([#29783](https://github.com/element-hq/element-web/pull/29783)). Contributed by @florianduros. +* MVVM RoomSummaryCard Topic ([#29710](https://github.com/element-hq/element-web/pull/29710)). Contributed by @MarcWadai. +* Warn on self change from settings > roles ([#28926](https://github.com/element-hq/element-web/pull/28926)). Contributed by @MarcWadai. +* New room list: new visual for invitation ([#29773](https://github.com/element-hq/element-web/pull/29773)). Contributed by @florianduros. + +## 🐛 Bug Fixes + +* Apply workaround to fix app launching on Linux ([#2308](https://github.com/element-hq/element-desktop/pull/2308)). Contributed by @dbkr. +* Notification fixes for Windows - AppID name was messing up handler ([#2275](https://github.com/element-hq/element-desktop/pull/2275)). Contributed by @Fusseldieb. +* Fix incorrect display of the user info display name ([#29826](https://github.com/element-hq/element-web/pull/29826)). Contributed by @langleyd. +* RoomListStore: Remove invite rooms on decline ([#29804](https://github.com/element-hq/element-web/pull/29804)). Contributed by @MidhunSureshR. +* Fix the buttons not being displayed with long preview text ([#29811](https://github.com/element-hq/element-web/pull/29811)). Contributed by @dbkr. +* New room list: fix missing/incorrect notification decoration ([#29796](https://github.com/element-hq/element-web/pull/29796)). Contributed by @florianduros. +* New Room List: Prevent potential scroll jump/flicker when switching spaces ([#29781](https://github.com/element-hq/element-web/pull/29781)). Contributed by @MidhunSureshR. +* New room list: fix incorrect decoration ([#29770](https://github.com/element-hq/element-web/pull/29770)). Contributed by @florianduros. + + + Changes in [1.11.99](https://github.com/element-hq/element-desktop/releases/tag/v1.11.99) (2025-04-23) ====================================================================================================== ## 🐛 Bug Fixes diff --git a/package.json b/package.json index 4e9d948..ce11880 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "productName": "Element", "main": "lib/electron-main.js", "exports": "./lib/electron-main.js", - "version": "1.11.100-rc.0", + "version": "1.11.100", "description": "Element: the future of secure communication", "author": "Element", "homepage": "https://element.io",