Stevan Pettit has proposed merging lp:~elderp/openlp/packaging-version into lp:openlp/packaging.
Requested reviews: OpenLP Core (openlp-core) For more details, see: https://code.launchpad.net/~elderp/openlp/packaging-version/+merge/144042 Added code so current version info is displayed to user during the Inno setup. -- https://code.launchpad.net/~elderp/openlp/packaging-version/+merge/144042 Your team OpenLP Core is requested to review the proposed merge of lp:~elderp/openlp/packaging-version into lp:openlp/packaging.
=== modified file 'windows/OpenLP-2.0.iss.default' --- windows/OpenLP-2.0.iss.default 2012-06-09 19:02:47 +0000 +++ windows/OpenLP-2.0.iss.default 2013-01-20 23:37:22 +0000 @@ -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" === modified file 'windows/windows-builder.py' --- windows/windows-builder.py 2013-01-01 01:04:23 +0000 +++ windows/windows-builder.py 2013-01-20 23:37:22 +0000 @@ -511,6 +511,7 @@ 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)
_______________________________________________ Mailing list: https://launchpad.net/~openlp-core Post to : [email protected] Unsubscribe : https://launchpad.net/~openlp-core More help : https://help.launchpad.net/ListHelp

