The branch, twofactorauth has been updated via 71c4582a1217ed4deeadf30df643b330012a8ba4 (commit) from 6e50edc5cc601ffe430639e6c1609b1a03e6c9b7 (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: man/pyhoca-gui.1 | 7 +++++++ pyhoca-gui | 1 + pyhoca/wxgui/frontend.py | 3 ++- 3 files changed, 10 insertions(+), 1 deletion(-) The diff of changes is: diff --git a/man/pyhoca-gui.1 b/man/pyhoca-gui.1 index d24fee1..b0cafa6 100644 --- a/man/pyhoca-gui.1 +++ b/man/pyhoca-gui.1 @@ -81,6 +81,10 @@ Show descriptive meta information on session profiles in menus (NOTE: this makes Restrict functionality of \fBpyhoca-gui\fR's main session manager icon that is shown in the notification area / system tray. This switch limits the icon 's functionality to a right-click menu that allows to raise the ,,About'' window and exit the application. .TP +\*(T<\fB\-\-restricted-trayicon\fR\*(T> +Restrict functionality of \fBpyhoca-gui\fR's main session manager icon that is shown in the notification area / system tray. This +switch limits the icon 's functionality to a right-click menu that allows to raise the ,,About'' window and exit the application. +.TP \*(T<\fB\-\-auto-connect\fR\*(T> Connect sessions via SSH public key authentication on application startup, if possible. .TP @@ -105,6 +109,9 @@ Disconnect from a server if a session on that server has been suspended. \*(T<\fB\-\-disconnect-on-terminate\fR\*(T> Disconnect from a server if a session on that server has been terminated. .TP +\*(T<\fB\-\-disable-splash\fR\*(T> +Do not show the application's splash screen. +.TP \*(T<\fB\-\-disable-options\fR\*(T> Grey-out the ,,Options'' menu item and thus disable the client configuration window. .TP diff --git a/pyhoca-gui b/pyhoca-gui index 720dc99..6047c42 100755 --- a/pyhoca-gui +++ b/pyhoca-gui @@ -179,6 +179,7 @@ x2go_gui_options = [ {'args':['--resume-all-on-connect'], 'default': False, 'action': 'store_true', 'help': 'auto-resume all suspended session on connect', }, {'args':['--disconnect-on-suspend'], 'default': False, 'action': 'store_true', 'help': 'disconnect a server if a session has been suspended', }, {'args':['--disconnect-on-terminate'], 'default': False, 'action': 'store_true', 'help': 'disconnect a server if a session has been terminated', }, + {'args':['--disable-splash'], 'default': False, 'action': 'store_true', 'help': 'disable the applications splash screen', }, {'args':['--disable-options'], 'default': False, 'action': 'store_true', 'help': 'disable the client options configuration window', }, {'args':['--disable-printingprefs'], 'default': False, 'action': 'store_true', 'help': 'disable the client\'s printing preferences window', }, {'args':['--disable-profilemanager'], 'default': False, 'action': 'store_true', 'help': 'disable the session profile manager window', }, diff --git a/pyhoca/wxgui/frontend.py b/pyhoca/wxgui/frontend.py index 06ba4c0..5196968 100644 --- a/pyhoca/wxgui/frontend.py +++ b/pyhoca/wxgui/frontend.py @@ -150,7 +150,8 @@ class PyHocaGUI(wx.App, x2go.X2goClient): self.SetVendorName(self.vendorname) self.startGUI() - splash.PyHocaGUI_SplashScreen() + if not self.args.disable_splash: + splash.PyHocaGUI_SplashScreen() wx.EndBusyCursor() return True hooks/post-receive -- pyhoca-gui.git (Python X2Go Client (wxPython GUI)) 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 "pyhoca-gui.git" (Python X2Go Client (wxPython GUI)).