This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 60ddb61 Fix same typo in shebang-sed expression (for RHEL builds). new 396b09f Find two more Menu.Append*() calls that required turning arguments into positional arguments (see above). new a160084 Version bump to 0.6.1.0 (to denote that this release has X2Go Kdrive support). 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 | 4 +++- man/man1/pyhoca-gui.1 | 2 +- pyhoca-gui.spec | 2 +- pyhoca/wxgui/__init__.py | 2 +- pyhoca/wxgui/menus_taskbar.py | 4 ++-- 5 files changed, 8 insertions(+), 6 deletions(-) -- Alioth's /home/x2go-admin/maintenancescripts/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 master in repository pyhoca-gui. commit 396b09fb91ab0fc83b3fd070bcbe43cca460c5fb Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Dec 11 15:20:33 2019 +0100 Find two more Menu.Append*() calls that required turning arguments into positional arguments (see above). --- debian/changelog | 2 ++ pyhoca/wxgui/menus_taskbar.py | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/debian/changelog b/debian/changelog index ebbf0d9..fce5317 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,8 @@ pyhoca-gui (0.6.0.0-0x2go2) UNRELEASED; urgency=medium - Add version check with gi.require_version for Notify GIR. - profilemanager: With PyWxGTK 4.0, use SetItem and InsertItem rather than deprecated SetStringItem and InsertStringItem. + - Find two more Menu.Append*() calls that required turning arguments + into positional arguments (see above). * debian/control: + Switch from Py2 to Py3 (B-Ds and Ds). + Bump DH compat level to version 9. diff --git a/pyhoca/wxgui/menus_taskbar.py b/pyhoca/wxgui/menus_taskbar.py index 93bee28..9ea048e 100644 --- a/pyhoca/wxgui/menus_taskbar.py +++ b/pyhoca/wxgui/menus_taskbar.py @@ -398,7 +398,7 @@ class PyHocaGUI_Menu_TaskbarProfileSharedFolders(wx.Menu): self.AppendSeparator() - _remember_shared_folders_item = self.AppendCheckItem(id=ID_REMEMBERSHAREDFOLDERS, text=_("Restore shares in next session")) + _remember_shared_folders_item = self.AppendCheckItem(ID_REMEMBERSHAREDFOLDERS, _("Restore shares in next session")) if profile_name not in self._PyHocaGUI._remember_shared_folders: self._PyHocaGUI._remember_shared_folders[profile_name] = self._PyHocaGUI.get_profile_config(profile_name, 'restoreexports') _remember_shared_folders_item.Check(self._PyHocaGUI._remember_shared_folders[profile_name]) @@ -588,7 +588,7 @@ class PyHocaGUI_Menu_TaskbarSessionProfile(wx.Menu): _useexports = self._PyHocaGUI.get_profile_config(profile_name, 'useexports') if profile_name in self._PyHocaGUI._temp_disabled_profile_names: - _connecting_info = self.Append(wx.NewId(), text=_('Currently connecting...')) + _connecting_info = self.Append(wx.NewId(), _('Currently connecting...')) _connecting_info.Enable(False) elif self._PyHocaGUI.args.single_session_profile and \ -- Alioth's /home/x2go-admin/maintenancescripts/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 master in repository pyhoca-gui. commit a160084a152943725c60807b6b952b7b7260be2e Author: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Date: Wed Dec 11 15:24:06 2019 +0100 Version bump to 0.6.1.0 (to denote that this release has X2Go Kdrive support). --- debian/changelog | 2 +- man/man1/pyhoca-gui.1 | 2 +- pyhoca-gui.spec | 2 +- pyhoca/wxgui/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index fce5317..07ef6dc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -pyhoca-gui (0.6.0.0-0x2go2) UNRELEASED; urgency=medium +pyhoca-gui (0.6.1.0-0x2go1) UNRELEASED; urgency=medium * New upstream version (0.6.0.0): - PyHocaGUI.OnExit(): Return an exitcode. diff --git a/man/man1/pyhoca-gui.1 b/man/man1/pyhoca-gui.1 index 6df81f2..9f42d98 100644 --- a/man/man1/pyhoca-gui.1 +++ b/man/man1/pyhoca-gui.1 @@ -6,7 +6,7 @@ \\$2 \(la\\$1\(ra\\$3 .. .if \n(.g .mso www.tmac -.TH pyhoca-gui 1 "Nov 2019" "Version 0.6.0.0" "X2Go Application" +.TH pyhoca-gui 1 "Dec 2019" "Version 0.6.1.0" "X2Go Application" .SH NAME pyhoca-gui \- graphical X2Go client applet written in Python .SH SYNOPSIS diff --git a/pyhoca-gui.spec b/pyhoca-gui.spec index 6a82b22..135822a 100644 --- a/pyhoca-gui.spec +++ b/pyhoca-gui.spec @@ -1,5 +1,5 @@ Name: pyhoca-gui -Version: 0.6.0.0 +Version: 0.6.1.0 Release: 0.0x2go1%{?dist} Summary: Graphical X2Go client written in (wx)Python diff --git a/pyhoca/wxgui/__init__.py b/pyhoca/wxgui/__init__.py index ee23174..e5ac0b3 100644 --- a/pyhoca/wxgui/__init__.py +++ b/pyhoca/wxgui/__init__.py @@ -18,4 +18,4 @@ # Free Software Foundation, Inc., # 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. -__VERSION__ = '0.6.0.0' +__VERSION__ = '0.6.1.0' -- Alioth's /home/x2go-admin/maintenancescripts/git/hooks/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git