Display current version info during the Inno setup

This commit is contained in:
ElderP 2013-01-20 18:10:49 -05:00
parent ea3915175c
commit d3a1f07108
2 changed files with 2 additions and 1 deletions

View File

@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
#define AppName "OpenLP"
#define AppVerName "OpenLP 2.0"
#define AppVerName "OpenLP %(display_version)s"
#define AppPublisher "OpenLP Developers"
#define AppURL "http://openlp.org/"
#define AppExeName "OpenLP.exe"

View File

@ -511,6 +511,7 @@ class WindowsBuilder(object):
input = open(os.path.join(self.script_path,
u'OpenLP-2.0.iss.default'), u'r').read()
output = input.replace(u'%(branch)s', self.branch_path)
output = output.replace(u'%(display_version)s', self.version)
outfile = open(os.path.join(self.script_path,
u'OpenLP-2.0.iss'), u'w')
outfile.write(output)