This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2goclient. from 3d4c38e onmainwindow.cpp: fix bad quoting when writing remote xinerama config file. Fixes: #797. adds 02dda79 {LICENSE,debian/copyright}: fix typo in URL of obviously-nice.de. new d294bbb onmainwindow.cpp: fix desktop sharing via session broker. Fixes: #584. The 1 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: LICENSE | 2 +- debian/changelog | 9 +++++++++ debian/copyright | 2 +- src/onmainwindow.cpp | 4 ++-- 4 files changed, 13 insertions(+), 4 deletions(-) -- Alioth's /srv/git/code.x2go.org/x2goclient.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 d294bbb3bb4178dfca02d1a999775b9e974e36b0 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Mar 19 02:06:10 2015 +0100 onmainwindow.cpp: fix desktop sharing via session broker. Fixes: #584. --- debian/changelog | 4 ++++ src/onmainwindow.cpp | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index 7ffc347..db1aefd 100644 --- a/debian/changelog +++ b/debian/changelog @@ -250,6 +250,10 @@ x2goclient (4.0.4.0-0x2go1) UNRELEASED; urgency=low - {LICENSE,debian/copyright}: fix typo in URL of obviously-nice.de. Fixes: #811. + [ Mike Gabriel ] + * New upstream release (4.0.4.0): + - onmainwindow.cpp: fix desktop sharing via session broker. Fixes: #584. + -- X2Go Release Manager <git-admin@x2go.org> Thu, 19 Feb 2015 13:25:28 +0100 x2goclient (4.0.3.2-0x2go1) unstable; urgency=medium diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 50db7b5..2a22be4 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3063,7 +3063,7 @@ void ONMainWindow::continueNormalSession() { x2goDebug<<"Continue normal x2go session"; - if (brokerMode) + if (brokerMode && !shadowSession) { slotListSessions(true,QString::null,0); return; @@ -3469,7 +3469,7 @@ void ONMainWindow::slotListSessions ( bool result,QString output, } QStringList sessions; - if(!brokerMode) + if(!brokerMode || shadowSession) { sessions=output.trimmed().split ( '\n', QString::SkipEmptyParts ); -- Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email on /srv/git/code.x2go.org/x2goclient.git