This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch feature/kdrive_support in repository x2goclient. from 7131865 Fix resuming sessions on multiply servers. new 63a0e18 Initualizing sessionId, command and display for direct RDP to complay with standard sessions. new 31c75d4 Direct RDP sesion send to broker event CONNECTED instead of CONNECTING at start of RDP client. new 6aa9a1d fixing setting correct session command when resuming the session. The 3 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: src/onmainwindow.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 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 feature/kdrive_support in repository x2goclient. commit 63a0e18557bf336305b335289caf1a1fc9b01c4c Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Thu Apr 4 10:52:43 2019 +0200 Initualizing sessionId, command and display for direct RDP to complay with standard sessions. --- src/onmainwindow.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index b696188..281737d 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3560,7 +3560,9 @@ void ONMainWindow::startDirectRDP() // x2goDebug<<"starting direct session with cmd:"<<proxyCmd; nxproxy->start ( proxyCmd ); resumingSession.server=host; - resumingSession.sessionId=sessionExplorer->getLastSession()->name(); + resumingSession.sessionId=user+"-RDP-"+QString::number(QDateTime::currentDateTime().toMSecsSinceEpoch()/1000)+"_stRRDP_dp24"; + resumingSession.display="RDP"; + resumingSession.command="RDP"; resumingSession.crTime=QDateTime::currentDateTime().toString("dd.MM.yy HH:mm:ss"); showSessionStatus(); if(brokerMode) -- 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 feature/kdrive_support in repository x2goclient. commit 31c75d43e434208ad8562fbc741cc2cb1dc3c3ab Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Thu Apr 4 11:03:19 2019 +0200 Direct RDP sesion send to broker event CONNECTED instead of CONNECTING at start of RDP client. --- src/onmainwindow.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index 281737d..edbc8c8 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -3567,7 +3567,7 @@ void ONMainWindow::startDirectRDP() showSessionStatus(); if(brokerMode) { - sendEventToBroker(CONNECTING); + sendEventToBroker(CONNECTED); } // QTimer::singleShot ( 30000,this,SLOT ( slotRestartProxy() ) ); -- 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 feature/kdrive_support in repository x2goclient. commit 6aa9a1de5801fc2231b0065cb04c805e2e415554 Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Thu Apr 4 16:04:06 2019 +0200 fixing setting correct session command when resuming the session. --- src/onmainwindow.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp index edbc8c8..6d8cc70 100644 --- a/src/onmainwindow.cpp +++ b/src/onmainwindow.cpp @@ -35,6 +35,7 @@ void x2goSession::operator = ( const x2goSession& s ) fsPort=s.fsPort; status=s.status; sessionType=s.sessionType; + command=s.command; } bool ONMainWindow::portable=false; -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2goclient.git