mirror of
https://gitlab.com/openlp/packaging.git
synced 2024-12-22 21:12:50 +00:00
Merge with packaging trunk.
This commit is contained in:
commit
f59703015a
@ -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