The branch, build-main has been updated
via c8c8e2febcab710108761ddabeab99364d6d1837 (commit)
from 3d6450d24cc3596bfbb9d602bd5e5216e9c99e9d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/…
[View More]changelog | 7 +++++++
sshmasterconnection.cpp | 2 +-
2 files changed, 8 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 57480e2..0ca8369 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -24,6 +24,13 @@ x2goclient (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
(Fixes: #179).
- Enable full access desktop sharing across user accounts. (Fixes: #222).
+ [ Heinrich Schuchardt ]
+ * New upstream version (4.0.1.1):
+ - Call ssh_clean_pubkey_hash() for deallocating public key hashes instead of
+ just calling free(). Required under MS Windows as documented in libssh2
+ API. (Fixes: #243). (For further details see:
+ http://api.libssh.org/master/group__libssh__session.html)
+
[ Ezra Bühler ]
* New upstream version (4.0.1.1):
- Fix auto-resume when session type is »Single Application«. (Fixes: #183).
diff --git a/sshmasterconnection.cpp b/sshmasterconnection.cpp
index 3dae569..d71ce84 100644
--- a/sshmasterconnection.cpp
+++ b/sshmasterconnection.cpp
@@ -691,7 +691,7 @@ int SshMasterConnection::serverAuth ( QString& errorMsg )
errorMsg=host+":"+QString::number(port)+" - "+ssh_get_error ( my_ssh_session );
break;
}
- free ( hash );
+ ssh_clean_pubkey_hash ( &hash );
return state;
}
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]
The branch, build-main has been updated
via af80d226b539a8edefdc424edd1e51211ad575c3 (commit)
from 736ec9e1531886250ab8b7986db9146dc73a7d2d (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/…
[View More]changelog | 1 -
onmainwindow.cpp | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index c2dcc38..c0f09a9 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -11,7 +11,6 @@ x2goclient (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
- If a priv SSH key has been specified, skip the autologin procedure.
Let's consider a given SSH private key that fails to log the user
in as an overall login failure. (Fixes: #141).
- - Enable full access desktop sharing across user accounts.
- Avoid multiple selectUserSession requests when in broker
mode.
- Properly set the remote server address received via selectUserSession
diff --git a/onmainwindow.cpp b/onmainwindow.cpp
index b707d84..dd7b6c1 100644
--- a/onmainwindow.cpp
+++ b/onmainwindow.cpp
@@ -4370,7 +4370,7 @@ void ONMainWindow::slotActivated ( const QModelIndex& index )
index.row(),
D_USER ).data().toString();
bShadowView->setEnabled ( true );
- bShadow->setEnabled ( true );
+ bShadow->setEnabled ( user==getCurrentUname() );
}
}
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]
The branch, build-main has been updated
via e69690eb76cba79754aa8f5e5d285d6562b59b9e (commit)
from 047050ec7a4dfe5326a655cbd471ae8b5d35a31b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/…
[View More]changelog | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index dd7122b..c3ea41c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -43,8 +43,8 @@ x2goclient (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
- Use the session icon as tray icon, pop up notification bubble that informs
about current session actions. (Fixes: #177).
- Allow for setting maximum available desktop size as window size via the
- session profile card. Unfortunately, this feature is for now only available
- on Linux. (Fixes: #214).
+ session profile card. Unfortunately, this feature is for now only
+ available on Linux. (Fixes: #214).
[ Otto Kjell ]
* New upstream version (4.0.1.1):
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]
The branch, build-main has been updated
via 2f8cdb2dd5778cdd8104c6427c25167f7c0c3bf9 (commit)
from c8c8e2febcab710108761ddabeab99364d6d1837 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/…
[View More]changelog | 1 +
debian/control | 20 ++++++++++++++++++++
debian/rules | 3 +++
3 files changed, 24 insertions(+)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index 0ca8369..dd7122b 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -30,6 +30,7 @@ x2goclient (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
just calling free(). Required under MS Windows as documented in libssh2
API. (Fixes: #243). (For further details see:
http://api.libssh.org/master/group__libssh__session.html)
+ * Provide bin:package with debug symbols for X2Go Client. (Fixes: #255).
[ Ezra Bühler ]
* New upstream version (4.0.1.1):
diff --git a/debian/control b/debian/control
index 266f13a..21a806c 100644
--- a/debian/control
+++ b/debian/control
@@ -49,6 +49,26 @@ Description: X2Go Client application (Qt4)
x2goclient is a graphical client (Qt4) for the X2Go system.
You can use it to connect to running sessions and start new sessions.
+Package: x2goclient-dbg
+Priority: extra
+Section: debug
+Architecture: any
+Depends: ${misc:Depends}, x2goclient (= ${binary:Version})
+Description: X2Go Client application (Qt4), debug symbols
+ X2Go is a serverbased computing environment with
+ - session resuming
+ - low bandwidth support
+ - LDAP support
+ - client-side mass storage mounting support
+ - client-side printing support
+ - audio support
+ - authentication by smartcard and USB stick
+ .
+ x2goclient is a graphical client (Qt4) for the X2Go system.
+ You can use it to connect to running sessions and start new sessions
+ .
+ This package provides the debug symbols for the x2goclient application.
+
Package: x2goplugin
Architecture: any
Depends:
diff --git a/debian/rules b/debian/rules
index 2bbb30a..8d25702 100755
--- a/debian/rules
+++ b/debian/rules
@@ -14,3 +14,6 @@ override_dh_auto_clean:
rm -Rf x2goclient_*.qm
override_dh_auto_install:
+
+override_dh_strip:
+ dh_strip --dbg-package=x2goclient-dbg
\ No newline at end of file
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]
The branch, build-main has been updated
via 3d6450d24cc3596bfbb9d602bd5e5216e9c99e9d (commit)
from af80d226b539a8edefdc424edd1e51211ad575c3 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
-----------------------------------------------------------------------
Summary of changes:
debian/…
[View More]changelog | 1 +
onmainwindow.cpp | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
The diff of changes is:
diff --git a/debian/changelog b/debian/changelog
index c0f09a9..57480e2 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -22,6 +22,7 @@ x2goclient (4.0.1.1-0~x2go1) UNRELEASED; urgency=low
- Add cmdline option --broker-autologoff: Enforce re-authentication against
X2Go Session Broker after a session has been suspended or terminated.
(Fixes: #179).
+ - Enable full access desktop sharing across user accounts. (Fixes: #222).
[ Ezra Bühler ]
* New upstream version (4.0.1.1):
diff --git a/onmainwindow.cpp b/onmainwindow.cpp
index dd7b6c1..b707d84 100644
--- a/onmainwindow.cpp
+++ b/onmainwindow.cpp
@@ -4370,7 +4370,7 @@ void ONMainWindow::slotActivated ( const QModelIndex& index )
index.row(),
D_USER ).data().toString();
bShadowView->setEnabled ( true );
- bShadow->setEnabled ( user==getCurrentUname() );
+ bShadow->setEnabled ( true );
}
}
hooks/post-receive
--
x2goclient.git (X2Go Client)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "x2goclient.git" (X2Go Client).
[View Less]