- Added version info to the project options
- Added new icon
This commit is contained in:
parent
237c9765cd
commit
d769c7ddc3
|
@ -9,10 +9,22 @@
|
||||||
<SessionStorage Value="InProjectDir"/>
|
<SessionStorage Value="InProjectDir"/>
|
||||||
<MainUnit Value="0"/>
|
<MainUnit Value="0"/>
|
||||||
<TargetFileExt Value=".exe"/>
|
<TargetFileExt Value=".exe"/>
|
||||||
|
<Title Value="CentrED"/>
|
||||||
|
<Icon Value="0"/>
|
||||||
</General>
|
</General>
|
||||||
<LazDoc Paths="../doc"/>
|
<LazDoc Paths="../doc"/>
|
||||||
<VersionInfo>
|
<VersionInfo>
|
||||||
<ProjectVersion Value=""/>
|
<UseVersionInfo Value="True"/>
|
||||||
|
<AutoIncrementBuild Value="True"/>
|
||||||
|
<CurrentMajorRevNr Value="4"/>
|
||||||
|
<CurrentMinorRevNr Value="2"/>
|
||||||
|
<CurrentBuildNr Value="87"/>
|
||||||
|
<ProjectVersion Value="0.4.2.85"/>
|
||||||
|
<CompanyName Value="AKS DataBasis"/>
|
||||||
|
<FileDescription Value="UO CentrED"/>
|
||||||
|
<LegalCopyright Value="Andreas Schneider"/>
|
||||||
|
<OriginalFilename Value="CentrED.exe"/>
|
||||||
|
<ProductName Value="CentrED"/>
|
||||||
</VersionInfo>
|
</VersionInfo>
|
||||||
<PublishOptions>
|
<PublishOptions>
|
||||||
<Version Value="2"/>
|
<Version Value="2"/>
|
||||||
|
@ -263,8 +275,7 @@
|
||||||
</Options>
|
</Options>
|
||||||
</Linking>
|
</Linking>
|
||||||
<Other>
|
<Other>
|
||||||
<CustomOptions Value="-FE..\bin\
|
<CustomOptions Value="-FE../bin/
"/>
|
||||||
"/>
|
|
||||||
<CompilerPath Value="$(CompPath)"/>
|
<CompilerPath Value="$(CompPath)"/>
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
|
|
|
@ -32,7 +32,7 @@ uses
|
||||||
cthreads,
|
cthreads,
|
||||||
{$ENDIF}{$ENDIF}
|
{$ENDIF}{$ENDIF}
|
||||||
Interfaces, // this includes the LCL widgetset
|
Interfaces, // this includes the LCL widgetset
|
||||||
Forms, lnetvisual, LazOpenGLContext,
|
Forms, LResources, lnetvisual, LazOpenGLContext,
|
||||||
UdmNetwork, UfrmMain, UfrmLogin, UfrmInitialize, UfrmAccountControl,
|
UdmNetwork, UfrmMain, UfrmLogin, UfrmInitialize, UfrmAccountControl,
|
||||||
virtualtreeview_package, UfrmEditAccount, UfrmDrawSettings, UfrmBoundaries,
|
virtualtreeview_package, UfrmEditAccount, UfrmDrawSettings, UfrmBoundaries,
|
||||||
UfrmElevateSettings, UOverlayUI, UResourceManager, UfrmConfirmation,
|
UfrmElevateSettings, UOverlayUI, UResourceManager, UfrmConfirmation,
|
||||||
|
@ -41,11 +41,10 @@ uses
|
||||||
UGUIPlatformUtils, UPlatformTypes, UfrmRegionControl, UPackets,
|
UGUIPlatformUtils, UPlatformTypes, UfrmRegionControl, UPackets,
|
||||||
UPacketHandlers, UAdminHandling, UGameResources, ULandscape;
|
UPacketHandlers, UAdminHandling, UGameResources, ULandscape;
|
||||||
|
|
||||||
{$IFDEF Windows}
|
{$IFDEF WINDOWS}{$R CentrED.rc}{$ENDIF}
|
||||||
{$R *.res}
|
|
||||||
{$ENDIF}
|
|
||||||
|
|
||||||
begin
|
begin
|
||||||
|
{$I CentrED.lrs}
|
||||||
Application.Initialize;
|
Application.Initialize;
|
||||||
Application.CreateForm(TdmNetwork, dmNetwork);
|
Application.CreateForm(TdmNetwork, dmNetwork);
|
||||||
Application.Run;
|
Application.Run;
|
||||||
|
|
|
@ -0,0 +1,17 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||||
|
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||||
|
<assemblyIdentity version="1.0.0.0" processorArchitecture="*" name="CompanyName.ProductName.YourApp" type="win32"/>
|
||||||
|
<description>Your application description here.</description>
|
||||||
|
<dependency>
|
||||||
|
<dependentAssembly>
|
||||||
|
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
|
||||||
|
</dependentAssembly>
|
||||||
|
</dependency>
|
||||||
|
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||||
|
<security>
|
||||||
|
<requestedPrivileges>
|
||||||
|
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||||
|
</requestedPrivileges>
|
||||||
|
</security>
|
||||||
|
</trustInfo>
|
||||||
|
</assembly>
|
|
@ -0,0 +1,27 @@
|
||||||
|
1 VERSIONINFO
|
||||||
|
FILEVERSION 0,4,2,87
|
||||||
|
PRODUCTVERSION 0,4,2,85
|
||||||
|
{
|
||||||
|
BLOCK "StringFileInfo"
|
||||||
|
{
|
||||||
|
BLOCK "040904E4"
|
||||||
|
{
|
||||||
|
VALUE "Comments", "\000"
|
||||||
|
VALUE "CompanyName", "AKS DataBasis\000"
|
||||||
|
VALUE "FileDescription", "UO CentrED\000"
|
||||||
|
VALUE "FileVersion", "0.4.2.87\000"
|
||||||
|
VALUE "InternalName", "\000"
|
||||||
|
VALUE "LegalCopyright", "Andreas Schneider\000"
|
||||||
|
VALUE "LegalTrademarks", "\000"
|
||||||
|
VALUE "OriginalFilename", "CentrED.exe\000"
|
||||||
|
VALUE "ProductName", "CentrED\000"
|
||||||
|
VALUE "ProductVersion", "0.4.2.85\000"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
BLOCK "VarFileInfo"
|
||||||
|
{
|
||||||
|
VALUE "Translation", 0x0409, 0x04E4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
MAINICON ICON "CentrED.ico"
|
Binary file not shown.
Loading…
Reference in New Issue