Mercurial > fife-parpg
changeset 686:86b4d91d9e52
Patch by barra:
* Changes to the setup script and the iss installer for the 0.3.2r2 release
* Fixed typo by prock (I'm still the king of typos though :-p)
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Mon, 06 Dec 2010 20:29:38 +0000 |
parents | 2a1e47d3dab2 |
children | 55c1baa3cb48 |
files | CHANGES build/win32/installer/fife.iss setup.py |
diffstat | 3 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES Mon Dec 06 19:30:17 2010 +0000 +++ b/CHANGES Mon Dec 06 20:29:38 2010 +0000 @@ -16,7 +16,7 @@ === Engine === * Instances now inherit blocking property from objects (#514) * Added additional flag to Instance for overriding blocking attribute (r3520) - * FIFE::Exception is now derrived from std::runtime_error. (#511) + * FIFE::Exception is now derived from std::runtime_error. (#511) * Fixed the image/animation functions to consider zoom level (r3513) === Editor ===
--- a/build/win32/installer/fife.iss Mon Dec 06 19:30:17 2010 +0000 +++ b/build/win32/installer/fife.iss Mon Dec 06 20:29:38 2010 +0000 @@ -6,9 +6,9 @@ ; Do not use the same AppId value in installers for other applications. ; (To generate a new GUID, click Tools | Generate GUID inside the IDE.) AppId={{99CDEFC4-8CC3-410A-ABB9-FC58F61DF70E} -AppName=FIFE 0.3.2 +AppName=FIFE 0.3.2r2 ; Version is yyyy.mm -AppVerName=FIFE 0.3.2 +AppVerName=FIFE 0.3.2r2 AppPublisher=FIFE Team AppPublisherURL=http://www.fifengine.net/ AppSupportURL=http://www.fifengine.net/ @@ -21,7 +21,7 @@ LicenseFile=license.rtf Compression=lzma SolidCompression=yes -OutputBaseFilename=FIFE_0.3.2_installer_win32 +OutputBaseFilename=FIFE_0.3.2r2_installer_win32 OutputDir=. DisableReadyPage=yes @@ -65,7 +65,7 @@ Name: "{group}\{cm:UninstallProgram,FIFE}"; Filename: "{uninstallexe}" [Run] -Filename: "{app}\engine\fife-0.3.2.win32.exe"; +Filename: "{app}\engine\fife-0.3.2r2.win32.exe";
--- a/setup.py Mon Dec 06 19:30:17 2010 +0000 +++ b/setup.py Mon Dec 06 20:29:38 2010 +0000 @@ -33,7 +33,7 @@ setup(name='fife', - version='0.3.2', + version='0.3.2r2', description='Flexible Isometric Free Engine', url='www.fifengine.net', packages = ['fife', 'fife.extensions', 'fife.extensions.pychan', 'fife.extensions.pychan.widgets', 'fife.extensions.pychan.widgets.ext', 'fife.extensions.serializers' ],