mirror of
https://gitlab.com/openlp/packaging.git
synced 2024-12-22 13:02:50 +00:00
Display current version info during the Inno setup
This commit is contained in:
parent
ea3915175c
commit
d3a1f07108
@ -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"
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user