- Pushed version to 0.6

This commit is contained in:
Andreas Schneider 2009-12-22 20:51:43 +01:00
parent eb62553f5c
commit db0ef54660
7 changed files with 146 additions and 121 deletions

View File

@ -17,9 +17,9 @@
<LazDoc Paths="../doc"/>
<VersionInfo>
<UseVersionInfo Value="True"/>
<CurrentMajorRevNr Value="5"/>
<CurrentBuildNr Value="162"/>
<ProjectVersion Value="0.5.0.162"/>
<CurrentMajorRevNr Value="6"/>
<CurrentBuildNr Value="200"/>
<ProjectVersion Value="0.6.0.200"/>
<CompanyName Value="AKS DataBasis"/>
<FileDescription Value="UO CentrED"/>
<LegalCopyright Value="Andreas Schneider"/>
@ -350,15 +350,15 @@
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<Optimizations>
<OptimizationLevel Value="0"/>
<OptimizationLevel Value="3"/>
</Optimizations>
</CodeGeneration>
<Linking>
<Debugging>
<GenerateDebugInfo Value="True"/>
<UseHeaptrc Value="True"/>
<UseLineInfoUnit Value="False"/>
<UseExternalDbgSyms Value="True"/>
</Debugging>
<LinkSmart Value="True"/>
<Options>
<Win32>
<GraphicApplication Value="True"/>
@ -370,7 +370,7 @@
<IgnoredMessages idx4079="True" idx4080="True" idx4081="True" idx5024="True" idx5028="True"/>
</CompilerMessages>
<CustomOptions Value="-FE../bin/
#-dNoLogging"/>
-dNoLogging"/>
<CompilerPath Value="$(CompPath)"/>
</Other>
</CompilerOptions>

View File

@ -1,6 +1,6 @@
1 VERSIONINFO
FILEVERSION 0,5,0,162
PRODUCTVERSION 0,5,0,162
FILEVERSION 0,6,0,200
PRODUCTVERSION 0,6,0,200
{
BLOCK "StringFileInfo"
{
@ -9,13 +9,13 @@ PRODUCTVERSION 0,5,0,162
VALUE "Comments", "\000"
VALUE "CompanyName", "AKS DataBasis\000"
VALUE "FileDescription", "UO CentrED\000"
VALUE "FileVersion", "0.5.0.162\000"
VALUE "FileVersion", "0.6.0.200\000"
VALUE "InternalName", "\000"
VALUE "LegalCopyright", "Andreas Schneider\000"
VALUE "LegalTrademarks", "\000"
VALUE "OriginalFilename", "CentrED.exe\000"
VALUE "ProductName", "CentrED\000"
VALUE "ProductVersion", "0.5.0.162\000"
VALUE "ProductVersion", "0.6.0.200\000"
}
}
BLOCK "VarFileInfo"

View File

@ -11,7 +11,16 @@
<TargetFileExt Value=".exe"/>
</General>
<VersionInfo>
<ProjectVersion Value=""/>
<UseVersionInfo Value="True"/>
<CurrentMajorRevNr Value="6"/>
<CurrentBuildNr Value="200"/>
<ProjectVersion Value="0.6.0.200"/>
<CompanyName Value="AKS DataBasis"/>
<FileDescription Value="CentrED Server"/>
<InternalName Value="CentrED Server"/>
<LegalCopyright Value="Andreas Schneider"/>
<OriginalFilename Value="cedserver.exe"/>
<ProductName Value="CentrED"/>
</VersionInfo>
<PublishOptions>
<Version Value="2"/>
@ -129,13 +138,13 @@
<CodeGeneration>
<SmartLinkUnit Value="True"/>
<Optimizations>
<OptimizationLevel Value="0"/>
<OptimizationLevel Value="3"/>
</Optimizations>
</CodeGeneration>
<Linking>
<Debugging>
<GenerateDebugInfo Value="True"/>
<UseHeaptrc Value="True"/>
<UseLineInfoUnit Value="False"/>
<StripSymbols Value="True"/>
</Debugging>
<LinkSmart Value="True"/>
</Linking>

View File

@ -37,6 +37,8 @@ uses
{$I version.inc}
{$IFDEF WINDOWS}{$R cedserver.rc}{$ENDIF}
begin
Writeln('');
Writeln('CentrED Server Version ', ProductVersion);

View File

@ -3,7 +3,7 @@
[Setup]
AppName=CentrED
AppVerName=CentrED 0.5
AppVerName=CentrED 0.6
AppPublisher=AKS DataBasis
AppPublisherURL=http://www.aksdb.de/CentrED
AppSupportURL=http://www.aksdb.de/CentrED
@ -13,15 +13,15 @@ DefaultGroupName=AKS DataBasis\CentrED
OutputBaseFilename=CentrED_win32
Compression=lzma
SolidCompression=true
VersionInfoVersion=0.5
VersionInfoVersion=0.6
VersionInfoCompany=AKS DataBasis
VersionInfoDescription=Client/Server based multiuser map editor
VersionInfoTextVersion=0.5
VersionInfoTextVersion=0.6
VersionInfoCopyright=Andreas Schneider
AppCopyright=Andreas Schneider
InfoBeforeFile=Changelog.txt
SignTool=defsign $f
AppVersion=0.5
AppVersion=0.6
AppID={{77BCACC0-C2D9-470D-858F-A3D94A5F27A5}
SignedUninstaller=true
@ -35,6 +35,7 @@ Name: desktopicon; Description: {cm:CreateDesktopIcon}; GroupDescription: {cm:Ad
Source: ..\bin\CentrED.exe; DestDir: {app}; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
Source: ..\bin\CentrED.dat; DestDir: {app}
Source: ..\bin\nodraw.txt; DestDir: {app}
[Icons]
Name: {group}\CentrED; Filename: {app}\CentrED.exe

View File

@ -1,6 +1,19 @@
Changelog:
[C] = Client, [S] = Server, [-] = Both/Unrelated
Version 0.6
===========
[C] Added rendering of lightsources
[C] Added buttons to the largescale and region dialogs to pick locations from the game window
[-] Added support for larger tiledata/animdata/art files
[C] Added ability to define custom "nodraw" tiles (see Wiki)
[C] Changed static tile render order
[C] Changed translucent tiles to be more opaque
[C] Changed the format of locations and random presets to be less fragile
[C] Fixed a crash related to the Virtual Layer
[C] Fixed several smaller bugs
[S] Fixed memory leak
Version 0.5
===========
[C] Completely reworked rendering (should be much faster now)

View File

@ -1,5 +1,5 @@
const
ProductVersion = '0.5.0';
ProductVersion = '0.6.0';
ProtocolVersion = 6;
Revision = '162';
Revision = '200';
Copyright = '2009 Andreas Schneider';