diff options
Diffstat (limited to 'Swift')
-rw-r--r-- | Swift/ChangeLog.md | 1 | ||||
-rw-r--r-- | Swift/QtUI/SConscript | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/Swift/ChangeLog.md b/Swift/ChangeLog.md index 4c88d88..a174436 100644 --- a/Swift/ChangeLog.md +++ b/Swift/ChangeLog.md @@ -3,6 +3,7 @@ - Fix UI layout issue for translations that require right-to-left (RTL) layout - macOS releases are now code-signed with a key from Apple, so they can be run without Gatekeeper trust warnings - Handle sessions being closed by the server +- Fix display of default avatar on Windows 4.0-beta2 ( 2016-07-20 ) ------------------------ diff --git a/Swift/QtUI/SConscript b/Swift/QtUI/SConscript index 1bcba64..2f95b3e 100644 --- a/Swift/QtUI/SConscript +++ b/Swift/QtUI/SConscript @@ -427,7 +427,7 @@ if env["PLATFORM"] == "win32" : qtlibs.append("phonon") qtlibs = [lib + '4' for lib in qtlibs] else : - qtlibs += ['QtQuick', 'QtQml', 'QtPositioning', 'QtMultimedia', 'QtSql', 'QtSensors', 'QtWidgets', 'QtWebChannel', 'QtWebKitWidgets', 'QtMultimediaWidgets', 'QtOpenGL', 'QtPrintSupport'] + qtlibs += ['QtQuick', 'QtQml', 'QtPositioning', 'QtMultimedia', 'QtSql', 'QtSensors', 'QtSvg', 'QtWidgets', 'QtWebChannel', 'QtWebKitWidgets', 'QtMultimediaWidgets', 'QtOpenGL', 'QtPrintSupport'] qtlibs = [lib.replace('Qt', 'Qt5') for lib in qtlibs] qtlibs += ['icuin51', 'icuuc51', 'icudt51', 'libGLESv2', 'libEGL'] qtplugins["platforms"] = ['windows'] |