[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+debian-stretch #121

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+debian-stretch/121/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+debian-sid #458

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+debian-sid/458/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+debian-jessie #430

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+debian-jessie/430/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+fedora-24 #32

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+fedora-24/32/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+opensuse-13.1 #256

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+opensuse-13.1/256/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+epel-6 #444

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+epel-6/444/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+sled-12.0 #199

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+sled-12.0/199/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+opensuse-42.2 #15

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+opensuse-42.2/15/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+opensuse-13.2 #195

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+opensuse-13.2/195/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] Jenkins build is back to normal : x2goclient+nightly+opensuse-42.1 #58

2017-01-25 Thread jenkins
http://jenkins.x2go.org:8080/job/x2goclient+nightly+opensuse-42.1/58/
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2goclient] 01/01: src/onmainwindow.cpp: correctly guard the new lines from the previous commit.

2017-01-25 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a commit to branch master
in repository x2goclient.

commit 40be528ffbc5ac9d421fafee752af88372962009
Author: Mihai Moldovan 
Date:   Wed Jan 25 16:36:24 2017 +0100

src/onmainwindow.cpp: correctly guard the new lines from the previous 
commit.

Fixes compile issues on Linux and other systems.
---
 debian/changelog |2 ++
 src/onmainwindow.cpp |2 ++
 2 files changed, 4 insertions(+)

diff --git a/debian/changelog b/debian/changelog
index daaed7d..fad063a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -555,6 +555,8 @@ x2goclient (4.1.0.0-0x2go1) UNRELEASED; urgency=medium
   pulseManagerThread member variables. Fixes crashes on OS X and Windows
   if X2Go Client terminates before these objects have been created at run
   time (for instance when running x2goclient --help.)
+- src/onmainwindow.cpp: correctly guard the new lines from the previous
+  commit. Fixes compile issues on Linux and other systems.
 
   [ Bernard Cafarelli ]
   * New upstream version (4.1.0.0):
diff --git a/src/onmainwindow.cpp b/src/onmainwindow.cpp
index a7616c9..604d25d 100644
--- a/src/onmainwindow.cpp
+++ b/src/onmainwindow.cpp
@@ -203,8 +203,10 @@ ONMainWindow::ONMainWindow ( QWidget *parent ) 
:QMainWindow ( parent )
 embedControlChanged=false;
 statusString=tr ( "connecting" );
 
+#if defined (Q_OS_DARWIN) || defined (Q_OS_WIN)
 pulseManager = NULL;
 pulseManagerThread = NULL;
+#endif /* defined (Q_OS_DARWIN) || defined (Q_OS_WIN) */
 
 
 hide();

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email 
on /srv/git/code.x2go.org/x2goclient.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [x2goclient] branch master updated (cdead8f -> 40be528)

2017-01-25 Thread git-admin
This is an automated email from the git hooks/post-receive script.

x2go pushed a change to branch master
in repository x2goclient.

  from  cdead8f   src/onmainwindow.cpp: correctly initialize pulseManager 
and pulseManagerThread member variables.
   new  40be528   src/onmainwindow.cpp: correctly guard the new lines from 
the previous commit.

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:
 debian/changelog |2 ++
 src/onmainwindow.cpp |2 ++
 2 files changed, 4 insertions(+)

--
Alioth's /srv/git/code.x2go.org/x2goclient.git//..//_hooks_/post-receive-email 
on /srv/git/code.x2go.org/x2goclient.git
___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [[X2Go Wiki]] page changed: events:start

2017-01-25 Thread wiki-admin

A page in your DokuWiki was added or changed. Here are the details:

Date: 2017/01/25 11:26
Browser : Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 
Firefox/45.0
IP-Address  : 78.43.90.159
Hostname: HSI-KBW-078-043-090-159.hsi4.kabel-badenwuerttemberg.de
Old Revision: http://wiki.x2go.org/doku.php/events:start?rev=1485343569
New Revision: http://wiki.x2go.org/doku.php/events:start
Edit Summary: [Another Radio Interview (in German), Radio Free FM, Ulm 
(2017-02-12, 13:00h - 15:00h)] - updated guest list
User: stefanbaur

@@ -12,10 +12,10 @@
   * Chemnitzer LinuxTage - 2017-03-11/2017-03-12 (Date confirmed, signed up 
for a booth and a talk, but received no confirmation yet, Volunteers are 
Stefan, Juri, maybe also some of Juri's co-workers, namely Uwe and/or Felix)
   
  Another Radio Interview (in German), Radio Free FM, Ulm (2017-02-12, 13:00h - 15:00h)  

   * this time more focused on X2Go
-   * with Stefan and h1 as guests
-   * might
have to reschedule, as h1 might be unavailable on that day
+   * with Stefan and h1 as guests
+   * might have to reschedule, as h1 is unavailable on that day
  2016 
 
 = Past Events =
 



--
This mail was generated by DokuWiki at
http://wiki.x2go.org/

___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits


[X2Go-Commits] [[X2Go Wiki]] page changed: events:start

2017-01-25 Thread wiki-admin

A page in your DokuWiki was added or changed. Here are the details:

Date: 2017/01/25 11:26
Browser : Mozilla/5.0 (Windows NT 6.1; WOW64; rv:45.0) Gecko/20100101 
Firefox/45.0
IP-Address  : 78.43.90.159
Hostname: HSI-KBW-078-043-090-159.hsi4.kabel-badenwuerttemberg.de
Old Revision: http://wiki.x2go.org/doku.php/events:start?rev=1484585236
New Revision: http://wiki.x2go.org/doku.php/events:start
Edit Summary: [Booth & Talk @ Linuxday.AT 2016, Dornbirn, Austria (2016-11-26)] 
 - added video link
User: stefanbaur

@@ -44,8 +44,9 @@
 
  Booth & Talk @ Linuxday.AT 2016, Dornbirn, Austria (2016-11-26) 

   * Website: http://linuxday.at
   * booth and 
[[https://www.linuxday.at/windows-systeme-effektiv-und-guenstig-vor-ransomware-schuetzen-mit-linux-und-x2go|talk]]
 confirmed
+   * A video recording of Stefan#1's talk is available 
[[https://www.youtube.com/watch?v=iumXXc50fTk|here]]
   * Stefan#1 and ionic were there, with Stefan#2 as stand-in
   * You could
find them at booth B2
 
 {{:events:2016-11-26_11-28-32_451.jpg?600|}}



--
This mail was generated by DokuWiki at
http://wiki.x2go.org/

___
x2go-commits mailing list
x2go-commits@lists.x2go.org
http://lists.x2go.org/listinfo/x2go-commits