This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 1fe8265 Running any part of the build process with "realtime" priority is a terrible idea new b6de2dc Small code cleanup in NSIS script. new cc7f7a3 List as "PyHoca-GUI (A graphical X2Go client)" in add/remove programs. This way, users sorting add/remove programs alphabetically can find it easily. 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 ++-- nsis_template.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 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 master in repository pyhoca-gui. commit b6de2dcabbe065de7ae2bb807ecff41e31b9da6c Author: Mike DePaulo <mikedep333@gmail.com> Date: Mon Jul 7 19:18:27 2014 -0400 Small code cleanup in NSIS script. --- nsis_template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nsis_template.py b/nsis_template.py index b4391c7..cfcf2e0 100644 --- a/nsis_template.py +++ b/nsis_template.py @@ -264,7 +264,7 @@ Section "{program_name} ($REQUIRED)" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "UninstallString" "$INSTDIR\\uninstall.exe" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "DisplayIcon" "$INSTDIR\\{icon_location}" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "DisplayName" "{uninstall_name}" - WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "DisplayVersion" "{program_version}" + WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "DisplayVersion" "${{VERSION}}" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "Publisher" "{publisher}" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "HelpLink" "{url}" WriteRegStr HKLM ${{UNINSTALL_REGKEY}} "URLInfoAbout" "{url}" -- 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 master in repository pyhoca-gui. commit cc7f7a33f7746e2ecec043859e57848bed4008ad Author: Mike DePaulo <mikedep333@gmail.com> Date: Mon Jul 7 19:21:11 2014 -0400 List as "PyHoca-GUI (A graphical X2Go client)" in add/remove programs. This way, users sorting add/remove programs alphabetically can find it easily. --- debian/changelog | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1576b19..d999a7b 100644 --- a/debian/changelog +++ b/debian/changelog @@ -78,8 +78,8 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low - Windows: Upgrade from VcXsrv 1.14.2.0 to VcXsrv-xp 1.14.3.2 Windows: Update nxproxy from 3.5.0.12 to 3.5.0.27 (linked against latest cygwin packages as of 2014-06-09) - - Windows: List as "X2Go PyHoca-GUI" instead of "PyHoca-GUI" in - add/remove programs + - Windows: List as "PyHoca-GUI (A graphical X2Go client)" + instead of "PyHoca-GUI" in add/remove programs - Windows: Use Unicode NSIS instead of regular NSIS. See x2goclient bug #528 for reasoning. - Windows: Reduce size of NSIS installer by switching to lzma solid compression diff --git a/setup.py b/setup.py index ee06ca3..9603a64 100755 --- a/setup.py +++ b/setup.py @@ -25,7 +25,7 @@ import platform PROGRAM_NAME = 'PyHoca-GUI' # Windows: UNINSTALL_NAME is for add/remove programs -UNINSTALL_NAME = 'X2Go PyHoca-GUI' +UNINSTALL_NAME = 'PyHoca-GUI (A graphical X2Go client)' SCRIPT_NAME = 'pyhoca-gui' PROGRAM_DESC = '%s is a cross-platform (Windows, MacOS X, Linux) graphical X2Go client.' % PROGRAM_NAME PROGRAM_DESC_SHORT = '%s is a graphical X2Go client.' % PROGRAM_NAME -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git