This is an automated email from the git hooks/post-receive script. x2go pushed a change to branch master in repository pyhoca-gui. from 7bed708 Windows: Include all fonts in NSIS installer, make them optional, and install only "misc" by default. (Fixes: #108) new 1442f57 Append "-YYYYMMDD" to the NSIS version string. The 1 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: setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) -- 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 1442f57a5f9101145de2d264594eb3a472840f2b Author: Mike DePaulo <mikedep333@gmail.com> Date: Sat Jan 24 11:28:25 2015 -0500 Append "-YYYYMMDD" to the NSIS version string. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 64aeec9..ef0734b 100755 --- a/setup.py +++ b/setup.py @@ -22,6 +22,7 @@ import sys import os import platform +import datetime PROGRAM_NAME = 'PyHoca-GUI' # Windows: UNINSTALL_NAME is for add/remove programs @@ -35,7 +36,7 @@ __VERSION__ = '0.0.0.0' for line in file(os.path.join('pyhoca', 'wxgui', '__init__.py')).readlines(): if (line.startswith('__VERSION__')): exec(line.strip()) -PROGRAM_VERSION = __VERSION__ +PROGRAM_VERSION = __VERSION__ + "-" + datetime.date.today().strftime('%Y%m%d') PROGRAM_ICON = "pixmaps/pyhoca_x2go-logo-ubuntu.ico" # Windows: UNINSTALL_ICON is for add/remove programs. -- Alioth's /srv/git/_hooks_/post-receive-email on /srv/git/code.x2go.org/pyhoca-gui.git