Skip to content

Commit

Permalink
FIx version numbers in history
Browse files Browse the repository at this point in the history
  • Loading branch information
plpolak committed Oct 23, 2024
1 parent e115670 commit 6cc7280
Show file tree
Hide file tree
Showing 7 changed files with 52 additions and 116 deletions.
8 changes: 4 additions & 4 deletions docs/history.txt
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
Version 1.6.11
Version 1.7.3
=================================
- Added support for Delphi 12 Athens.

Version 1.6.10
Version 1.7.2
=================================
- Added support for Delphi 11 Alexandria.

Version 1.6.9
Version 1.7.1
=================================
- Added support for Delphi 10.4 Sydney.

Version 1.6.8 - December 19, 2018
Version 1.7.0 - December 19, 2018
=================================
- Fix: IdModBusServer: Invalid check on databuffer length when reading/writing coils.
- Server sends an error response, when the received request contains invalid data.
Expand Down
12 changes: 6 additions & 6 deletions packages/DelphiModbus12Athens.dpk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package DelphiModbus12Athens;

{$R *.res}
package DelphiModbus12Athens;
{$R *.res}
{$IFDEF IMPLICITBUILDING This IFDEF should not be used by users}
{$ALIGN 8}
{$ASSERTIONS ON}
Expand Down Expand Up @@ -29,18 +29,18 @@ package DelphiModbus12Athens;
{$RUNONLY}
{$IMPLICITBUILD OFF}

requires
requires
rtl,
IndyCore,
IndyProtocols,
IndySystem;

contains
contains
IdModbusClient in '..\source\IdModbusClient.pas',
IdModbusServer in '..\source\IdModbusServer.pas',
ModbusConsts in '..\source\ModbusConsts.pas',
ModbusTypes in '..\source\ModbusTypes.pas',
ModbusStrConsts in '..\source\ModbusStrConsts.pas',
ModbusUtils in '..\source\ModbusUtils.pas';

end.
end.
128 changes: 25 additions & 103 deletions packages/DelphiModbus12Athens.dproj

Large diffs are not rendered by default.

Binary file modified packages/DelphiModbus12Athens.res
Binary file not shown.
18 changes: 16 additions & 2 deletions packages/dclDelphiModbus12Athens.dproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,12 @@
<MainSource>dclDelphiModbus12Athens.dpk</MainSource>
<Base>True</Base>
<Config Condition="'$(Config)'==''">Debug</Config>
<TargetedPlatforms>1</TargetedPlatforms>
<TargetedPlatforms>1048577</TargetedPlatforms>
<AppType>Package</AppType>
<FrameworkType>VCL</FrameworkType>
<ProjectVersion>20.1</ProjectVersion>
<ProjectVersion>20.2</ProjectVersion>
<Platform Condition="'$(Platform)'==''">Win32</Platform>
<ProjectName Condition="'$(ProjectName)'==''">dclDelphiModbus12Athens</ProjectName>
</PropertyGroup>
<PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''">
<Base>true</Base>
Expand All @@ -23,6 +24,11 @@
<CfgParent>Base</CfgParent>
<Base>true</Base>
</PropertyGroup>
<PropertyGroup Condition="('$(Platform)'=='Win64x' and '$(Base)'=='true') or '$(Base_Win64x)'!=''">
<Base_Win64x>true</Base_Win64x>
<CfgParent>Base</CfgParent>
<Base>true</Base>
</PropertyGroup>
<PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''">
<Cfg_1>true</Cfg_1>
<CfgParent>Base</CfgParent>
Expand Down Expand Up @@ -61,6 +67,13 @@
<PropertyGroup Condition="'$(Base_Win64)'!=''">
<DCC_UsePackage>vcl;rtl;xmlrtl;vclimg;vclactnband;vclx;$(DCC_UsePackage)</DCC_UsePackage>
</PropertyGroup>
<PropertyGroup Condition="'$(Base_Win64x)'!=''">
<DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace>
<BT_BuildType>Debug</BT_BuildType>
<VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo>
<VerInfo_Keys>CompanyName=;FileDescription=$(MSBuildProjectName);FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProgramID=com.embarcadero.$(MSBuildProjectName);ProductName=$(MSBuildProjectName);ProductVersion=1.0.0.0;Comments=</VerInfo_Keys>
<BCC_EnableBatchCompilation>true</BCC_EnableBatchCompilation>
</PropertyGroup>
<PropertyGroup Condition="'$(Cfg_1)'!=''">
<DCC_Define>RELEASE;$(DCC_Define)</DCC_Define>
<DCC_DebugInformation>0</DCC_DebugInformation>
Expand Down Expand Up @@ -115,6 +128,7 @@
<Platforms>
<Platform value="Win32">True</Platform>
<Platform value="Win64">False</Platform>
<Platform value="Win64x">True</Platform>
</Platforms>
</BorlandProject>
<ProjectFileVersion>12</ProjectFileVersion>
Expand Down
Binary file modified packages/dclDelphiModbus12Athens.res
Binary file not shown.
2 changes: 1 addition & 1 deletion source/ModbusConsts.pas
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ interface
MaxCoils = 2000;

const
DMB_VERSION = '1.7.0'; {Do not Localize}
DMB_VERSION = '1.7.3'; {Do not Localize}

const
DefaultLogTimeFormat = 'yyyy-mm-dd hh:nn:ss.zzz'; {Do not Localize}
Expand Down

0 comments on commit 6cc7280

Please sign in to comment.