Skip to content
This repository was archived by the owner on Mar 28, 2026. It is now read-only.

Commit f3d2382

Browse files
committed
Fix severe memory leak
6.10.* has a severe memory leak. https://qt-project.atlassian.net/browse/QTBUG-141377 6.9.3 works well enough. resolves https://github.com/jellyfin/jellyfin-desktop/issues/1091
1 parent 11cbc15 commit f3d2382

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.github/workflows/build-macos.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,10 @@ jobs:
2222
- name: Install Qt
2323
uses: jurplel/install-qt-action@v4
2424
with:
25-
version: '6.10.1'
25+
# using older version due to severe memory leak
26+
# https://qt-project.atlassian.net/browse/QTBUG-141377https://qt-project.atlassian.net/browse/QTBUG-141377
27+
#version: '6.10.1'
28+
version: '6.9.3'
2629
arch: clang_64
2730
modules: 'qtwebengine qtwebchannel qtpositioning'
2831
- name: Install dependencies

.github/workflows/build-windows.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: build-windows
22

33
env:
44
MPV_VERSION: "20251214-git-f7be2ee"
5-
QT_VERSION: "6.10.1"
5+
# using older version due to severe memory leak
6+
# https://qt-project.atlassian.net/browse/QTBUG-141377
7+
QT_VERSION: "6.9.3"
68

79
on:
810
workflow_call:

external/cef

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/home/ar/src/cef/cef_binary_143.0.13+g30cb3bd+chromium-143.0.7499.170_linux64

0 commit comments

Comments
 (0)