mirror of
https://git.jami.net/savoirfairelinux/jami-client-qt.git
synced 2025-07-03 07:05:26 +02:00

This commit makes the necessary changes to migrate from Qt 6.5.3 to Qt 6.6.1 and fixes the following issues: - EditedPopup.qml: "layout polish loop" and "recursive rearrange" errors (GitLab: #1510) as well as an unreported bug where text was clipped instead of elided - BaseContextMenu.qml: QML warning ("Created graphical object was not placed in the graphics scene.") The daemon is also bumped in order to include a patch for a build issue on openSUSE Leap (GitLab: #1552). GitLab: #1466 Change-Id: I12df2f84067ebe961368879e08ff7ef275d93395
11 lines
No EOL
224 B
Bash
Executable file
11 lines
No EOL
224 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
VERSION=$1
|
|
|
|
apt-get install -y -o Acquire::Retries=10 \
|
|
gcc-$VERSION \
|
|
g++-$VERSION
|
|
|
|
rm /usr/bin/gcc /usr/bin/g++
|
|
ln -s /usr/bin/gcc-$VERSION /usr/bin/gcc
|
|
ln -s /usr/bin/g++-$VERSION /usr/bin/g++ |