Qt6 migration#485
Closed
vejeta wants to merge 11 commits intoStremio:masterfrom
Closed
Conversation
- CMakeLists.txt: cmake 3.16+, C++17, WebEngine -> WebEngineQuick - main.cpp: QtWebEngineQuick::initialize(), remove deprecated Qt5 attributes - main.qml: Controls 2 API, Qt6 FileDialog/MessageDialog, versionless imports - mpv.cpp: fix FBO include path, remove deprecated OpenGL state calls - autoupdater.h: remove QNetworkConfigurationManager (removed in Qt6) - screensaver.cpp: clean Qt4 compat guards, update nativeEventFilter signature - stremio.pro: webenginequick, c++17
QProcess may not inherit the full environment. Node.js server.js requires HOME, USER, and PWD for path.join() operations on cache directories. Without these, the streaming server fails at startup with 'path argument must be of type string' errors.
Match KDE MpvQt implementation: pass native display handle (X11 or Wayland) to mpv_render_context_create for proper frame synchronization. Remove unnecessary beginExternalCommands wrapping and setPersistentGraphics calls.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Qt5 reached end-of-life. This migrates stremio-shell to Qt6 with minimal changes , mostly removing deprecated code).
Summary
WebEngine→WebEngineQuickQtWebEngineQuick::initialize(), versionless QML imports, Controls 2QNetworkConfigurationManagerTested on Debian sid (Qt 6.8) — builds, runs, streams, and plays back correctly.
Related to #442