This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch cvix/2.x in repository pyhoca-gui. from e79cdb0 CVix: typo fix in CVix.py adds 5ed0ecb CVix: release 1.99.3 new 7bb7a15 continue development new a54a444 Make sure X2GoClientXConfig configuration files really get written to disk after recent changes to the inifile.py code. new b5380c0 Fix check_running() method in PyHocaGUI_Launcher on MS Windows. 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: CVix.py | 2 +- debian/changelog | 45 ++++++++++++++++++++++++--------------------- pyhoca/wxgui/launcher.py | 3 ++- 3 files changed, 27 insertions(+), 23 deletions(-) -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch cvix/2.x in repository pyhoca-gui. commit 7bb7a15486914b469f6feb692b956be7c5f43b67 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Thu Mar 20 00:41:43 2014 +0100 continue development --- CVix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CVix.py b/CVix.py index 282f08e..4f7b039 100755 --- a/CVix.py +++ b/CVix.py @@ -37,7 +37,7 @@ import x2go import CVix_session_profile_template __AUTHOR__ = "Mike Gabriel, Dick Kniep" -__VERSION__ = "1.99.3-stable" +__VERSION__ = "1.99.4-dev" # change this to .CVix??? -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch cvix/2.x in repository pyhoca-gui. commit b5380c08973d7d15ac4c4a5238d81b0cf2ed080f Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Apr 15 07:55:19 2014 +0200 Fix check_running() method in PyHocaGUI_Launcher on MS Windows. Conflicts (resolved by Mike Gabriel): debian/changelog pyhoca/wxgui/launcher.py --- debian/changelog | 47 +++++++++++++++++++++++----------------------- pyhoca/wxgui/launcher.py | 3 ++- 2 files changed, 26 insertions(+), 24 deletions(-) diff --git a/debian/changelog b/debian/changelog index b500558..01fbed6 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,28 +1,29 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low - * Adapt to new backend concept found in Python X2Go (>= 0.5.0.0). - * Move most code of the pyhoca-gui executable into a dedicated class - named PyHocaGUI_Launcher. - * Allow automatic image branding (splash, about image, tray icon) by - setting another application name than the default. - * Rename icon files to match default application name (PyHoca-GUI). - * Make default cmdline option parameters overridable before the - arg parser gets initialized. - * Make SCRIPT_NAME in setup.py configurable (monkey-patchable). - * Make setup.py importable, only run setup() function on direct calls. - * Don't refer to py2exe anymore in nsis_template's naming scheme. - * Provide separate mswin_logging module. - * Install more modules into setup.exe: hmac (for ecdsa). - * NSIS script: empty installation destination before installing new files - into $INSTDIR. - * Allow appname based mini icons on About... windows. - * Make the hover text of the tray icon brandable (drop hard-coded - PyHoca-GUI application name). - * NSIS script: make sure SetOutPath gets called at the beginning of - every section. - * Show printing preferences when tray icon is in restricted mode. - * Make sure X2GoClientXConfig configuration files really get written to - disk after recent changes to the inifile.py code. + * New upstream version (0.5.0.0): + - Add X2Go Session Broker support. + - Adapt to new backend concept found in Python X2Go (>= 0.5.0.0). + - Move most code of the pyhoca-gui executable into a dedicated class + named PyHocaGUI_Launcher. + - Allow automatic image branding (splash, about image, tray icon) by + setting another application name than the default. + - Rename icon files to match default application name (PyHoca-GUI). + - Make default cmdline option parameters overridable before the + arg parser gets initialized. + - Make SCRIPT_NAME in setup.py configurable (monkey-patchable). + - Make setup.py importable, only run setup() function on direct calls. + - Don't refer to py2exe anymore in nsis_template's naming scheme. + - Provide separate mswin_logging module. + - Install more modules into setup.exe: hmac (for ecdsa). + - NSIS script: empty installation destination before installing new files + into $INSTDIR. + - Allow appname based mini icons on About... windows. + - Make the hover text of the tray icon brandable (drop hard-coded + PyHoca-GUI application name). + - NSIS script: make sure SetOutPath gets called at the beginning of + every section. + - Show printing preferences when tray icon is in restricted mode. + - Fix check_running() method in PyHocaGUI_Launcher on MS Windows. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 08 Jan 2014 21:28:37 +0100 diff --git a/pyhoca/wxgui/launcher.py b/pyhoca/wxgui/launcher.py index af703e9..b4ed4f9 100644 --- a/pyhoca/wxgui/launcher.py +++ b/pyhoca/wxgui/launcher.py @@ -108,8 +108,9 @@ VERSION: %s reload(taskbar) def check_running(self): - if X2GOCLIENT_OS in ('Linux', 'Mac'): + _executable = os.path.basename(sys.argv[0]).replace('.exe', '') + if X2GOCLIENT_OS in ('Linux', 'Mac'): p = subprocess.Popen(['ps', '-U', CURRENT_LOCAL_USER, '-u', CURRENT_LOCAL_USER], stdout=subprocess.PIPE) psA_out = p.communicate() if psA_out[0].count(self.PROG_NAME) <= 1: -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git
This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch cvix/2.x in repository pyhoca-gui. commit a54a4444c2c4ca21226111d5319a5a53f5efa444 Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Mon Apr 14 16:27:46 2014 +0200 Make sure X2GoClientXConfig configuration files really get written to disk after recent changes to the inifile.py code. --- debian/changelog | 2 ++ 1 file changed, 2 insertions(+) diff --git a/debian/changelog b/debian/changelog index a54d8be..b500558 100644 --- a/debian/changelog +++ b/debian/changelog @@ -21,6 +21,8 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low * NSIS script: make sure SetOutPath gets called at the beginning of every section. * Show printing preferences when tray icon is in restricted mode. + * Make sure X2GoClientXConfig configuration files really get written to + disk after recent changes to the inifile.py code. -- Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Wed, 08 Jan 2014 21:28:37 +0100 -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git