This update fixes the Qt 4 QAudio hardcoding the hw:0,0
ALSA device (due to an incorrect ALSA version check that does not recognize ALSA 1.1).
Updates may require up to 24 hours to propagate to mirrors. If the following command doesn't work, please retry later:
sudo dnf upgrade --refresh --advisory=FEDORA-2018-f2829fc1e6
Please login to add feedback.
This update has been submitted for testing by kkofler.
This update has been pushed to testing.
works for me
audio still working, update seems fine
Works for me, and the default system audio device is now correctly used. Thanks!
works for me in a VM
No regressions noted.
no regressions noted
No regressions noted
This update has been submitted for batched by kkofler.
This update has been submitted for stable by kkofler.
This update has been pushed to stable.
http://code.qt.io/cgit/qt/qt.git/tree/src/gui/kernel/qapplication_x11.cpp?id=4badd8ed24f4f20e46a6a2c2c9970e5e02ebd520#n2330
In this way not possible correctly detect gnome session. Need change expression in if block: if (qgetenv("DESKTOP_SESSION").startsWith == "gnome") {
Something like this version: if (!qgetenv("DESKTOP_SESSION").isNull() && qgetenv("DESKTOP_SESSION").startsWith("gnome")) {
environment variable GNOME_DESKTOP_SESSION_ID is removed (see commit) https://gitlab.gnome.org/GNOME/gnome-session/commit/00e0e6226371d53f651cc881e74c0543192c94a8
also environment variable DESKTOP_SESSION can be set to "gnome-xorg"
http://code.qt.io/cgit/qt/qt.git/tree/src/gui/kernel/qapplication_x11.cpp?id=4badd8ed24f4f20e46a6a2c2c9970e5e02ebd520#n2330
In this way not possible correctly detect gnome session. Need change expression in if block: if (qgetenv("DESKTOP_SESSION").startsWith == "gnome") {
Something like this version: if (!qgetenv("DESKTOP_SESSION").isNull() && qgetenv("DESKTOP_SESSION").startsWith("gnome")) {
That appears to be an old issue not caused by this update, so please report it to https://bugzilla.redhat.com/ , it is off-topic here!