delphimodbus-cvs Mailing List for Delphi ModBusTCP library
Brought to you by:
plpolak
You can subscribe to this list here.
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
(23) |
Feb
(16) |
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(10) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(3) |
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
(2) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2010 |
Jan
|
Feb
(89) |
Mar
(2) |
Apr
|
May
(15) |
Jun
(21) |
Jul
(2) |
Aug
(6) |
Sep
(4) |
Oct
|
Nov
|
Dec
|
2011 |
Jan
|
Feb
|
Mar
|
Apr
(3) |
May
|
Jun
(3) |
Jul
(1) |
Aug
(12) |
Sep
(2) |
Oct
|
Nov
(1) |
Dec
|
2012 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(4) |
Oct
|
Nov
(1) |
Dec
|
2013 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(5) |
Nov
|
Dec
|
2014 |
Jan
(3) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(6) |
Nov
|
Dec
|
From: Pieter P. <pl...@us...> - 2014-10-07 13:48:30
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29380 Modified Files: history.txt Log Message: Update version history Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.64 retrieving revision 1.65 diff -C2 -d -r1.64 -r1.65 *** history.txt 7 Oct 2014 13:34:50 -0000 1.64 --- history.txt 7 Oct 2014 13:48:28 -0000 1.65 *************** *** 1,2 **** --- 1,7 ---- + Version 1.6.? - + =============================== + - Fix: TIdModbusServer did nog allow access to the last register of the + configured range (MaxRegister property). + Version 1.6.3 - October 7, 2014 =============================== |
From: Pieter P. <pl...@us...> - 2014-10-07 13:47:17
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29296 Modified Files: IdModbusServer.pas Log Message: Fix ModBusServer when accessing registers on the upper edge Index: IdModbusServer.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/IdModbusServer.pas,v retrieving revision 1.39 retrieving revision 1.40 diff -C2 -d -r1.39 -r1.40 *** IdModbusServer.pas 7 Oct 2014 13:42:48 -0000 1.39 --- IdModbusServer.pas 7 Oct 2014 13:47:15 -0000 1.40 *************** *** 540,544 **** iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) --- 540,544 ---- iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount - 1) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) *************** *** 615,619 **** iCount := 1; ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) --- 615,619 ---- iCount := 1; ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount - 1) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) *************** *** 643,647 **** iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) --- 643,647 ---- iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount - 1) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) *************** *** 673,677 **** iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) --- 673,677 ---- iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount - 1) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) |
From: Pieter P. <pl...@us...> - 2014-10-07 13:42:50
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29003 Modified Files: IdModbusServer.pas Log Message: Fix ModBusServer when accessing registers on the upper edge Index: IdModbusServer.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/IdModbusServer.pas,v retrieving revision 1.38 retrieving revision 1.39 diff -C2 -d -r1.38 -r1.39 *** IdModbusServer.pas 14 Jan 2014 15:21:20 -0000 1.38 --- IdModbusServer.pas 7 Oct 2014 13:42:48 -0000 1.39 *************** *** 575,579 **** iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) --- 575,579 ---- iRegNr := GetRegNr(Swap16(Word((@ReceiveBuffer.MBPData[0])^))); iCount := Swap16(Word((@ReceiveBuffer.MBPData[2])^)); ! if ((iRegNr < FMinRegister) or ((iRegNr + iCount - 1) > FMaxRegister)) then {$IFDEF DMB_INDY10} SendError(AContext, mbeIllegalRegister, ReceiveBuffer) |
From: Pieter P. <pl...@us...> - 2014-10-07 13:34:52
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28567 Modified Files: history.txt Log Message: Update version history Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.63 retrieving revision 1.64 diff -C2 -d -r1.63 -r1.64 *** history.txt 16 Apr 2014 12:21:24 -0000 1.63 --- history.txt 7 Oct 2014 13:34:50 -0000 1.64 *************** *** 1,2 **** --- 1,6 ---- + Version 1.6.3 - October 7, 2014 + =============================== + - Added support for Delphi XE7. + Version 1.6.2 - April 16, 2014 ============================== |
From: Pieter P. <pl...@us...> - 2014-10-07 13:34:32
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28550 Modified Files: ModbusConsts.pas ModBusCompiler.inc Log Message: Update version: add support for Delphi XE7 Index: ModbusConsts.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModbusConsts.pas,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** ModbusConsts.pas 14 Jan 2014 15:21:21 -0000 1.31 --- ModbusConsts.pas 7 Oct 2014 13:34:30 -0000 1.32 *************** *** 67,71 **** const ! DMB_VERSION = '1.6.2'; {Do not Localize} const --- 67,71 ---- const ! DMB_VERSION = '1.6.3'; {Do not Localize} const Index: ModBusCompiler.inc =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModBusCompiler.inc,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ModBusCompiler.inc 16 Apr 2014 12:18:18 -0000 1.12 --- ModBusCompiler.inc 7 Oct 2014 13:34:30 -0000 1.13 *************** *** 236,239 **** --- 236,261 ---- {$DEFINE DMB_DELPHIXE6_ONLY} {$ENDIF} + {$IFDEF VER280} + {$DEFINE DMB_DELPHI1} + {$DEFINE DMB_DELPHI2} + {$DEFINE DMB_DELPHI3} + {$DEFINE DMB_DELPHI4} + {$DEFINE DMB_DELPHI5} + {$DEFINE DMB_DELPHI6} + {$DEFINE DMB_DELPHI7} + {$DEFINE DMB_DELPHI2005} + {$DEFINE DMB_DELPHI2006} + {$DEFINE DMB_DELPHI2007} + {$DEFINE DMB_DELPHI2009} + {$DEFINE DMB_DELPHI2010} + {$DEFINE DMB_DELPHIXE} + {$DEFINE DMB_DELPHIXE2} + {$DEFINE DMB_DELPHIXE3} + {$DEFINE DMB_DELPHIXE4} + {$DEFINE DMB_DELPHIXE5} + {$DEFINE DMB_DELPHIXE6} + {$DEFINE DMB_DELPHIXE7} + {$DEFINE DMB_DELPHIXE7_ONLY} + {$ENDIF} |
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28510 Added Files: PackagesDelphiModbusXE7.groupproj DelphiModbusXE7.dproj DelphiModbusXE7.dpk dclDelphiModbusXE7.dproj dclDelphiModbusXE7.dpk Log Message: Add packages for Delphi XE7 --- NEW FILE: DelphiModbusXE7.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: PackagesDelphiModbusXE7.groupproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dclDelphiModbusXE7.dpk --- package dclDelphiModbusXE7; {$R *.res} {$R '..\source\ModbusReg.dcr'} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE DEBUG} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Delphi Modbus components'} {$DESIGNONLY} {$IMPLICITBUILD OFF} requires rtl, DelphiModbusXE7, vcl, designide, xmlrtl, vclactnband, vclx, vclimg; contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas'; end. --- NEW FILE: DelphiModbusXE7.dpk --- package DelphiModbusXE7; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO OFF} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE DEBUG} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Delphi Modbus components runtime package'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl, IndyCore, IndyProtocols, IndySystem; 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. --- NEW FILE: dclDelphiModbusXE7.dproj --- (This appears to be a binary file; contents omitted.) |
From: Pieter P. <pl...@us...> - 2014-04-16 12:21:26
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7452 Modified Files: history.txt Log Message: Set release date Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.62 retrieving revision 1.63 diff -C2 -d -r1.62 -r1.63 *** history.txt 16 Apr 2014 12:18:42 -0000 1.62 --- history.txt 16 Apr 2014 12:21:24 -0000 1.63 *************** *** 1,4 **** ! Version 1.6.2 - ! ================================ - Added support for Delphi XE6. - Added missing component flags to enable design-time use of the components --- 1,4 ---- ! Version 1.6.2 - April 16, 2014 ! ============================== - Added support for Delphi XE6. - Added missing component flags to enable design-time use of the components |
From: Pieter P. <pl...@us...> - 2014-04-16 12:18:44
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7239/docs Modified Files: history.txt readme.txt Log Message: Update documentation Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.61 retrieving revision 1.62 diff -C2 -d -r1.61 -r1.62 *** history.txt 14 Jan 2014 15:20:09 -0000 1.61 --- history.txt 16 Apr 2014 12:18:42 -0000 1.62 *************** *** 1,4 **** --- 1,5 ---- Version 1.6.2 - ================================ + - Added support for Delphi XE6. - Added missing component flags to enable design-time use of the components in mobile targets (iOS and Android). Index: readme.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/readme.txt,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** readme.txt 2 Oct 2013 12:19:37 -0000 1.18 --- readme.txt 16 Apr 2014 12:18:42 -0000 1.19 *************** *** 9,15 **** ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2, XE3, XE4 and XE5. The components are based on the Internet Direct ! (aka 'Indy') components, which ship with Delphi versions 6 and up. Only native ! development is supported (no .NET version is available). For Delphi 5 and 6, you should download the latest Indy version 9.0 from the --- 9,15 ---- ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2, XE3, XE4, XE5 and XE6. The components are based on the Internet ! Direct (aka 'Indy') components, which ship with Delphi versions 6 and up. Only ! native development is supported (no .NET version is available). For Delphi 5 and 6, you should download the latest Indy version 9.0 from the |
From: Pieter P. <pl...@us...> - 2014-04-16 12:18:20
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7220 Modified Files: ModBusCompiler.inc Log Message: Add Delphi XE6 compiler support Index: ModBusCompiler.inc =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModBusCompiler.inc,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ModBusCompiler.inc 2 Oct 2013 12:19:18 -0000 1.11 --- ModBusCompiler.inc 16 Apr 2014 12:18:18 -0000 1.12 *************** *** 215,218 **** --- 215,240 ---- {$DEFINE DMB_DELPHIXE5_ONLY} {$ENDIF} + {$IFDEF VER270} + {$DEFINE DMB_DELPHI1} + {$DEFINE DMB_DELPHI2} + {$DEFINE DMB_DELPHI3} + {$DEFINE DMB_DELPHI4} + {$DEFINE DMB_DELPHI5} + {$DEFINE DMB_DELPHI6} + {$DEFINE DMB_DELPHI7} + {$DEFINE DMB_DELPHI2005} + {$DEFINE DMB_DELPHI2006} + {$DEFINE DMB_DELPHI2007} + {$DEFINE DMB_DELPHI2009} + {$DEFINE DMB_DELPHI2010} + {$DEFINE DMB_DELPHIXE} + {$DEFINE DMB_DELPHIXE2} + {$DEFINE DMB_DELPHIXE3} + {$DEFINE DMB_DELPHIXE4} + {$DEFINE DMB_DELPHIXE5} + {$DEFINE DMB_DELPHIXE6} + {$DEFINE DMB_DELPHIXE6_ONLY} + {$ENDIF} + {$IFDEF DMB_DELPHI2005} |
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7167 Added Files: PackagesDelphiModbusXE6.groupproj DelphiModbusXE6.dproj DelphiModbusXE6.dpk dclDelphiModbusXE6.dproj dclDelphiModbusXE6.dpk Log Message: Add packages for Delphi XE6 --- NEW FILE: DelphiModbusXE6.dpk --- package DelphiModbusXE6; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE DEBUG} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Delphi Modbus components runtime package'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl, IndyCore, IndyProtocols, IndySystem; 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. --- NEW FILE: dclDelphiModbusXE6.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: PackagesDelphiModbusXE6.groupproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DelphiModbusXE6.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dclDelphiModbusXE6.dpk --- package dclDelphiModbusXE6; {$R *.res} {$R '..\source\ModbusReg.dcr'} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'Delphi Modbus components'} {$DESIGNONLY} {$IMPLICITBUILD OFF} {$DEFINE DEBUG} requires rtl, DelphiModbusXE6, vcl, designide, xmlrtl, vclactnband, vclx, vclimg; contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas'; end. |
From: Pieter P. <pl...@us...> - 2014-01-14 15:21:23
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9370 Modified Files: IdModbusClient.pas IdModbusServer.pas ModbusConsts.pas Log Message: Update version: include missing component flags Index: ModbusConsts.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModbusConsts.pas,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -d -r1.30 -r1.31 *** ModbusConsts.pas 2 Oct 2013 12:19:18 -0000 1.30 --- ModbusConsts.pas 14 Jan 2014 15:21:21 -0000 1.31 *************** *** 67,71 **** const ! DMB_VERSION = '1.6.1'; {Do not Localize} const --- 67,71 ---- const ! DMB_VERSION = '1.6.2'; {Do not Localize} const Index: IdModbusClient.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/IdModbusClient.pas,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** IdModbusClient.pas 23 Apr 2013 08:59:11 -0000 1.33 --- IdModbusClient.pas 14 Jan 2014 15:21:20 -0000 1.34 *************** *** 47,50 **** --- 47,61 ---- type + {$IFDEF DMB_DELPHIXE3} + [ComponentPlatformsAttribute(pidWin32 or pidWin64 or + pidLinux32 or + {$IFDEF DMB_DELPHIXE5} + pidAndroid or + {$ENDIF} + {$IFDEF DMB_DELPHIXE4} + pidiOSDevice or pidiOSSimulator or + {$ENDIF} + pidOSX32)] + {$ENDIF} TIdModBusClient = class(TIdTCPClient) private Index: IdModbusServer.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/IdModbusServer.pas,v retrieving revision 1.37 retrieving revision 1.38 diff -C2 -d -r1.37 -r1.38 *** IdModbusServer.pas 10 Apr 2013 06:35:07 -0000 1.37 --- IdModbusServer.pas 14 Jan 2014 15:21:20 -0000 1.38 *************** *** 94,97 **** --- 94,108 ---- type + {$IFDEF DMB_DELPHIXE3} + [ComponentPlatformsAttribute(pidWin32 or pidWin64 or + pidLinux32 or + {$IFDEF DMB_DELPHIXE5} + pidAndroid or + {$ENDIF} + {$IFDEF DMB_DELPHIXE4} + pidiOSDevice or pidiOSSimulator or + {$ENDIF} + pidOSX32)] + {$ENDIF} {$IFDEF DMB_INDY10} TIdModBusServer = class(TIdCustomTCPServer) |
From: Pieter P. <pl...@us...> - 2014-01-14 15:20:49
|
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9315 Modified Files: dclDelphiModbusXE5.dproj DelphiModbusXE5.dproj Log Message: Update projects to XE5 update 2 Index: dclDelphiModbusXE5.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/dclDelphiModbusXE5.dproj,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** dclDelphiModbusXE5.dproj 15 Oct 2013 14:07:39 -0000 1.2 --- dclDelphiModbusXE5.dproj 14 Jan 2014 15:20:47 -0000 1.3 *************** *** 8,12 **** <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> ! <ProjectVersion>15.1</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> --- 8,12 ---- <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> ! <ProjectVersion>15.3</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> Index: DelphiModbusXE5.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/DelphiModbusXE5.dproj,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DelphiModbusXE5.dproj 15 Oct 2013 14:07:39 -0000 1.2 --- DelphiModbusXE5.dproj 14 Jan 2014 15:20:47 -0000 1.3 *************** *** 8,12 **** <AppType>Package</AppType> <FrameworkType>None</FrameworkType> ! <ProjectVersion>15.1</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> --- 8,12 ---- <AppType>Package</AppType> <FrameworkType>None</FrameworkType> ! <ProjectVersion>15.3</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> |
From: Pieter P. <pl...@us...> - 2014-01-14 15:20:12
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv9280 Modified Files: history.txt Log Message: Update history Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.60 retrieving revision 1.61 diff -C2 -d -r1.60 -r1.61 *** history.txt 15 Oct 2013 14:08:34 -0000 1.60 --- history.txt 14 Jan 2014 15:20:09 -0000 1.61 *************** *** 1,2 **** --- 1,7 ---- + Version 1.6.2 - + ================================ + - Added missing component flags to enable design-time use of the components + in mobile targets (iOS and Android). + Version 1.6.1 - October 15, 2013 ================================ |
From: Pieter P. <pl...@us...> - 2013-10-15 14:08:36
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29062 Modified Files: history.txt Log Message: Set release date Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.59 retrieving revision 1.60 diff -C2 -d -r1.59 -r1.60 *** history.txt 2 Oct 2013 12:19:37 -0000 1.59 --- history.txt 15 Oct 2013 14:08:34 -0000 1.60 *************** *** 1,4 **** ! Version 1.6.1 - September 17, 2013 ! ================================== - Added support for Delphi XE5 (including Android targets). --- 1,4 ---- ! Version 1.6.1 - October 15, 2013 ! ================================ - Added support for Delphi XE5 (including Android targets). |
From: Pieter P. <pl...@us...> - 2013-10-15 14:07:42
|
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28962 Modified Files: dclDelphiModbusXE5.dproj DelphiModbusXE5.dproj PackagesDelphiModbusXE5.groupproj Log Message: Fix packages for Delphi XE5 Index: dclDelphiModbusXE5.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/dclDelphiModbusXE5.dproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dclDelphiModbusXE5.dproj 2 Oct 2013 12:18:59 -0000 1.1 --- dclDelphiModbusXE5.dproj 15 Oct 2013 14:07:39 -0000 1.2 *************** *** 1,16 **** <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <ProjectGuid>{5B32707B-13EE-44BE-9ED6-A847D4BB9A14}</ProjectGuid> <MainSource>dclDelphiModbusXE5.dpk</MainSource> <Base>True</Base> <Config Condition="'$(Config)'==''">Debug</Config> ! <Platform Condition="'$(Platform)'==''">Win32</Platform> ! <TargetedPlatforms>7</TargetedPlatforms> <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> <Cfg_1>true</Cfg_1> --- 1,27 ---- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <ProjectGuid>{FE84541C-0734-4767-A0EF-53F9B793F2A9}</ProjectGuid> <MainSource>dclDelphiModbusXE5.dpk</MainSource> <Base>True</Base> <Config Condition="'$(Config)'==''">Debug</Config> ! <TargetedPlatforms>1</TargetedPlatforms> <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> + <ProjectVersion>15.1</ProjectVersion> + <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> <Base>true</Base> </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> + <Base_Win32>true</Base_Win32> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''"> + <Base_Win64>true</Base_Win64> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> <Cfg_1>true</Cfg_1> *************** *** 24,47 **** </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> <DCC_K>false</DCC_K> <DCC_N>false</DCC_N> - <DCC_DebugInformation>true</DCC_DebugInformation> - <GenPackage>true</GenPackage> - <DCC_F>false</DCC_F> <DCC_E>false</DCC_E> - <GenDll>true</GenDll> <DCC_S>false</DCC_S> <DCC_ImageBase>00400000</DCC_ImageBase> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1)'!=''"> - <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> <DCC_DebugInformation>0</DCC_DebugInformation> ! <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2)'!=''"> - <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> - <DCC_Optimize>false</DCC_Optimize> <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> </PropertyGroup> <ItemGroup> --- 35,75 ---- </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> + <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> <DCC_K>false</DCC_K> + <VerInfo_Locale>1033</VerInfo_Locale> + <GenDll>true</GenDll> <DCC_N>false</DCC_N> <DCC_E>false</DCC_E> <DCC_S>false</DCC_S> + <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> + <GenPackage>true</GenPackage> + <DesignOnlyPackage>true</DesignOnlyPackage> + <DCC_F>false</DCC_F> + <DCC_Namespace>Vcl;Vcl.Imaging;Vcl.Touch;Vcl.Samples;Vcl.Shell;System;Xml;Data;Datasnap;Web;Soap;Winapi;$(DCC_Namespace)</DCC_Namespace> <DCC_ImageBase>00400000</DCC_ImageBase> + <DCC_Description>Delphi Modbus components</DCC_Description> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=;CFBundleDisplayName=;UIDeviceFamily=;CFBundleIdentifier=;CFBundleVersion=;CFBundlePackageType=;CFBundleSignature=;CFBundleAllowMixedLocalizations=;UISupportedInterfaceOrientations=;CFBundleExecutable=;CFBundleResourceSpecification=;LSRequiresIPhoneOS=;CFBundleInfoDictionaryVersion=;CFBundleDevelopmentRegion=</VerInfo_Keys> + <DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps> + <DCC_Optimize>false</DCC_Optimize> + </PropertyGroup> + <PropertyGroup Condition="'$(Base_Win32)'!=''"> + <DCC_UsePackage>xmlrtl;rtl;vclactnband;vclx;vcl;vclimg;DelphiModbusXE5;$(DCC_UsePackage)</DCC_UsePackage> + <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> + <VerInfo_Locale>1033</VerInfo_Locale> + <DCC_Namespace>System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> + </PropertyGroup> + <PropertyGroup Condition="'$(Base_Win64)'!=''"> + <DCC_UsePackage>xmlrtl;rtl;vclactnband;vclx;vcl;vclimg;$(DCC_UsePackage)</DCC_UsePackage> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1)'!=''"> <DCC_DebugInformation>0</DCC_DebugInformation> ! <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> + <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2)'!=''"> <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> + <DCC_Optimize>false</DCC_Optimize> </PropertyGroup> <ItemGroup> *************** *** 124,142 **** <VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/> <VersionInfoKeys Name="CFBundleDevelopmentRegion"/> - <VersionInfoKeys Name="package"/> - <VersionInfoKeys Name="label"/> - <VersionInfoKeys Name="versionCode"/> - <VersionInfoKeys Name="versionName"/> - <VersionInfoKeys Name="persistent"/> - <VersionInfoKeys Name="restoreAnyVersion"/> - <VersionInfoKeys Name="installLocation"/> - <VersionInfoKeys Name="largeHeap"/> - <VersionInfoKeys Name="theme"/> </VersionInfoKeys> </Delphi.Personality> <Platforms> - <Platform value="OSX32">True</Platform> <Platform value="Win32">True</Platform> ! <Platform value="Win64">True</Platform> </Platforms> </BorlandProject> --- 152,160 ---- <VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/> <VersionInfoKeys Name="CFBundleDevelopmentRegion"/> </VersionInfoKeys> </Delphi.Personality> <Platforms> <Platform value="Win32">True</Platform> ! <Platform value="Win64">False</Platform> </Platforms> </BorlandProject> Index: DelphiModbusXE5.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/DelphiModbusXE5.dproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DelphiModbusXE5.dproj 2 Oct 2013 12:18:59 -0000 1.1 --- DelphiModbusXE5.dproj 15 Oct 2013 14:07:39 -0000 1.2 *************** *** 1,16 **** <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <ProjectGuid>{DD3F589F-B426-4161-AF81-D0B08E296828}</ProjectGuid> <MainSource>DelphiModbusXE5.dpk</MainSource> <Base>True</Base> <Config Condition="'$(Config)'==''">Debug</Config> - <Platform Condition="'$(Platform)'==''">Win32</Platform> <TargetedPlatforms>7</TargetedPlatforms> <AppType>Package</AppType> <FrameworkType>None</FrameworkType> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> <Cfg_1>true</Cfg_1> --- 1,32 ---- <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> <PropertyGroup> ! <ProjectGuid>{B6038E16-CC50-4EF7-B236-4D2B75CB0ED0}</ProjectGuid> <MainSource>DelphiModbusXE5.dpk</MainSource> <Base>True</Base> <Config Condition="'$(Config)'==''">Debug</Config> <TargetedPlatforms>7</TargetedPlatforms> <AppType>Package</AppType> <FrameworkType>None</FrameworkType> + <ProjectVersion>15.1</ProjectVersion> + <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Base' or '$(Base)'!=''"> <Base>true</Base> </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Base)'=='true') or '$(Base_OSX32)'!=''"> + <Base_OSX32>true</Base_OSX32> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> + <Base_Win32>true</Base_Win32> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='Win64' and '$(Base)'=='true') or '$(Base_Win64)'!=''"> + <Base_Win64>true</Base_Win64> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> <PropertyGroup Condition="'$(Config)'=='Release' or '$(Cfg_1)'!=''"> <Cfg_1>true</Cfg_1> *************** *** 23,47 **** <Base>true</Base> </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> <DCC_K>false</DCC_K> <DCC_N>false</DCC_N> - <DCC_DebugInformation>true</DCC_DebugInformation> - <GenPackage>true</GenPackage> - <DCC_F>false</DCC_F> <DCC_E>false</DCC_E> - <GenDll>true</GenDll> <DCC_S>false</DCC_S> <DCC_ImageBase>00400000</DCC_ImageBase> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1)'!=''"> - <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> <DCC_DebugInformation>0</DCC_DebugInformation> ! <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2)'!=''"> - <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> - <DCC_Optimize>false</DCC_Optimize> <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> </PropertyGroup> <ItemGroup> --- 39,105 ---- <Base>true</Base> </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Cfg_2)'=='true') or '$(Cfg_2_OSX32)'!=''"> + <Cfg_2_OSX32>true</Cfg_2_OSX32> + <CfgParent>Cfg_2</CfgParent> + <Cfg_2>true</Cfg_2> + <Base>true</Base> + </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Cfg_2)'=='true') or '$(Cfg_2_Win32)'!=''"> + <Cfg_2_Win32>true</Cfg_2_Win32> + <CfgParent>Cfg_2</CfgParent> + <Cfg_2>true</Cfg_2> + <Base>true</Base> + </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> + <EL_OutgoingNetwork>true</EL_OutgoingNetwork> + <EL_IncomingNetwork>true</EL_IncomingNetwork> + <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> <DCC_K>false</DCC_K> + <VerInfo_Locale>1033</VerInfo_Locale> + <GenDll>true</GenDll> <DCC_N>false</DCC_N> <DCC_E>false</DCC_E> <DCC_S>false</DCC_S> + <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> + <GenPackage>true</GenPackage> + <DCC_F>false</DCC_F> + <DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps> + <DCC_Namespace>System;Xml;Data;Datasnap;Web;Soap;$(DCC_Namespace)</DCC_Namespace> <DCC_ImageBase>00400000</DCC_ImageBase> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=;CFBundleName=;CFBundleDisplayName=;UIDeviceFamily=;CFBundleIdentifier=;CFBundleVersion=;CFBundlePackageType=;CFBundleSignature=;CFBundleAllowMixedLocalizations=;UISupportedInterfaceOrientations=;CFBundleExecutable=;CFBundleResourceSpecification=;LSRequiresIPhoneOS=;CFBundleInfoDictionaryVersion=;CFBundleDevelopmentRegion=</VerInfo_Keys> + <RuntimeOnlyPackage>true</RuntimeOnlyPackage> + <DCC_Optimize>false</DCC_Optimize> + <DCC_Description>Delphi Modbus components runtime package</DCC_Description> + </PropertyGroup> + <PropertyGroup Condition="'$(Base_OSX32)'!=''"> + <VerInfo_Keys>CFBundleName=$(MSBuildProjectName);CFBundleDisplayName=$(MSBuildProjectName);CFBundleIdentifier=$(MSBuildProjectName);CFBundleVersion=1.0.0;CFBundlePackageType=APPL;CFBundleSignature=????;CFBundleAllowMixedLocalizations=YES;CFBundleExecutable=$(MSBuildProjectName);NSHighResolutionCapable=true;LSApplicationCategoryType=public.app-category.utilities</VerInfo_Keys> + </PropertyGroup> + <PropertyGroup Condition="'$(Base_Win32)'!=''"> + <VerInfo_Locale>1033</VerInfo_Locale> + <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> + <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;Bde;$(DCC_Namespace)</DCC_Namespace> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> + </PropertyGroup> + <PropertyGroup Condition="'$(Base_Win64)'!=''"> + <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> + <DCC_Namespace>Winapi;System.Win;Data.Win;Datasnap.Win;Web.Win;Soap.Win;Xml.Win;$(DCC_Namespace)</DCC_Namespace> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_1)'!=''"> <DCC_DebugInformation>0</DCC_DebugInformation> ! <DCC_Define>RELEASE;$(DCC_Define)</DCC_Define> <DCC_SymbolReferenceInfo>0</DCC_SymbolReferenceInfo> + <DCC_LocalDebugSymbols>false</DCC_LocalDebugSymbols> </PropertyGroup> <PropertyGroup Condition="'$(Cfg_2)'!=''"> <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> + <DCC_Optimize>false</DCC_Optimize> + </PropertyGroup> + <PropertyGroup Condition="'$(Cfg_2_OSX32)'!=''"> + <DCC_RemoteDebug>true</DCC_RemoteDebug> + </PropertyGroup> + <PropertyGroup Condition="'$(Cfg_2_Win32)'!=''"> + <VerInfo_IncludeVerInfo>true</VerInfo_IncludeVerInfo> + <VerInfo_Keys>CompanyName=;FileDescription=;FileVersion=1.0.0.0;InternalName=;LegalCopyright=;LegalTrademarks=;OriginalFilename=;ProductName=;ProductVersion=1.0.0.0;Comments=</VerInfo_Keys> </PropertyGroup> <ItemGroup> *************** *** 80,84 **** </Source> <VersionInfo> ! <VersionInfo Name="IncludeVerInfo">False</VersionInfo> <VersionInfo Name="AutoIncBuild">False</VersionInfo> <VersionInfo Name="MajorVer">1</VersionInfo> --- 138,142 ---- </Source> <VersionInfo> ! <VersionInfo Name="IncludeVerInfo">True</VersionInfo> <VersionInfo Name="AutoIncBuild">False</VersionInfo> <VersionInfo Name="MajorVer">1</VersionInfo> *************** *** 119,132 **** <VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/> <VersionInfoKeys Name="CFBundleDevelopmentRegion"/> - <VersionInfoKeys Name="package"/> - <VersionInfoKeys Name="label"/> - <VersionInfoKeys Name="versionCode"/> - <VersionInfoKeys Name="versionName"/> - <VersionInfoKeys Name="persistent"/> - <VersionInfoKeys Name="restoreAnyVersion"/> - <VersionInfoKeys Name="installLocation"/> - <VersionInfoKeys Name="largeHeap"/> - <VersionInfoKeys Name="theme"/> </VersionInfoKeys> </Delphi.Personality> <Platforms> --- 177,187 ---- <VersionInfoKeys Name="CFBundleInfoDictionaryVersion"/> <VersionInfoKeys Name="CFBundleDevelopmentRegion"/> </VersionInfoKeys> + <Excluded_Packages> + <Excluded_Packages Name="$(BDSBIN)\bcboffice2k180.bpl">Embarcadero C++Builder Office 2000 Servers Package</Excluded_Packages> + <Excluded_Packages Name="$(BDSBIN)\bcbofficexp180.bpl">Embarcadero C++Builder Office XP Servers Package</Excluded_Packages> + <Excluded_Packages Name="$(BDSBIN)\dcloffice2k180.bpl">Microsoft Office 2000 Sample Automation Server Wrapper Components</Excluded_Packages> + <Excluded_Packages Name="$(BDSBIN)\dclofficexp180.bpl">Microsoft Office XP Sample Automation Server Wrapper Components</Excluded_Packages> + </Excluded_Packages> </Delphi.Personality> <Platforms> Index: PackagesDelphiModbusXE5.groupproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/PackagesDelphiModbusXE5.groupproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** PackagesDelphiModbusXE5.groupproj 2 Oct 2013 12:18:59 -0000 1.1 --- PackagesDelphiModbusXE5.groupproj 15 Oct 2013 14:07:39 -0000 1.2 *************** *** 3,6 **** --- 3,14 ---- <ProjectGuid>{34619982-7D8C-4335-B3B5-9241265188CA}</ProjectGuid> </PropertyGroup> + <ItemGroup> + <Projects Include="DelphiModbusXE5.dproj"> + <Dependencies/> + </Projects> + <Projects Include="dclDelphiModbusXE5.dproj"> + <Dependencies/> + </Projects> + </ItemGroup> <ProjectExtensions> <Borland.Personality>Default.Personality.12</Borland.Personality> *************** *** 10,21 **** </BorlandProject> </ProjectExtensions> <Target Name="Build"> ! <CallTarget/> </Target> <Target Name="Clean"> ! <CallTarget/> </Target> <Target Name="Make"> ! <CallTarget/> </Target> <Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/> --- 18,47 ---- </BorlandProject> </ProjectExtensions> + <Target Name="DelphiModbusXE5"> + <MSBuild Projects="DelphiModbusXE5.dproj"/> + </Target> + <Target Name="DelphiModbusXE5:Clean"> + <MSBuild Projects="DelphiModbusXE5.dproj" Targets="Clean"/> + </Target> + <Target Name="DelphiModbusXE5:Make"> + <MSBuild Projects="DelphiModbusXE5.dproj" Targets="Make"/> + </Target> + <Target Name="dclDelphiModbusXE5"> + <MSBuild Projects="dclDelphiModbusXE5.dproj"/> + </Target> + <Target Name="dclDelphiModbusXE5:Clean"> + <MSBuild Projects="dclDelphiModbusXE5.dproj" Targets="Clean"/> + </Target> + <Target Name="dclDelphiModbusXE5:Make"> + <MSBuild Projects="dclDelphiModbusXE5.dproj" Targets="Make"/> + </Target> <Target Name="Build"> ! <CallTarget Targets="DelphiModbusXE5;dclDelphiModbusXE5"/> </Target> <Target Name="Clean"> ! <CallTarget Targets="DelphiModbusXE5:Clean;dclDelphiModbusXE5:Clean"/> </Target> <Target Name="Make"> ! <CallTarget Targets="DelphiModbusXE5:Make;dclDelphiModbusXE5:Make"/> </Target> <Import Project="$(BDS)\Bin\CodeGear.Group.Targets" Condition="Exists('$(BDS)\Bin\CodeGear.Group.Targets')"/> |
From: Pieter P. <pl...@us...> - 2013-10-02 12:19:39
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8038 Modified Files: history.txt readme.txt Log Message: Add Delphi XE5 packages Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.58 retrieving revision 1.59 diff -C2 -d -r1.58 -r1.59 *** history.txt 10 May 2013 08:01:26 -0000 1.58 --- history.txt 2 Oct 2013 12:19:37 -0000 1.59 *************** *** 1,3 **** ! Version 1.6.0 - May 10, 2012 ============================ - Added support for Delphi XE4 (including support for Delphi mobile). --- 1,7 ---- ! Version 1.6.1 - September 17, 2013 ! ================================== ! - Added support for Delphi XE5 (including Android targets). ! ! Version 1.6.0 - May 10, 2013 ============================ - Added support for Delphi XE4 (including support for Delphi mobile). Index: readme.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/readme.txt,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** readme.txt 10 May 2013 07:58:13 -0000 1.17 --- readme.txt 2 Oct 2013 12:19:37 -0000 1.18 *************** *** 9,14 **** ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2, XE3 and XE4. The components are based on the Internet Direct (aka ! 'Indy') components, which ship with Delphi versions 6 and up. Only native development is supported (no .NET version is available). --- 9,14 ---- ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2, XE3, XE4 and XE5. The components are based on the Internet Direct ! (aka 'Indy') components, which ship with Delphi versions 6 and up. Only native development is supported (no .NET version is available). *************** *** 36,40 **** 32-bit OSX). The components have been tested to work on all support platforms (in combination with the FireMonkey framework). Starting with XE4, the mobile ! version (for iOS) is also supported. Installation in the Delphi IDE --- 36,40 ---- 32-bit OSX). The components have been tested to work on all support platforms (in combination with the FireMonkey framework). Starting with XE4, the mobile ! versions are also supported (iOS and Android). Installation in the Delphi IDE |
From: Pieter P. <pl...@us...> - 2013-10-02 12:19:20
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8000 Modified Files: ModBusCompiler.inc ModbusConsts.pas Log Message: Add Delphi XE5 packages Index: ModbusConsts.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModbusConsts.pas,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -d -r1.29 -r1.30 *** ModbusConsts.pas 10 Apr 2013 06:35:07 -0000 1.29 --- ModbusConsts.pas 2 Oct 2013 12:19:18 -0000 1.30 *************** *** 67,71 **** const ! DMB_VERSION = '1.6.0'; {Do not Localize} const --- 67,71 ---- const ! DMB_VERSION = '1.6.1'; {Do not Localize} const Index: ModBusCompiler.inc =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModBusCompiler.inc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** ModBusCompiler.inc 23 Apr 2013 08:59:11 -0000 1.10 --- ModBusCompiler.inc 2 Oct 2013 12:19:18 -0000 1.11 *************** *** 158,162 **** {$DEFINE DMB_DELPHIXE2_ONLY} {$ENDIF} - {$IFDEF VER240} {$DEFINE DMB_DELPHI1} --- 158,161 ---- *************** *** 177,181 **** {$DEFINE DMB_DELPHIXE3_ONLY} {$ENDIF} - {$IFDEF VER250} {$DEFINE DMB_DELPHI1} --- 176,179 ---- *************** *** 197,200 **** --- 195,218 ---- {$DEFINE DMB_DELPHIXE4_ONLY} {$ENDIF} + {$IFDEF VER260} + {$DEFINE DMB_DELPHI1} + {$DEFINE DMB_DELPHI2} + {$DEFINE DMB_DELPHI3} + {$DEFINE DMB_DELPHI4} + {$DEFINE DMB_DELPHI5} + {$DEFINE DMB_DELPHI6} + {$DEFINE DMB_DELPHI7} + {$DEFINE DMB_DELPHI2005} + {$DEFINE DMB_DELPHI2006} + {$DEFINE DMB_DELPHI2007} + {$DEFINE DMB_DELPHI2009} + {$DEFINE DMB_DELPHI2010} + {$DEFINE DMB_DELPHIXE} + {$DEFINE DMB_DELPHIXE2} + {$DEFINE DMB_DELPHIXE3} + {$DEFINE DMB_DELPHIXE4} + {$DEFINE DMB_DELPHIXE5} + {$DEFINE DMB_DELPHIXE5_ONLY} + {$ENDIF} {$IFDEF DMB_DELPHI2005} |
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7957 Added Files: dclDelphiModbusXE5.dpk dclDelphiModbusXE5.dproj DelphiModbusXE5.dpk DelphiModbusXE5.dproj PackagesDelphiModbusXE5.groupproj Log Message: Add Delphi XE5 packages --- NEW FILE: dclDelphiModbusXE5.dpk --- package dclDelphiModbusXE5; {$R *.res} {$R '..\source\ModbusReg.dcr'} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'Delphi Modbus components'} {$DESIGNONLY} {$IMPLICITBUILD OFF} {$DEFINE DEBUG} requires rtl, DelphiModbusXE5, vcl, designide, xmlrtl, vclactnband, vclx, vclimg; contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas'; end. --- NEW FILE: DelphiModbusXE5.dpk --- package DelphiModbusXE5; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE DEBUG} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Delphi Modbus components runtime package'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl, IndyCore, IndyProtocols, IndySystem; 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. --- NEW FILE: dclDelphiModbusXE5.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DelphiModbusXE5.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: PackagesDelphiModbusXE5.groupproj --- (This appears to be a binary file; contents omitted.) |
From: Pieter P. <pl...@us...> - 2013-05-10 08:01:29
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23332 Modified Files: history.txt Log Message: Update docs Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.57 retrieving revision 1.58 diff -C2 -d -r1.57 -r1.58 *** history.txt 10 May 2013 07:58:13 -0000 1.57 --- history.txt 10 May 2013 08:01:26 -0000 1.58 *************** *** 1,4 **** ! Version 1.6.0 - April 23, 2012 ! ============================== - Added support for Delphi XE4 (including support for Delphi mobile). - Added missing function 'WriteOneCoil' in TIdModbusServer. --- 1,4 ---- ! Version 1.6.0 - May 10, 2012 ! ============================ - Added support for Delphi XE4 (including support for Delphi mobile). - Added missing function 'WriteOneCoil' in TIdModbusServer. |
From: Pieter P. <pl...@us...> - 2013-05-10 07:58:16
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22992 Modified Files: history.txt readme.txt Log Message: Update docs Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.56 retrieving revision 1.57 diff -C2 -d -r1.56 -r1.57 *** history.txt 23 Apr 2013 08:59:42 -0000 1.56 --- history.txt 10 May 2013 07:58:13 -0000 1.57 *************** *** 1,5 **** Version 1.6.0 - April 23, 2012 ============================== ! - Added support for Delphi XE4 (including support for mobile). - Added missing function 'WriteOneCoil' in TIdModbusServer. --- 1,5 ---- Version 1.6.0 - April 23, 2012 ============================== ! - Added support for Delphi XE4 (including support for Delphi mobile). - Added missing function 'WriteOneCoil' in TIdModbusServer. Index: readme.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/readme.txt,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** readme.txt 23 Apr 2013 08:59:42 -0000 1.16 --- readme.txt 10 May 2013 07:58:13 -0000 1.17 *************** *** 29,33 **** Packages are provided and tested for all mentioned Delphi versions, although ! actual testing occurs only on Delphi 7, 2007 and 2010 (which are my main Delphi versions for production use). I expect that the Delphi 2006 packages will work with Turbo Delphi 2006 (Pro) as well, although this has not been tested. --- 29,33 ---- Packages are provided and tested for all mentioned Delphi versions, although ! full testing occurs only on Delphi 7, 2007 and XE4 (which are my main Delphi versions for production use). I expect that the Delphi 2006 packages will work with Turbo Delphi 2006 (Pro) as well, although this has not been tested. |
From: Pieter P. <pl...@us...> - 2013-04-23 08:59:45
|
Update of /cvsroot/delphimodbus/delphimodbus/docs In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1950 Modified Files: history.txt readme.txt Log Message: Update docs Index: history.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/history.txt,v retrieving revision 1.55 retrieving revision 1.56 diff -C2 -d -r1.55 -r1.56 *** history.txt 23 Nov 2012 10:02:51 -0000 1.55 --- history.txt 23 Apr 2013 08:59:42 -0000 1.56 *************** *** 1,2 **** --- 1,7 ---- + Version 1.6.0 - April 23, 2012 + ============================== + - Added support for Delphi XE4 (including support for mobile). + - Added missing function 'WriteOneCoil' in TIdModbusServer. + Version 1.5.2 - November 23, 2012 ================================= Index: readme.txt =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/docs/readme.txt,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** readme.txt 23 Nov 2012 10:02:51 -0000 1.15 --- readme.txt 23 Apr 2013 08:59:42 -0000 1.16 *************** *** 9,13 **** ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2 and XE3. The components are based on the Internet Direct (aka 'Indy') components, which ship with Delphi versions 6 and up. Only native development is supported (no .NET version is available). --- 9,13 ---- ========================= The components can be used in Delphi versions 5, 6, 7, 2005, 2006, 2007, 2009, ! 2010, XE, XE2, XE3 and XE4. The components are based on the Internet Direct (aka 'Indy') components, which ship with Delphi versions 6 and up. Only native development is supported (no .NET version is available). *************** *** 35,39 **** Starting with Delphi XE2, Delphi targets multiple platforms (Win32, Win64 and 32-bit OSX). The components have been tested to work on all support platforms ! (in combination with the FireMonkey framework). Installation in the Delphi IDE --- 35,40 ---- Starting with Delphi XE2, Delphi targets multiple platforms (Win32, Win64 and 32-bit OSX). The components have been tested to work on all support platforms ! (in combination with the FireMonkey framework). Starting with XE4, the mobile ! version (for iOS) is also supported. Installation in the Delphi IDE |
From: Pieter P. <pl...@us...> - 2013-04-23 08:59:16
|
Update of /cvsroot/delphimodbus/delphimodbus/source In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1922 Modified Files: AboutComponentEditor.pas IdModbusClient.pas ModBusCompiler.inc Log Message: Add XE4 support Index: IdModbusClient.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/IdModbusClient.pas,v retrieving revision 1.32 retrieving revision 1.33 diff -C2 -d -r1.32 -r1.33 *** IdModbusClient.pas 18 Nov 2011 08:34:23 -0000 1.32 --- IdModbusClient.pas 23 Apr 2013 08:59:11 -0000 1.33 *************** *** 102,106 **** function WriteDWord(const RegNo: Word; const Value: DWord): Boolean; function WriteSingle(const RegNo: Word; const Value: Single): Boolean; ! function WriteString(const RegNo: Word; const Text: AnsiString): Boolean; published property AutoConnect: Boolean read FAutoConnect write FAutoConnect default True; --- 102,106 ---- function WriteDWord(const RegNo: Word; const Value: DWord): Boolean; function WriteSingle(const RegNo: Word; const Value: Single): Boolean; ! function WriteString(const RegNo: Word; const Text: String): Boolean; published property AutoConnect: Boolean read FAutoConnect write FAutoConnect default True; *************** *** 626,630 **** ! function TIdModBusClient.WriteString(const RegNo: Word; const Text: AnsiString): Boolean; var Buffer: array of Word; --- 626,631 ---- ! ! function TIdModBusClient.WriteString(const RegNo: Word; const Text: String): Boolean; var Buffer: array of Word; Index: AboutComponentEditor.pas =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/AboutComponentEditor.pas,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** AboutComponentEditor.pas 5 Feb 2010 08:45:57 -0000 1.4 --- AboutComponentEditor.pas 23 Apr 2013 08:59:11 -0000 1.5 *************** *** 45,49 **** function GetVerbCount: Integer; override; procedure Edit; override; ! end; { AboutComponentEditor } type --- 45,49 ---- function GetVerbCount: Integer; override; procedure Edit; override; ! end; { TAboutComponentEditor } type Index: ModBusCompiler.inc =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/source/ModBusCompiler.inc,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -d -r1.9 -r1.10 *** ModBusCompiler.inc 7 Sep 2012 14:48:31 -0000 1.9 --- ModBusCompiler.inc 23 Apr 2013 08:59:11 -0000 1.10 *************** *** 178,181 **** --- 178,201 ---- {$ENDIF} + {$IFDEF VER250} + {$DEFINE DMB_DELPHI1} + {$DEFINE DMB_DELPHI2} + {$DEFINE DMB_DELPHI3} + {$DEFINE DMB_DELPHI4} + {$DEFINE DMB_DELPHI5} + {$DEFINE DMB_DELPHI6} + {$DEFINE DMB_DELPHI7} + {$DEFINE DMB_DELPHI2005} + {$DEFINE DMB_DELPHI2006} + {$DEFINE DMB_DELPHI2007} + {$DEFINE DMB_DELPHI2009} + {$DEFINE DMB_DELPHI2010} + {$DEFINE DMB_DELPHIXE} + {$DEFINE DMB_DELPHIXE2} + {$DEFINE DMB_DELPHIXE3} + {$DEFINE DMB_DELPHIXE4} + {$DEFINE DMB_DELPHIXE4_ONLY} + {$ENDIF} + {$IFDEF DMB_DELPHI2005} { By default use Indy 10 starting from Delphi 2005 } |
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1880 Added Files: dclDelphiModbusXE4.dpk dclDelphiModbusXE4.dproj DelphiModbusXE4.dpk DelphiModbusXE4.dproj PackagesDelphiModbusXE4.groupproj Log Message: Add XE4 packages --- NEW FILE: DelphiModbusXE4.dproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: DelphiModbusXE4.dpk --- package DelphiModbusXE4; {$R *.res} {$IFDEF IMPLICITBUILDING This IFDEF should not be used by users} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DEFINE DEBUG} {$ENDIF IMPLICITBUILDING} {$DESCRIPTION 'Delphi Modbus components runtime package'} {$RUNONLY} {$IMPLICITBUILD OFF} requires rtl, IndyCore, IndyProtocols, IndySystem; 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. --- NEW FILE: PackagesDelphiModbusXE4.groupproj --- (This appears to be a binary file; contents omitted.) --- NEW FILE: dclDelphiModbusXE4.dpk --- package dclDelphiModbusXE4; {$R *.res} {$R '..\source\ModbusReg.dcr'} {$ALIGN 8} {$ASSERTIONS ON} {$BOOLEVAL OFF} {$DEBUGINFO ON} {$EXTENDEDSYNTAX ON} {$IMPORTEDDATA ON} {$IOCHECKS ON} {$LOCALSYMBOLS ON} {$LONGSTRINGS ON} {$OPENSTRINGS ON} {$OPTIMIZATION OFF} {$OVERFLOWCHECKS OFF} {$RANGECHECKS OFF} {$REFERENCEINFO ON} {$SAFEDIVIDE OFF} {$STACKFRAMES ON} {$TYPEDADDRESS OFF} {$VARSTRINGCHECKS ON} {$WRITEABLECONST OFF} {$MINENUMSIZE 1} {$IMAGEBASE $400000} {$DESCRIPTION 'Delphi Modbus components'} {$DESIGNONLY} {$IMPLICITBUILD OFF} {$DEFINE DEBUG} requires rtl, DelphiModbusXE4, vcl, designide, xmlrtl, vclactnband, vclx, vclimg; contains ModbusReg in '..\source\ModbusReg.pas', frm_About in '..\source\frm_About.pas' {frmAbout}, AboutComponentEditor in '..\source\AboutComponentEditor.pas', ModbusSplash in '..\source\ModbusSplash.pas'; end. --- NEW FILE: dclDelphiModbusXE4.dproj --- (This appears to be a binary file; contents omitted.) |
From: Pieter P. <pl...@us...> - 2013-04-10 06:39:52
|
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28216 Added Files: .cvsignore Log Message: CVS ignore --- NEW FILE: .cvsignore --- *.res Debug lib ModelSupport |
From: Pieter P. <pl...@us...> - 2013-04-10 06:35:52
|
Update of /cvsroot/delphimodbus/delphimodbus/packages In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv28062 Modified Files: dclDelphiModbusXE3.dproj DelphiModbusXE3.dproj Log Message: Update for Delphi XE3 upd. 2 Index: DelphiModbusXE3.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/DelphiModbusXE3.dproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DelphiModbusXE3.dproj 7 Sep 2012 14:48:00 -0000 1.1 --- DelphiModbusXE3.dproj 10 Apr 2013 06:35:50 -0000 1.2 *************** *** 8,12 **** <AppType>Package</AppType> <FrameworkType>None</FrameworkType> ! <ProjectVersion>14.3</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> --- 8,12 ---- <AppType>Package</AppType> <FrameworkType>None</FrameworkType> ! <ProjectVersion>14.4</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> *************** *** 14,17 **** --- 14,22 ---- <Base>true</Base> </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Base)'=='true') or '$(Base_OSX32)'!=''"> + <Base_OSX32>true</Base_OSX32> + <CfgParent>Base</CfgParent> + <Base>true</Base> + </PropertyGroup> <PropertyGroup Condition="('$(Platform)'=='Win32' and '$(Base)'=='true') or '$(Base_Win32)'!=''"> <Base_Win32>true</Base_Win32> *************** *** 29,32 **** --- 34,43 ---- <Base>true</Base> </PropertyGroup> + <PropertyGroup Condition="('$(Platform)'=='OSX32' and '$(Cfg_2)'=='true') or '$(Cfg_2_OSX32)'!=''"> + <Cfg_2_OSX32>true</Cfg_2_OSX32> + <CfgParent>Cfg_2</CfgParent> + <Cfg_2>true</Cfg_2> + <Base>true</Base> + </PropertyGroup> <PropertyGroup Condition="'$(Base)'!=''"> <DCC_ImageBase>00400000</DCC_ImageBase> *************** *** 48,51 **** --- 59,65 ---- <DCC_OutputNeverBuildDcps>true</DCC_OutputNeverBuildDcps> </PropertyGroup> + <PropertyGroup Condition="'$(Base_OSX32)'!=''"> + <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns> + </PropertyGroup> <PropertyGroup Condition="'$(Base_Win32)'!=''"> <VerInfo_Locale>1033</VerInfo_Locale> *************** *** 63,67 **** <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> <DCC_Optimize>false</DCC_Optimize> ! <DCC_Define>DEBUG;$(DCC_Define)</DCC_Define> </PropertyGroup> <ItemGroup> --- 77,83 ---- <DCC_GenerateStackFrames>true</DCC_GenerateStackFrames> <DCC_Optimize>false</DCC_Optimize> ! </PropertyGroup> ! <PropertyGroup Condition="'$(Cfg_2_OSX32)'!=''"> ! <Icns_MainIcns>$(BDS)\bin\delphi_PROJECTICNS.icns</Icns_MainIcns> </PropertyGroup> <ItemGroup> Index: dclDelphiModbusXE3.dproj =================================================================== RCS file: /cvsroot/delphimodbus/delphimodbus/packages/dclDelphiModbusXE3.dproj,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** dclDelphiModbusXE3.dproj 7 Sep 2012 14:48:00 -0000 1.1 --- dclDelphiModbusXE3.dproj 10 Apr 2013 06:35:50 -0000 1.2 *************** *** 8,12 **** <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> ! <ProjectVersion>14.3</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> --- 8,12 ---- <AppType>Package</AppType> <FrameworkType>VCL</FrameworkType> ! <ProjectVersion>14.4</ProjectVersion> <Platform Condition="'$(Platform)'==''">Win32</Platform> </PropertyGroup> |