Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PyHoca-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
X2Go
Client
PyHoca-GUI
Commits
03b4e45f
Commit
03b4e45f
authored
10 years ago
by
Mike DePaulo
Browse files
Options
Downloads
Patches
Plain Diff
Append "-YYYYMMDD" to the NSIS version string.
parent
16ed09d1
Branches
0.5.0.3-mswin
Tags
0.5.0.3-20150124-mswin
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+2
-1
2 additions, 1 deletion
setup.py
with
2 additions
and
1 deletion
setup.py
+
2
−
1
View file @
03b4e45f
...
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment