This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 617a419 res/i18n/x2goclient_*.ts: update translation files. new f25b43f Windows: Update PuTTY from 0.71 to 0.73. new e22827f src/onmainwindow.cpp: stop PulseAudio from spamming logs after a client disconnects. Fixes: #1425. new 70b4561 src/onmainwindow.cpp: instead of searching for "sftp-binary", try to look for "sftp-server" in the Qt 5.x code path. new 926355d Windows: upgrade bundled VcXsrv to 1.20.6.0. new b855a23 Windows: upgrade PulseAudio from 7.1 to 13.0. The 5 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Summary of changes: copy-deps-win32.bat | 6 +++--- debian/changelog | 12 ++++++++++++ src/onmainwindow.cpp | 12 ++++++++++-- 3 files changed, 25 insertions(+), 5 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit f25b43f2f76efe2351d58727753e842464c818aa Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jan 25 17:40:02 2020 +0100 Windows: Update PuTTY from 0.71 to 0.73. Fixes another round of issues discovered through the EU-funded bug bounty programme and other security problems. --- copy-deps-win32.bat | 2 +- debian/changelog | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/copy-deps-win32.bat b/copy-deps-win32.bat index 829220f..23a7b9f 100755 --- a/copy-deps-win32.bat +++ b/copy-deps-win32.bat @@ -11,7 +11,7 @@ xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libstdc++ xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libwinpthread-1.dll %3\ || exit /b %errorlevel% xcopy /E /Y %1\MSVC-DLLs\2013-12.0.21005.1-x86\msvcr120.dll %3\ || exit /b %errorlevel% xcopy /E /Y %1\pulse\7.1-2.2_bin %3\ || exit /b %errorlevel% -xcopy /E /Y %1\PuTTY\0.71_bin %3\ || exit /b %errorlevel% +xcopy /E /Y %1\PuTTY\0.73_bin %3\ || exit /b %errorlevel% xcopy /E /Y /I %1\VcXsrv\1.20.1.4_bin %3\VcXsrv || exit /b %errorlevel% xcopy /E /Y /I %1\x3270-fonts\3.6ga4\misc %3\VcXsrv\fonts\misc || exit /b %errorlevel% xcopy /E /Y %1\x3270-fonts\3.6ga4\copyright-x3270-fonts %3\VcXsrv\ || exit /b %errorlevel% diff --git a/debian/changelog b/debian/changelog index 605cc54..78fa666 100644 --- a/debian/changelog +++ b/debian/changelog @@ -148,6 +148,9 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium - src/sshmasterconnection.cpp: work around lupdate warning by adding another block in the #else preprocessor branch. - res/i18n/x2goclient_*.ts: update translation files. + - Windows: Update PuTTY from 0.71 to 0.73. Fixes another round of issues + discovered through the EU-funded bug bounty programme and other security + problems. * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit e22827f7afff3d85853b2d61961f773424d5e022 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jan 25 18:15:05 2020 +0100 src/onmainwindow.cpp: stop PulseAudio from spamming logs after a client disconnects. Fixes: #1425. Patch based on one submitted by Ville Salmela. --- debian/changelog | 3 +++ src/onmainwindow.cpp | 8 ++++++++ 2 files changed, 11 insertions(+) diff --git a/debian/changelog b/debian/changelog index 78fa666..577285a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -151,6 +151,9 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium - Windows: Update PuTTY from 0.71 to 0.73. Fixes another round of issues discovered through the EU-funded bug bounty programme and other security problems. + - src/onmainwindow.cpp: stop PulseAudio from spamming logs after a client + disconnects. Fixes: #1425. Patch based on one submitted by Ville + Salmela. * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 3263221..f640766 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -5721,6 +5721,10 @@ void ONMainWindow::slotRetResumeSess ( bool result, "/.pulse-cookie"+ "\" >> \"${HOME}/.x2go/C-"+ resumingSession.sessionId+ + "/.pulse-client.conf\"" + ";echo \"autospawn=no\" >>" + "\"${HOME}/.x2go/C-" + + resumingSession.sessionId + "/.pulse-client.conf\""; else scmd="echo \"default-server=localhost:"+ @@ -5733,6 +5737,10 @@ void ONMainWindow::slotRetResumeSess ( bool result, "/.pulse-cookie"+ "\" >> \"${HOME}/.x2go/C-"+ resumingSession.sessionId+ + "/.pulse-client.conf\"" + ";echo \"autospawn=no\" >>" + "\"${HOME}/.x2go/C-" + + resumingSession.sessionId + "/.pulse-client.conf\""; sshConnection->executeCommand (scmd); -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 70b4561ad674281dd1429c3d971ac70fd6bcc5a6 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jan 25 18:40:58 2020 +0100 src/onmainwindow.cpp: instead of searching for "sftp-binary", try to look for "sftp-server" in the Qt 5.x code path. Luckily this only affects cases where we bundle sftp-server (which we don't) or where sftp-server is actually part of $PATH (which it usually shouldn't be). --- debian/changelog | 4 ++++ src/onmainwindow.cpp | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 577285a..0111678 100644 --- a/debian/changelog +++ b/debian/changelog @@ -154,6 +154,10 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium - src/onmainwindow.cpp: stop PulseAudio from spamming logs after a client disconnects. Fixes: #1425. Patch based on one submitted by Ville Salmela. + - src/onmainwindow.cpp: instead of searching for "sftp-binary", try to + look for "sftp-server" in the Qt 5.x code path. Luckily this only + affects cases where we bundle sftp-server (which we don't) or where + sftp-server is actually part of $PATH (which it usually shouldn't be). * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index f640766..e2d5f19 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -10870,12 +10870,12 @@ void ONMainWindow::generateEtcFiles() QStringList search_paths; search_paths << appDir; - sftp_binary = QStandardPaths::findExecutable ("sftp-binary", search_paths); + sftp_binary = QStandardPaths::findExecutable ("sftp-server", search_paths); if (sftp_binary.isEmpty ()) { search_paths = QStringList (); - sftp_binary = QStandardPaths::findExecutable ("sftp-binary", search_paths); + sftp_binary = QStandardPaths::findExecutable ("sftp-server", search_paths); if (sftp_binary.isEmpty ()) { search_paths = common_sftp_dirs; -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit 926355d7f4eb05c2ec197c879ffcd314c4bac972 Author: Mihai Moldovan <ionic@ionic.de> Date: Sat Jan 25 20:20:19 2020 +0100 Windows: upgrade bundled VcXsrv to 1.20.6.0. --- copy-deps-win32.bat | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/copy-deps-win32.bat b/copy-deps-win32.bat index 23a7b9f..6094c0c 100755 --- a/copy-deps-win32.bat +++ b/copy-deps-win32.bat @@ -12,7 +12,7 @@ xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libwinpth xcopy /E /Y %1\MSVC-DLLs\2013-12.0.21005.1-x86\msvcr120.dll %3\ || exit /b %errorlevel% xcopy /E /Y %1\pulse\7.1-2.2_bin %3\ || exit /b %errorlevel% xcopy /E /Y %1\PuTTY\0.73_bin %3\ || exit /b %errorlevel% -xcopy /E /Y /I %1\VcXsrv\1.20.1.4_bin %3\VcXsrv || exit /b %errorlevel% +xcopy /E /Y /I %1\VcXsrv\1.20.6.0_bin %3\VcXsrv || exit /b %errorlevel% xcopy /E /Y /I %1\x3270-fonts\3.6ga4\misc %3\VcXsrv\fonts\misc || exit /b %errorlevel% xcopy /E /Y %1\x3270-fonts\3.6ga4\copyright-x3270-fonts %3\VcXsrv\ || exit /b %errorlevel% rem We have to call mkfontscale and mkfontdir after updating the misc font directory. diff --git a/debian/changelog b/debian/changelog index 0111678..0f8a60b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -158,6 +158,7 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium look for "sftp-server" in the Qt 5.x code path. Luckily this only affects cases where we bundle sftp-server (which we don't) or where sftp-server is actually part of $PATH (which it usually shouldn't be). + - Windows: upgrade bundled VcXsrv to 1.20.6.0. * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2goclient. commit b855a236ceba4668eb53e5c0cbff9f3eaa0966bc Author: Mihai Moldovan <ionic@ionic.de> Date: Sun Jan 26 02:32:21 2020 +0100 Windows: upgrade PulseAudio from 7.1 to 13.0. --- copy-deps-win32.bat | 2 +- debian/changelog | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/copy-deps-win32.bat b/copy-deps-win32.bat index 6094c0c..55a7d12 100755 --- a/copy-deps-win32.bat +++ b/copy-deps-win32.bat @@ -10,7 +10,7 @@ xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libgcc_s_ xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libstdc++-6.dll %3\ || exit /b %errorlevel% xcopy /E /Y %1\MinGW-DLLs\i686-4.8.2-release-posix-dwarf-rt_v3-rev3\libwinpthread-1.dll %3\ || exit /b %errorlevel% xcopy /E /Y %1\MSVC-DLLs\2013-12.0.21005.1-x86\msvcr120.dll %3\ || exit /b %errorlevel% -xcopy /E /Y %1\pulse\7.1-2.2_bin %3\ || exit /b %errorlevel% +xcopy /E /Y %1\pulse\13.0-lp151.19.1_bin %3\ || exit /b %errorlevel% xcopy /E /Y %1\PuTTY\0.73_bin %3\ || exit /b %errorlevel% xcopy /E /Y /I %1\VcXsrv\1.20.6.0_bin %3\VcXsrv || exit /b %errorlevel% xcopy /E /Y /I %1\x3270-fonts\3.6ga4\misc %3\VcXsrv\fonts\misc || exit /b %errorlevel% diff --git a/debian/changelog b/debian/changelog index 0f8a60b..9155c6f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -159,6 +159,7 @@ x2goclient (4.1.2.2-0x2go1) UNRELEASED; urgency=medium affects cases where we bundle sftp-server (which we don't) or where sftp-server is actually part of $PATH (which it usually shouldn't be). - Windows: upgrade bundled VcXsrv to 1.20.6.0. + - Windows: upgrade PulseAudio from 7.1 to 13.0. * debian/control: + Add build-depend on pkg-config. * x2goclient.spec: -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git