This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 2916a52 Rename LICENSE.txt to COPYING. new 52d26f2 Windows build fix for "Rename LICENSE.txt to COPYING." new 8ac4185 Windows: Set the pyhoca-gui icon on pyhoca-gui.exe (Fixes: #548) 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 | 2 ++ nsis_template.py | 24 ++++++++++++------------ setup.py | 2 ++ 3 files changed, 16 insertions(+), 12 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 52d26f2a50b508c31e46a3f9efd1e0bdf41468ad Author: Mike DePaulo <mikedep333@gmail.com> Date: Sun Jul 13 10:25:44 2014 -0400 Windows build fix for "Rename LICENSE.txt to COPYING." --- nsis_template.py | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/nsis_template.py b/nsis_template.py index 2b37d93..2e79dda 100644 --- a/nsis_template.py +++ b/nsis_template.py @@ -60,7 +60,7 @@ InstallDirRegKey HKLM "Software\\{program_name}" "Install_Dir" !include MUI2.nsh !insertmacro MULTIUSER_PAGE_INSTALLMODE -!insertmacro MUI_PAGE_LICENSE LICENSE.txt +!insertmacro MUI_PAGE_LICENSE COPYING !insertmacro MUI_PAGE_DIRECTORY !insertmacro MUI_PAGE_COMPONENTS !insertmacro MUI_PAGE_INSTFILES @@ -125,17 +125,17 @@ InstallDirRegKey HKLM "Software\\{program_name}" "Install_Dir" ; License data ; Not exactly translated, but it shows what's needed -LicenseLangString myLicenseData ${{LANG_ENGLISH}} "LICENSE.txt" -LicenseLangString myLicenseData ${{LANG_DUTCH}} "LICENSE.txt" -;LicenseLangString myLicenseData ${{LANG_FRENCH}} "LICENSE.txt" -LicenseLangString myLicenseData ${{LANG_GERMAN}} "LICENSE.txt" -;LicenseLangString myLicenseData ${{LANG_KOREAN}} "LICENSE.txt" -LicenseLangString myLicenseData ${{LANG_RUSSIAN}} "LICENSE.txt" -LicenseLangString myLicenseData ${{LANG_SPANISH}} "LICENSE.txt" -LicenseLangString myLicenseData ${{LANG_SWEDISH}} "LICENSE.txt" -;LicenseLangString myLicenseData ${{LANG_TRADCHINESE}} "LICENSE.txt" -;LicenseLangString myLicenseData ${{LANG_SIMPCHINESE}} "LICENSE.txt" -;LicenseLangString myLicenseData ${{LANG_SLOVAK}} "LICENSE.txt" +LicenseLangString myLicenseData ${{LANG_ENGLISH}} "COPYING" +LicenseLangString myLicenseData ${{LANG_DUTCH}} "COPYING" +;LicenseLangString myLicenseData ${{LANG_FRENCH}} "COPYING" +LicenseLangString myLicenseData ${{LANG_GERMAN}} "COPYING" +;LicenseLangString myLicenseData ${{LANG_KOREAN}} "COPYING" +LicenseLangString myLicenseData ${{LANG_RUSSIAN}} "COPYING" +LicenseLangString myLicenseData ${{LANG_SPANISH}} "COPYING" +LicenseLangString myLicenseData ${{LANG_SWEDISH}} "COPYING" +;LicenseLangString myLicenseData ${{LANG_TRADCHINESE}} "COPYING" +;LicenseLangString myLicenseData ${{LANG_SIMPCHINESE}} "COPYING" +;LicenseLangString myLicenseData ${{LANG_SLOVAK}} "COPYING" LicenseData $(myLicenseData) -- 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 8ac4185b5ff75c2af050a3b8284e11202928f50a Author: Mike DePaulo <mikedep333@gmail.com> Date: Sun Jul 13 10:29:44 2014 -0400 Windows: Set the pyhoca-gui icon on pyhoca-gui.exe (Fixes: #548) --- debian/changelog | 2 ++ setup.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/debian/changelog b/debian/changelog index f3bf7fd..2421865 100644 --- a/debian/changelog +++ b/debian/changelog @@ -74,6 +74,8 @@ pyhoca-gui (0.5.0.0-0x2go1) UNRELEASED; urgency=low [ Mike DePaulo ] * New upstream version (0.5.0.0): + - Windows: Set the pyhoca-gui icon on pyhoca-gui.exe (Fixes: #548) + The icon will show up in Task Manager too. - Windows: Upgrade PulseAudio from 1.1 to 5.0-rev18 from OBS. Fixes choppy sound in Adobe Flash Player (Fixes: #533) - Windows: Upgrade from VcXsrv 1.14.2.0 to VcXsrv-xp 1.14.3.2 diff --git a/setup.py b/setup.py index 9603a64..3617006 100755 --- a/setup.py +++ b/setup.py @@ -230,12 +230,14 @@ class build_installer_bbfreeze(build_installer, Freezer, Command): if not os.path.exists(self.dist_dir): os.makedirs(self.dist_dir) + def do_build_exe(self): Freezer.__init__(self, self.dist_dir, includes=self.includes, excludes=self.excludes, ) self.addScript(SCRIPT_NAME, gui_only=True) + self.setIcon('pixmaps/pyhoca-gui.ico') Freezer.__call__(self) if self.distribution.has_data_files(): print "*** copy data files ***" -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git