This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository x2gokdrive. from d4afb75 misc: pre-release date update. new 703966a don't ignore windows with visibility == 2. Client should hide them from taskbar. new 6b2e080 Merge branch 'master' of ssh://code.x2go.org:32032/srv/git/code.x2go.org/x2gokdrive The 2 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: debian/changelog | 1 + x2gokdriveremote.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 703966a209352e55603caf7571b256a90f0f98be Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Fri May 26 10:57:27 2023 -0600 don't ignore windows with visibility == 2. Client should hide them from taskbar. --- debian/changelog | 1 + x2gokdriveremote.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 49f6b8a..35cd263 100644 --- a/debian/changelog +++ b/debian/changelog @@ -45,6 +45,7 @@ x2gokdrive (0.0.0.1-0x2go1) UNRELEASED; urgency=medium -xkb-variant on Xorg < 11899001. - support for windows with type _NET_WM_WINDOW_TYPE_DND. Ignore windows with visibility >= 2. + - don't ignore windows with visibility == 2. Client should hide them from taskbar. [ Mihai Moldovan ] * Initial release: diff --git a/x2gokdriveremote.c b/x2gokdriveremote.c index c8ff6c2..b8693c3 100644 --- a/x2gokdriveremote.c +++ b/x2gokdriveremote.c @@ -4117,7 +4117,7 @@ void remote_check_window(WindowPtr win) } // EPHYR_DBG("Check win %p",win); - if(!win->optional || !win->optional->userProps || !win->mapped || win->visibility<0 || win->visibility>=2) + if(!win->optional || !win->optional->userProps || !win->mapped || win->visibility<0 || win->visibility>2) { return; } -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository x2gokdrive. commit 6b2e080d49b1de27d5f91ea48e0b84979aee9b3a Merge: 703966a d4afb75 Author: Oleksandr Shneyder <o.shneyder@phoca-gmbh.de> Date: Fri May 26 10:58:58 2023 -0600 Merge branch 'master' of ssh://code.x2go.org:32032/srv/git/code.x2go.org/x2gokdrive debian/changelog | 1 + debian/copyright | 6 +++--- testscripts/run-x2gokdriveclient-to-x2gokdrive-on-localhost | 2 +- testscripts/run-x2gokdriveclient-to-x2gokdrive-over-network | 2 +- x2gokdrive.h | 2 +- x2gokdrivecursor.c | 2 +- x2gokdriveinit.c | 2 +- x2gokdriveremote.c | 2 +- x2gokdriveremote.h | 2 +- x2gokdriveselection.c | 2 +- x2gokdriveselection.h | 2 +- 11 files changed, 13 insertions(+), 12 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/x2gokdrive.git