parent
7399b13fd0
commit
8a3f00fd4c
|
@ -528,6 +528,7 @@ object frmMain: TfrmMain
|
|||
object cbRandomPreset: TComboBox
|
||||
Height = 25
|
||||
Width = 152
|
||||
MaxLength = -1
|
||||
OnChange = cbRandomPresetChange
|
||||
ParentFont = True
|
||||
Style = csDropDownList
|
||||
|
@ -561,11 +562,11 @@ object frmMain: TfrmMain
|
|||
end
|
||||
object tsClients: TTabSheet
|
||||
Caption = 'Clients'
|
||||
ClientHeight = 498
|
||||
ClientHeight = 500
|
||||
ClientWidth = 222
|
||||
ParentFont = True
|
||||
object lbClients: TListBox
|
||||
Height = 498
|
||||
Height = 500
|
||||
Width = 222
|
||||
Align = alClient
|
||||
OnDblClick = mnuGoToClientClick
|
||||
|
@ -578,13 +579,13 @@ object frmMain: TfrmMain
|
|||
end
|
||||
object tsLocations: TTabSheet
|
||||
Caption = 'Locations'
|
||||
ClientHeight = 498
|
||||
ClientHeight = 500
|
||||
ClientWidth = 222
|
||||
ParentFont = True
|
||||
object vstLocations: TVirtualStringTree
|
||||
Cursor = 63
|
||||
Left = 4
|
||||
Height = 462
|
||||
Height = 464
|
||||
Top = 4
|
||||
Width = 214
|
||||
Align = alClient
|
||||
|
@ -619,7 +620,7 @@ object frmMain: TfrmMain
|
|||
object pnlLocationControls: TPanel
|
||||
Left = 4
|
||||
Height = 24
|
||||
Top = 470
|
||||
Top = 472
|
||||
Width = 214
|
||||
Align = alBottom
|
||||
BorderSpacing.Around = 4
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
[Setup]
|
||||
AppName=CentrED
|
||||
AppVerName=CentrED 0.4.0
|
||||
AppVerName=CentrED 0.4.1
|
||||
AppPublisher=AKS DataBasis
|
||||
AppPublisherURL=http://www.aksdb.de/CentrED
|
||||
AppSupportURL=http://www.aksdb.de/CentrED
|
||||
|
@ -13,10 +13,10 @@ DefaultGroupName=AKS DataBasis\CentrED
|
|||
OutputBaseFilename=CentrED_win32
|
||||
Compression=lzma
|
||||
SolidCompression=true
|
||||
VersionInfoVersion=0.4.0
|
||||
VersionInfoVersion=0.4.1
|
||||
VersionInfoCompany=AKS DataBasis
|
||||
VersionInfoDescription=Client/Server based multiuser map editor
|
||||
VersionInfoTextVersion=0.4.0
|
||||
VersionInfoTextVersion=0.4.1
|
||||
VersionInfoCopyright=Andreas Schneider
|
||||
AppCopyright=Andreas Schneider
|
||||
InfoBeforeFile=Changelog.txt
|
||||
|
|
|
@ -1,11 +1,21 @@
|
|||
Changelog:
|
||||
[C] = Client, [S] = Server, [-] = Both/Unrelated
|
||||
|
||||
Version 0.4.1
|
||||
=============
|
||||
[C] Added random altitude to the elevate tool
|
||||
[C] Fixed Boundaries not being updated when using the spin edits
|
||||
[C] Fixed RegionControl to not react on mouseclicks when no region is selected
|
||||
[C] Fixed VirtualLayer crashing CentrED when scrolling to the edges of a map
|
||||
[C] Fixed elevation with the mouse wheel being far too high
|
||||
|
||||
Version 0.4.0
|
||||
=============
|
||||
[C] Added regional restrictions to accounts
|
||||
[C] Visualize these restrictions for users
|
||||
[C] Added visualization of these restrictions for users
|
||||
[C] Added better GTK2 compatibility to the Linux version
|
||||
[C] Added random altitude to the draw tool
|
||||
[S] Added more detailed startup messages
|
||||
[S] Changed config file to use XML
|
||||
[S] Bumped config file version to 3
|
||||
[-] Removed some memory leaks
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
const
|
||||
ProductVersion = '0.4.0';
|
||||
ProductVersion = '0.4.1';
|
||||
ProtocolVersion = 6;
|
||||
Revision = '64';
|
||||
Revision = '71';
|
||||
Copyright = '2008 Andreas Schneider';
|
||||
|
|
Loading…
Reference in New Issue