This is an automated email from the git hooks/post-receive script. x2go pushed a commit to branch master in repository pyhoca-gui. commit 59c9cf5e9d224cb93535762c7cab7b9f57aaaa8c Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Tue Apr 15 08:05:53 2014 +0200 Make broker support available for the MS Windows build of PyHoca-GUI. --- debian/changelog | 1 + pyhoca/wxgui/launcher.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 0b8edaf..0719443 100644 --- a/debian/changelog +++ b/debian/changelog @@ -39,6 +39,7 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low - Properly set focus in broker logon window (default: password, if no username provided: username, if no URL provided: broker-URL field). - Fix check_running() method in PyHocaGUI_Launcher on MS Windows. + - Make broker support available for the MS Windows build of PyHoca-GUI. - Update English / German translation. -- 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 57d8ffd..b09bd11 100644 --- a/pyhoca/wxgui/launcher.py +++ b/pyhoca/wxgui/launcher.py @@ -303,7 +303,7 @@ VERSION: %s if X2GOCLIENT_OS == 'Windows': p_contribopts = p.add_argument_group('XServer options (MS Windows only)') p_portableopts = p.add_argument_group('File locations for portable setups (MS Windows only)') - _option_groups = ((p_guiopts, x2go_gui_options), (p_debugopts, debug_options), (p_contribopts, contrib_options), (p_portableopts, portable_options), (p_backendopts, backend_options), ) + _option_groups = ((p_guiopts, x2go_gui_options), (p_brokeropts, broker_options), (p_debugopts, debug_options), (p_contribopts, contrib_options), (p_portableopts, portable_options), (p_backendopts, backend_options), ) else: _option_groups = ((p_guiopts, x2go_gui_options), (p_brokeropts, broker_options), (p_debugopts, debug_options), (p_portableopts, portable_options), (p_backendopts, backend_options), ) for (p_group, opts) in _option_groups: -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git