diff --git a/Builder/Package Generator/Package.pas b/Builder/Package Generator/Package.pas index b86870255..fa1625e34 100644 --- a/Builder/Package Generator/Package.pas +++ b/Builder/Package Generator/Package.pas @@ -231,7 +231,8 @@ function iif(ATest: Boolean; const ATrue: Boolean; const AFalse: Boolean): Boole const IndyVersion_Major = 10; IndyVersion_Minor = 6; - IndyVersion_Patch = 3; + IndyVersion_Release = 3; + IndyVersion_Build = 1; implementation @@ -558,14 +559,17 @@ procedure TPackage.GenResourceScript; var ProductVersion: string; FileVersion : string; - TemplateStr: String; + BuildStr: String; begin //We don't call many of the inherited Protected methods because //those are for Packages while I'm making a unit. - TemplateStr := iif(FTemplate,'$WCREV$','0'); + if FTemplate then + BuildStr := '$WCREV$' + else + BuildStr := IntToStr(IndyVersion_Build); - FileVersion := Format('%d,%d,%d,%s', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Patch, TemplateStr]); + FileVersion := Format('%d,%d,%d,%s', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Release, BuildStr]); ProductVersion := FileVersion; Code('1 VERSIONINFO '); @@ -576,8 +580,8 @@ procedure TPackage.GenResourceScript; Code('FILEOS 0x40004L'); Code('FILETYPE 0x1L'); - ProductVersion := Format('%d.%d.%d', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Patch]); - FileVersion := ProductVersion + '.' + TemplateStr; + ProductVersion := Format('%d.%d.%d', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Release]); + FileVersion := ProductVersion + '.' + BuildStr; Code('FILESUBTYPE 0x0L'); Code('{'); diff --git a/Builder/Package Generator/PackageVersInc.pas b/Builder/Package Generator/PackageVersInc.pas index 6743a8599..a3a851b0e 100644 --- a/Builder/Package Generator/PackageVersInc.pas +++ b/Builder/Package Generator/PackageVersInc.pas @@ -49,7 +49,7 @@ constructor TVersInc.Create; begin inherited; FExt := '.inc'; - FProductVersion := Format('%d.%d.%d', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Patch]); + FProductVersion := Format('%d.%d.%d', [IndyVersion_Major, IndyVersion_Minor, IndyVersion_Release]); end; procedure TVersInc.Generate(ACompiler: TCompiler; const AFlags: TGenerateFlags); @@ -144,26 +144,30 @@ procedure TVersInc.Generate(ACompiler: TCompiler; const AFlags: TGenerateFlags); procedure TVersInc.GenIdVers; var FileVersion : string; - TemplateStr: String; + BuildStr: String; begin FCode.Clear; - TemplateStr := iif(FTemplate, '$WCREV$', '0'); - FileVersion := FProductVersion + '.' + TemplateStr; + if FTemplate then + BuildStr := '$WCREV$' + else + BuildStr := IntToStr(IndyVersion_Build); + + FileVersion := FProductVersion + '.' + BuildStr; Code(' gsIdVersionMajor = ' + IntToStr(IndyVersion_Major) + ';'); Code(' {$NODEFINE gsIdVersionMajor}'); Code(' gsIdVersionMinor = ' + IntToStr(IndyVersion_Minor) + ';'); Code(' {$NODEFINE gsIdVersionMinor}'); - Code(' gsIdVersionRelease = ' + IntToStr(IndyVersion_Patch) + ';'); + Code(' gsIdVersionRelease = ' + IntToStr(IndyVersion_Release) + ';'); Code(' {$NODEFINE gsIdVersionRelease}'); - Code(' gsIdVersionBuild = ' + TemplateStr + ';'); + Code(' gsIdVersionBuild = ' + BuildStr + ';'); Code(' {$NODEFINE gsIdVersionBuild}'); Code(''); Code(' (*$HPPEMIT ''#define gsIdVersionMajor ' + IntToStr(IndyVersion_Major) + '''*)'); Code(' (*$HPPEMIT ''#define gsIdVersionMinor ' + IntToStr(IndyVersion_Minor) + '''*)'); - Code(' (*$HPPEMIT ''#define gsIdVersionRelease ' + IntToStr(IndyVersion_Patch) + '''*)'); - Code(' (*$HPPEMIT ''#define gsIdVersionBuild ' + TemplateStr + '''*)'); + Code(' (*$HPPEMIT ''#define gsIdVersionRelease ' + IntToStr(IndyVersion_Release) + '''*)'); + Code(' (*$HPPEMIT ''#define gsIdVersionBuild ' + BuildStr + '''*)'); Code(' (*$HPPEMIT ''''*)'); Code(''); Code(' gsIdVersion = ''' + FileVersion + '''; {do not localize}'); diff --git a/Lib/Core/IdCompilerDefines.inc b/Lib/Core/IdCompilerDefines.inc index 8eb530d96..41682a202 100644 --- a/Lib/Core/IdCompilerDefines.inc +++ b/Lib/Core/IdCompilerDefines.inc @@ -1163,6 +1163,7 @@ {$IFDEF VCL_2006_OR_ABOVE} {$DEFINE USE_INLINE} {$DEFINE HAS_2PARAM_FileAge} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF WINDOWS} // System.RegisterExpectedMemoryLeak() is only available on Windows at this time {$DEFINE HAS_System_RegisterExpectedMemoryLeak} @@ -1473,6 +1474,7 @@ {$ENDIF} {$DEFINE HAS_UNIT_ctypes} {$DEFINE HAS_sLineBreak} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF FPC_HAS_UNICODESTRING} {$DEFINE HAS_UnicodeString} {$ELSE} diff --git a/Lib/Core/IdIOHandler.pas b/Lib/Core/IdIOHandler.pas index 37cc59114..06b165780 100644 --- a/Lib/Core/IdIOHandler.pas +++ b/Lib/Core/IdIOHandler.pas @@ -413,6 +413,8 @@ interface (*$HPPEMIT '#pragma alias "@Idiohandler@TIdIOHandler@SetPortW$qqri"="@Idiohandler@TIdIOHandler@SetPort$qqri"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") const GRecvBufferSizeDefault = 32 * 1024; diff --git a/Lib/Core/IdIPMCastBase.pas b/Lib/Core/IdIPMCastBase.pas index 03a8eee22..096e65d30 100644 --- a/Lib/Core/IdIPMCastBase.pas +++ b/Lib/Core/IdIPMCastBase.pas @@ -52,6 +52,8 @@ interface (*$HPPEMIT '#pragma alias "@Idipmcastbase@TIdIPMCastBase@SetPortW$qqrxi"="@Idipmcastbase@TIdIPMCastBase@SetPort$qqrxi"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") const IPMCastLo = 224; diff --git a/Lib/Core/IdTCPClient.pas b/Lib/Core/IdTCPClient.pas index c46641106..47b6e3c2f 100644 --- a/Lib/Core/IdTCPClient.pas +++ b/Lib/Core/IdTCPClient.pas @@ -149,6 +149,8 @@ interface (*$HPPEMIT '#pragma alias "@Idtcpclient@TIdTCPClientCustom@SetPortW$qqrxus"="@Idtcpclient@TIdTCPClientCustom@SetPort$qqrxus"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") type diff --git a/Lib/Core/IdUDPBase.pas b/Lib/Core/IdUDPBase.pas index d64c5872d..5c64642be 100644 --- a/Lib/Core/IdUDPBase.pas +++ b/Lib/Core/IdUDPBase.pas @@ -88,6 +88,8 @@ interface (*$HPPEMIT '#pragma alias "@Idudpbase@TIdUDPBase@SetPortW$qqrxus"="@Idudpbase@TIdUDPBase@SetPort$qqrxus"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") const ID_UDP_BUFFERSIZE = 8192; diff --git a/Lib/Core/IdUDPClient.pas b/Lib/Core/IdUDPClient.pas index 6ea631bfe..16bd223a7 100644 --- a/Lib/Core/IdUDPClient.pas +++ b/Lib/Core/IdUDPClient.pas @@ -85,6 +85,8 @@ interface (*$HPPEMIT '#pragma alias "@Idudpclient@TIdUDPClient@SetPortW$qqrxus"="@Idudpclient@TIdUDPClient@SetPort$qqrxus"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") type EIdMustUseOpenProxy = class(EIdUDPException); diff --git a/Lib/Core/IndyCore.rc b/Lib/Core/IndyCore.rc index 17ae430ec..f5e370665 100644 --- a/Lib/Core/IndyCore.rc +++ b/Lib/Core/IndyCore.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore.bpl\0" diff --git a/Lib/Core/IndyCore100.rc b/Lib/Core/IndyCore100.rc index fc4767d1c..dcc135a08 100644 --- a/Lib/Core/IndyCore100.rc +++ b/Lib/Core/IndyCore100.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore100\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore100.bpl\0" diff --git a/Lib/Core/IndyCore100.res b/Lib/Core/IndyCore100.res index 1d1397cfe..18e95395a 100644 Binary files a/Lib/Core/IndyCore100.res and b/Lib/Core/IndyCore100.res differ diff --git a/Lib/Core/IndyCore110.RES b/Lib/Core/IndyCore110.RES index 90ed2ce1a..484f115e8 100644 Binary files a/Lib/Core/IndyCore110.RES and b/Lib/Core/IndyCore110.RES differ diff --git a/Lib/Core/IndyCore110.rc b/Lib/Core/IndyCore110.rc index a68cc764f..c8fcffa80 100644 --- a/Lib/Core/IndyCore110.rc +++ b/Lib/Core/IndyCore110.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore110\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore110.bpl\0" diff --git a/Lib/Core/IndyCore120.rc b/Lib/Core/IndyCore120.rc index 065282383..8007ef38b 100644 --- a/Lib/Core/IndyCore120.rc +++ b/Lib/Core/IndyCore120.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore120\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore120.bpl\0" diff --git a/Lib/Core/IndyCore120.res b/Lib/Core/IndyCore120.res index 9867d1a87..0af821d82 100644 Binary files a/Lib/Core/IndyCore120.res and b/Lib/Core/IndyCore120.res differ diff --git a/Lib/Core/IndyCore130.rc b/Lib/Core/IndyCore130.rc index 6a3667838..593d0aba9 100644 --- a/Lib/Core/IndyCore130.rc +++ b/Lib/Core/IndyCore130.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore130\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore130.bpl\0" diff --git a/Lib/Core/IndyCore130.res b/Lib/Core/IndyCore130.res index c958a5705..6a7a1a60c 100644 Binary files a/Lib/Core/IndyCore130.res and b/Lib/Core/IndyCore130.res differ diff --git a/Lib/Core/IndyCore140.RES b/Lib/Core/IndyCore140.RES index 89ad8cfc0..c4b4b95a1 100644 Binary files a/Lib/Core/IndyCore140.RES and b/Lib/Core/IndyCore140.RES differ diff --git a/Lib/Core/IndyCore140.rc b/Lib/Core/IndyCore140.rc index ffbed3dc7..f5c4115b0 100644 --- a/Lib/Core/IndyCore140.rc +++ b/Lib/Core/IndyCore140.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore140\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore140.bpl\0" diff --git a/Lib/Core/IndyCore150.RES b/Lib/Core/IndyCore150.RES index c47965270..4b714eb84 100644 Binary files a/Lib/Core/IndyCore150.RES and b/Lib/Core/IndyCore150.RES differ diff --git a/Lib/Core/IndyCore150.rc b/Lib/Core/IndyCore150.rc index 43c21cf48..8288bc603 100644 --- a/Lib/Core/IndyCore150.rc +++ b/Lib/Core/IndyCore150.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore150\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore150.bpl\0" diff --git a/Lib/Core/IndyCore160.rc b/Lib/Core/IndyCore160.rc index fbb3deb87..006a7c6b8 100644 --- a/Lib/Core/IndyCore160.rc +++ b/Lib/Core/IndyCore160.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore160\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore160.bpl\0" diff --git a/Lib/Core/IndyCore160.res b/Lib/Core/IndyCore160.res index 92df347f1..7a23ca001 100644 Binary files a/Lib/Core/IndyCore160.res and b/Lib/Core/IndyCore160.res differ diff --git a/Lib/Core/IndyCore170.rc b/Lib/Core/IndyCore170.rc index 1562cdee6..f7071a44c 100644 --- a/Lib/Core/IndyCore170.rc +++ b/Lib/Core/IndyCore170.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore170\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore170.bpl\0" diff --git a/Lib/Core/IndyCore170.res b/Lib/Core/IndyCore170.res index bcbc6d541..2430e3fef 100644 Binary files a/Lib/Core/IndyCore170.res and b/Lib/Core/IndyCore170.res differ diff --git a/Lib/Core/IndyCore180.rc b/Lib/Core/IndyCore180.rc index c643b6c52..c3513a3ec 100644 --- a/Lib/Core/IndyCore180.rc +++ b/Lib/Core/IndyCore180.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore180\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore180.bpl\0" diff --git a/Lib/Core/IndyCore180.res b/Lib/Core/IndyCore180.res index 994ef4915..b207b86f5 100644 Binary files a/Lib/Core/IndyCore180.res and b/Lib/Core/IndyCore180.res differ diff --git a/Lib/Core/IndyCore190.rc b/Lib/Core/IndyCore190.rc index ccfc3b52e..986e46145 100644 --- a/Lib/Core/IndyCore190.rc +++ b/Lib/Core/IndyCore190.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore190\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore190.bpl\0" diff --git a/Lib/Core/IndyCore190.res b/Lib/Core/IndyCore190.res index 4dee48bc2..419c62920 100644 Binary files a/Lib/Core/IndyCore190.res and b/Lib/Core/IndyCore190.res differ diff --git a/Lib/Core/IndyCore200.rc b/Lib/Core/IndyCore200.rc index de1049bad..707435700 100644 --- a/Lib/Core/IndyCore200.rc +++ b/Lib/Core/IndyCore200.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore200\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore200.bpl\0" diff --git a/Lib/Core/IndyCore200.res b/Lib/Core/IndyCore200.res index d170af080..b698f017a 100644 Binary files a/Lib/Core/IndyCore200.res and b/Lib/Core/IndyCore200.res differ diff --git a/Lib/Core/IndyCore210.rc b/Lib/Core/IndyCore210.rc index ebafbeffb..d5041ada0 100644 --- a/Lib/Core/IndyCore210.rc +++ b/Lib/Core/IndyCore210.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore210\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore210.bpl\0" diff --git a/Lib/Core/IndyCore210.res b/Lib/Core/IndyCore210.res index 053a6a810..a5779fce7 100644 Binary files a/Lib/Core/IndyCore210.res and b/Lib/Core/IndyCore210.res differ diff --git a/Lib/Core/IndyCore220.rc b/Lib/Core/IndyCore220.rc index e2ab7fbb4..8527b1f27 100644 --- a/Lib/Core/IndyCore220.rc +++ b/Lib/Core/IndyCore220.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore220\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore220.bpl\0" diff --git a/Lib/Core/IndyCore220.res b/Lib/Core/IndyCore220.res index bdfdeea04..bb3583d1b 100644 Binary files a/Lib/Core/IndyCore220.res and b/Lib/Core/IndyCore220.res differ diff --git a/Lib/Core/IndyCore230.rc b/Lib/Core/IndyCore230.rc index 1d0e63390..edd314755 100644 --- a/Lib/Core/IndyCore230.rc +++ b/Lib/Core/IndyCore230.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore230\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore230.bpl\0" diff --git a/Lib/Core/IndyCore230.res b/Lib/Core/IndyCore230.res index f58e4baac..90f048db2 100644 Binary files a/Lib/Core/IndyCore230.res and b/Lib/Core/IndyCore230.res differ diff --git a/Lib/Core/IndyCore240.rc b/Lib/Core/IndyCore240.rc index 8a9278678..3acff013c 100644 --- a/Lib/Core/IndyCore240.rc +++ b/Lib/Core/IndyCore240.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore240\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore240.bpl\0" diff --git a/Lib/Core/IndyCore240.res b/Lib/Core/IndyCore240.res index d7e82da8c..69e70fa00 100644 Binary files a/Lib/Core/IndyCore240.res and b/Lib/Core/IndyCore240.res differ diff --git a/Lib/Core/IndyCore250.rc b/Lib/Core/IndyCore250.rc index b5af268eb..82c0e01a0 100644 --- a/Lib/Core/IndyCore250.rc +++ b/Lib/Core/IndyCore250.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore250\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore250.bpl\0" diff --git a/Lib/Core/IndyCore250.res b/Lib/Core/IndyCore250.res index ccde312e6..91cceb982 100644 Binary files a/Lib/Core/IndyCore250.res and b/Lib/Core/IndyCore250.res differ diff --git a/Lib/Core/IndyCore260.rc b/Lib/Core/IndyCore260.rc index 05624ae19..75cc04a95 100644 --- a/Lib/Core/IndyCore260.rc +++ b/Lib/Core/IndyCore260.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore260\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore260.bpl\0" diff --git a/Lib/Core/IndyCore270.rc b/Lib/Core/IndyCore270.rc index 2a6edac4d..5ba264946 100644 --- a/Lib/Core/IndyCore270.rc +++ b/Lib/Core/IndyCore270.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore270\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore270.bpl\0" diff --git a/Lib/Core/IndyCore280.rc b/Lib/Core/IndyCore280.rc index f83995eb3..6ab78357c 100644 --- a/Lib/Core/IndyCore280.rc +++ b/Lib/Core/IndyCore280.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore280\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore280.bpl\0" diff --git a/Lib/Core/IndyCore290.rc b/Lib/Core/IndyCore290.rc index bfe39dde0..89a557444 100644 --- a/Lib/Core/IndyCore290.rc +++ b/Lib/Core/IndyCore290.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore290\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore290.bpl\0" diff --git a/Lib/Core/IndyCore290.res b/Lib/Core/IndyCore290.res index da606b6bb..e09f5e898 100644 Binary files a/Lib/Core/IndyCore290.res and b/Lib/Core/IndyCore290.res differ diff --git a/Lib/Core/IndyCore40.RES b/Lib/Core/IndyCore40.RES index b99615582..79f2b62fe 100644 Binary files a/Lib/Core/IndyCore40.RES and b/Lib/Core/IndyCore40.RES differ diff --git a/Lib/Core/IndyCore40.rc b/Lib/Core/IndyCore40.rc index fe3d46e95..a46e11f57 100644 --- a/Lib/Core/IndyCore40.rc +++ b/Lib/Core/IndyCore40.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore40\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore40.bpl\0" diff --git a/Lib/Core/IndyCore50.RES b/Lib/Core/IndyCore50.RES index ce29069ec..3a8a20aef 100644 Binary files a/Lib/Core/IndyCore50.RES and b/Lib/Core/IndyCore50.RES differ diff --git a/Lib/Core/IndyCore50.rc b/Lib/Core/IndyCore50.rc index 14c395ba6..2d15a9509 100644 --- a/Lib/Core/IndyCore50.rc +++ b/Lib/Core/IndyCore50.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore50\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore50.bpl\0" diff --git a/Lib/Core/IndyCore60.RES b/Lib/Core/IndyCore60.RES index 2fd4f0263..48035fa1d 100644 Binary files a/Lib/Core/IndyCore60.RES and b/Lib/Core/IndyCore60.RES differ diff --git a/Lib/Core/IndyCore60.rc b/Lib/Core/IndyCore60.rc index c80204de3..c95b6324e 100644 --- a/Lib/Core/IndyCore60.rc +++ b/Lib/Core/IndyCore60.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore60\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore60.bpl\0" diff --git a/Lib/Core/IndyCore70.RES b/Lib/Core/IndyCore70.RES index 67f2e699f..7174da799 100644 Binary files a/Lib/Core/IndyCore70.RES and b/Lib/Core/IndyCore70.RES differ diff --git a/Lib/Core/IndyCore70.rc b/Lib/Core/IndyCore70.rc index 612c60be1..91503c9b4 100644 --- a/Lib/Core/IndyCore70.rc +++ b/Lib/Core/IndyCore70.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore70\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore70.bpl\0" diff --git a/Lib/Core/IndyCore90.RES b/Lib/Core/IndyCore90.RES index 0f8a12997..70796c958 100644 Binary files a/Lib/Core/IndyCore90.RES and b/Lib/Core/IndyCore90.RES differ diff --git a/Lib/Core/IndyCore90.rc b/Lib/Core/IndyCore90.rc index c56bcf3f4..761be557c 100644 --- a/Lib/Core/IndyCore90.rc +++ b/Lib/Core/IndyCore90.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyCore90\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyCore90.bpl\0" diff --git a/Lib/Core/dclIndyCore.rc b/Lib/Core/dclIndyCore.rc index d0ddbebbb..899113b2f 100644 --- a/Lib/Core/dclIndyCore.rc +++ b/Lib/Core/dclIndyCore.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore.bpl\0" diff --git a/Lib/Core/dclIndyCore100.rc b/Lib/Core/dclIndyCore100.rc index f89a941d3..a4d2e52c1 100644 --- a/Lib/Core/dclIndyCore100.rc +++ b/Lib/Core/dclIndyCore100.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore100\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore100.bpl\0" diff --git a/Lib/Core/dclIndyCore100.res b/Lib/Core/dclIndyCore100.res index 54ad9863b..bd975c3e5 100644 Binary files a/Lib/Core/dclIndyCore100.res and b/Lib/Core/dclIndyCore100.res differ diff --git a/Lib/Core/dclIndyCore110.RES b/Lib/Core/dclIndyCore110.RES index e1fe064d0..44b2fa8fd 100644 Binary files a/Lib/Core/dclIndyCore110.RES and b/Lib/Core/dclIndyCore110.RES differ diff --git a/Lib/Core/dclIndyCore110.rc b/Lib/Core/dclIndyCore110.rc index 192baebb6..e67ebe1f6 100644 --- a/Lib/Core/dclIndyCore110.rc +++ b/Lib/Core/dclIndyCore110.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore110\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore110.bpl\0" diff --git a/Lib/Core/dclIndyCore120.RES b/Lib/Core/dclIndyCore120.RES index a569b0781..0cc5bf9bd 100644 Binary files a/Lib/Core/dclIndyCore120.RES and b/Lib/Core/dclIndyCore120.RES differ diff --git a/Lib/Core/dclIndyCore120.rc b/Lib/Core/dclIndyCore120.rc index c136abb98..ac78e4cec 100644 --- a/Lib/Core/dclIndyCore120.rc +++ b/Lib/Core/dclIndyCore120.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore120\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore120.bpl\0" diff --git a/Lib/Core/dclIndyCore130.rc b/Lib/Core/dclIndyCore130.rc index 5ae95c4a8..2314f02ef 100644 --- a/Lib/Core/dclIndyCore130.rc +++ b/Lib/Core/dclIndyCore130.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore130\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore130.bpl\0" diff --git a/Lib/Core/dclIndyCore130.res b/Lib/Core/dclIndyCore130.res index 282a40e9c..c69f3c150 100644 Binary files a/Lib/Core/dclIndyCore130.res and b/Lib/Core/dclIndyCore130.res differ diff --git a/Lib/Core/dclIndyCore140.RES b/Lib/Core/dclIndyCore140.RES index 36cc32dc5..acd9e4c19 100644 Binary files a/Lib/Core/dclIndyCore140.RES and b/Lib/Core/dclIndyCore140.RES differ diff --git a/Lib/Core/dclIndyCore140.rc b/Lib/Core/dclIndyCore140.rc index bdd6fb6e3..65f9d4d5a 100644 --- a/Lib/Core/dclIndyCore140.rc +++ b/Lib/Core/dclIndyCore140.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore140\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore140.bpl\0" diff --git a/Lib/Core/dclIndyCore150.RES b/Lib/Core/dclIndyCore150.RES index a7b788d7e..1a8458bc7 100644 Binary files a/Lib/Core/dclIndyCore150.RES and b/Lib/Core/dclIndyCore150.RES differ diff --git a/Lib/Core/dclIndyCore150.rc b/Lib/Core/dclIndyCore150.rc index 936d12cbb..334457d5f 100644 --- a/Lib/Core/dclIndyCore150.rc +++ b/Lib/Core/dclIndyCore150.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore150\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore150.bpl\0" diff --git a/Lib/Core/dclIndyCore160.rc b/Lib/Core/dclIndyCore160.rc index 89bcf97be..7e102670d 100644 --- a/Lib/Core/dclIndyCore160.rc +++ b/Lib/Core/dclIndyCore160.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore160\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore160.bpl\0" diff --git a/Lib/Core/dclIndyCore160.res b/Lib/Core/dclIndyCore160.res index e099e665a..1bb165655 100644 Binary files a/Lib/Core/dclIndyCore160.res and b/Lib/Core/dclIndyCore160.res differ diff --git a/Lib/Core/dclIndyCore170.rc b/Lib/Core/dclIndyCore170.rc index 778d9de7a..4ef911ce3 100644 --- a/Lib/Core/dclIndyCore170.rc +++ b/Lib/Core/dclIndyCore170.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore170\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore170.bpl\0" diff --git a/Lib/Core/dclIndyCore170.res b/Lib/Core/dclIndyCore170.res index 707100bf3..9fbe59097 100644 Binary files a/Lib/Core/dclIndyCore170.res and b/Lib/Core/dclIndyCore170.res differ diff --git a/Lib/Core/dclIndyCore180.rc b/Lib/Core/dclIndyCore180.rc index 0cd6b62c0..e13040fec 100644 --- a/Lib/Core/dclIndyCore180.rc +++ b/Lib/Core/dclIndyCore180.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore180\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore180.bpl\0" diff --git a/Lib/Core/dclIndyCore180.res b/Lib/Core/dclIndyCore180.res index 3b21c9159..a2af9bd01 100644 Binary files a/Lib/Core/dclIndyCore180.res and b/Lib/Core/dclIndyCore180.res differ diff --git a/Lib/Core/dclIndyCore190.rc b/Lib/Core/dclIndyCore190.rc index d4a14c347..6e1b4758d 100644 --- a/Lib/Core/dclIndyCore190.rc +++ b/Lib/Core/dclIndyCore190.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore190\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore190.bpl\0" diff --git a/Lib/Core/dclIndyCore190.res b/Lib/Core/dclIndyCore190.res index 78b254d65..371c8c059 100644 Binary files a/Lib/Core/dclIndyCore190.res and b/Lib/Core/dclIndyCore190.res differ diff --git a/Lib/Core/dclIndyCore200.rc b/Lib/Core/dclIndyCore200.rc index 59db8c534..2895a97b7 100644 --- a/Lib/Core/dclIndyCore200.rc +++ b/Lib/Core/dclIndyCore200.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore200\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore200.bpl\0" diff --git a/Lib/Core/dclIndyCore200.res b/Lib/Core/dclIndyCore200.res index 967c354c0..961738d0e 100644 Binary files a/Lib/Core/dclIndyCore200.res and b/Lib/Core/dclIndyCore200.res differ diff --git a/Lib/Core/dclIndyCore210.rc b/Lib/Core/dclIndyCore210.rc index eeea74bab..acc20ac45 100644 --- a/Lib/Core/dclIndyCore210.rc +++ b/Lib/Core/dclIndyCore210.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore210\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore210.bpl\0" diff --git a/Lib/Core/dclIndyCore210.res b/Lib/Core/dclIndyCore210.res index 9a267de2e..2be322fa6 100644 Binary files a/Lib/Core/dclIndyCore210.res and b/Lib/Core/dclIndyCore210.res differ diff --git a/Lib/Core/dclIndyCore220.rc b/Lib/Core/dclIndyCore220.rc index 4b85bb9d8..80efd1256 100644 --- a/Lib/Core/dclIndyCore220.rc +++ b/Lib/Core/dclIndyCore220.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore220\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore220.bpl\0" diff --git a/Lib/Core/dclIndyCore220.res b/Lib/Core/dclIndyCore220.res index 16937a2df..7f35a508c 100644 Binary files a/Lib/Core/dclIndyCore220.res and b/Lib/Core/dclIndyCore220.res differ diff --git a/Lib/Core/dclIndyCore230.rc b/Lib/Core/dclIndyCore230.rc index 90093bc84..2d160d734 100644 --- a/Lib/Core/dclIndyCore230.rc +++ b/Lib/Core/dclIndyCore230.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore230\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore230.bpl\0" diff --git a/Lib/Core/dclIndyCore230.res b/Lib/Core/dclIndyCore230.res index e48eedc14..7ed8ce0df 100644 Binary files a/Lib/Core/dclIndyCore230.res and b/Lib/Core/dclIndyCore230.res differ diff --git a/Lib/Core/dclIndyCore240.rc b/Lib/Core/dclIndyCore240.rc index 53f65dca8..676ea615d 100644 --- a/Lib/Core/dclIndyCore240.rc +++ b/Lib/Core/dclIndyCore240.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore240\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore240.bpl\0" diff --git a/Lib/Core/dclIndyCore240.res b/Lib/Core/dclIndyCore240.res index 8ad82c4d4..4a99fdb78 100644 Binary files a/Lib/Core/dclIndyCore240.res and b/Lib/Core/dclIndyCore240.res differ diff --git a/Lib/Core/dclIndyCore250.rc b/Lib/Core/dclIndyCore250.rc index 8883a8a00..1ce9bf451 100644 --- a/Lib/Core/dclIndyCore250.rc +++ b/Lib/Core/dclIndyCore250.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore250\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore250.bpl\0" diff --git a/Lib/Core/dclIndyCore250.res b/Lib/Core/dclIndyCore250.res index b84d1d73a..bf1651799 100644 Binary files a/Lib/Core/dclIndyCore250.res and b/Lib/Core/dclIndyCore250.res differ diff --git a/Lib/Core/dclIndyCore260.rc b/Lib/Core/dclIndyCore260.rc index fa31ba715..1d75422c3 100644 --- a/Lib/Core/dclIndyCore260.rc +++ b/Lib/Core/dclIndyCore260.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore260\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore260.bpl\0" diff --git a/Lib/Core/dclIndyCore260.res b/Lib/Core/dclIndyCore260.res index 9fb4f2788..3d07ddada 100644 Binary files a/Lib/Core/dclIndyCore260.res and b/Lib/Core/dclIndyCore260.res differ diff --git a/Lib/Core/dclIndyCore270.rc b/Lib/Core/dclIndyCore270.rc index 27f74fed0..90cbd7082 100644 --- a/Lib/Core/dclIndyCore270.rc +++ b/Lib/Core/dclIndyCore270.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore270\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore270.bpl\0" diff --git a/Lib/Core/dclIndyCore280.rc b/Lib/Core/dclIndyCore280.rc index 2c64548a1..8fd8b12ad 100644 --- a/Lib/Core/dclIndyCore280.rc +++ b/Lib/Core/dclIndyCore280.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore280\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore280.bpl\0" diff --git a/Lib/Core/dclIndyCore290.rc b/Lib/Core/dclIndyCore290.rc index 57d469a43..3878fc40e 100644 --- a/Lib/Core/dclIndyCore290.rc +++ b/Lib/Core/dclIndyCore290.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore290\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore290.bpl\0" diff --git a/Lib/Core/dclIndyCore290.res b/Lib/Core/dclIndyCore290.res index 527eb12d8..a0e1a8cc0 100644 Binary files a/Lib/Core/dclIndyCore290.res and b/Lib/Core/dclIndyCore290.res differ diff --git a/Lib/Core/dclIndyCore40.RES b/Lib/Core/dclIndyCore40.RES index d546a9ecd..fe17d2fd7 100644 Binary files a/Lib/Core/dclIndyCore40.RES and b/Lib/Core/dclIndyCore40.RES differ diff --git a/Lib/Core/dclIndyCore40.rc b/Lib/Core/dclIndyCore40.rc index 597f130a9..5680280ed 100644 --- a/Lib/Core/dclIndyCore40.rc +++ b/Lib/Core/dclIndyCore40.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore40\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore40.bpl\0" diff --git a/Lib/Core/dclIndyCore50.rc b/Lib/Core/dclIndyCore50.rc index a0b99eb3b..71c4c4db7 100644 --- a/Lib/Core/dclIndyCore50.rc +++ b/Lib/Core/dclIndyCore50.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore50\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore50.bpl\0" diff --git a/Lib/Core/dclIndyCore50.res b/Lib/Core/dclIndyCore50.res index a8969862d..05fbbb02d 100644 Binary files a/Lib/Core/dclIndyCore50.res and b/Lib/Core/dclIndyCore50.res differ diff --git a/Lib/Core/dclIndyCore60.rc b/Lib/Core/dclIndyCore60.rc index 79af95794..83b3233bc 100644 --- a/Lib/Core/dclIndyCore60.rc +++ b/Lib/Core/dclIndyCore60.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore60\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore60.bpl\0" diff --git a/Lib/Core/dclIndyCore60.res b/Lib/Core/dclIndyCore60.res index 10f21a4c6..86daab048 100644 Binary files a/Lib/Core/dclIndyCore60.res and b/Lib/Core/dclIndyCore60.res differ diff --git a/Lib/Core/dclIndyCore70.rc b/Lib/Core/dclIndyCore70.rc index 74efdfffd..3e7284772 100644 --- a/Lib/Core/dclIndyCore70.rc +++ b/Lib/Core/dclIndyCore70.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore70\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore70.bpl\0" diff --git a/Lib/Core/dclIndyCore70.res b/Lib/Core/dclIndyCore70.res index 1e6670223..5e9d3b333 100644 Binary files a/Lib/Core/dclIndyCore70.res and b/Lib/Core/dclIndyCore70.res differ diff --git a/Lib/Core/dclIndyCore90.rc b/Lib/Core/dclIndyCore90.rc index da9b3b7c4..ec33938d0 100644 --- a/Lib/Core/dclIndyCore90.rc +++ b/Lib/Core/dclIndyCore90.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Core Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyCore90\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyCore90.bpl\0" diff --git a/Lib/Core/dclIndyCore90.res b/Lib/Core/dclIndyCore90.res index 2dd66570f..ba35338e6 100644 Binary files a/Lib/Core/dclIndyCore90.res and b/Lib/Core/dclIndyCore90.res differ diff --git a/Lib/FCL/IdCompilerDefines.inc b/Lib/FCL/IdCompilerDefines.inc index 8eb530d96..41682a202 100644 --- a/Lib/FCL/IdCompilerDefines.inc +++ b/Lib/FCL/IdCompilerDefines.inc @@ -1163,6 +1163,7 @@ {$IFDEF VCL_2006_OR_ABOVE} {$DEFINE USE_INLINE} {$DEFINE HAS_2PARAM_FileAge} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF WINDOWS} // System.RegisterExpectedMemoryLeak() is only available on Windows at this time {$DEFINE HAS_System_RegisterExpectedMemoryLeak} @@ -1473,6 +1474,7 @@ {$ENDIF} {$DEFINE HAS_UNIT_ctypes} {$DEFINE HAS_sLineBreak} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF FPC_HAS_UNICODESTRING} {$DEFINE HAS_UnicodeString} {$ELSE} diff --git a/Lib/FCL/IdVers.inc b/Lib/FCL/IdVers.inc index 353692b0e..b8e47ebf2 100644 --- a/Lib/FCL/IdVers.inc +++ b/Lib/FCL/IdVers.inc @@ -4,15 +4,15 @@ {$NODEFINE gsIdVersionMinor} gsIdVersionRelease = 3; {$NODEFINE gsIdVersionRelease} - gsIdVersionBuild = 0; + gsIdVersionBuild = 1; {$NODEFINE gsIdVersionBuild} (*$HPPEMIT '#define gsIdVersionMajor 10'*) (*$HPPEMIT '#define gsIdVersionMinor 6'*) (*$HPPEMIT '#define gsIdVersionRelease 3'*) - (*$HPPEMIT '#define gsIdVersionBuild 0'*) + (*$HPPEMIT '#define gsIdVersionBuild 1'*) (*$HPPEMIT ''*) - gsIdVersion = '10.6.3.0'; {do not localize} + gsIdVersion = '10.6.3.1'; {do not localize} gsIdProductName = 'Indy'; {do not localize} gsIdProductVersion = '10.6.3'; {do not localize} diff --git a/Lib/Protocols/IdAuthenticationNTLM.pas b/Lib/Protocols/IdAuthenticationNTLM.pas index b0f38f95b..373087bc8 100644 --- a/Lib/Protocols/IdAuthenticationNTLM.pas +++ b/Lib/Protocols/IdAuthenticationNTLM.pas @@ -80,8 +80,8 @@ implementation IdGlobalProtocols, IdException, IdCoderMIME, - IdResourceStringsOpenSSL, {.$IFDEF USE_OPENSSL} + IdResourceStringsOpenSSL, IdSSLOpenSSLHeaders, IdSSLOpenSSL, {.$ENDIF} diff --git a/Lib/Protocols/IdCompilerDefines.inc b/Lib/Protocols/IdCompilerDefines.inc index 8eb530d96..41682a202 100644 --- a/Lib/Protocols/IdCompilerDefines.inc +++ b/Lib/Protocols/IdCompilerDefines.inc @@ -1163,6 +1163,7 @@ {$IFDEF VCL_2006_OR_ABOVE} {$DEFINE USE_INLINE} {$DEFINE HAS_2PARAM_FileAge} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF WINDOWS} // System.RegisterExpectedMemoryLeak() is only available on Windows at this time {$DEFINE HAS_System_RegisterExpectedMemoryLeak} @@ -1473,6 +1474,7 @@ {$ENDIF} {$DEFINE HAS_UNIT_ctypes} {$DEFINE HAS_sLineBreak} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF FPC_HAS_UNICODESTRING} {$DEFINE HAS_UnicodeString} {$ELSE} diff --git a/Lib/Protocols/IdDNSResolver.pas b/Lib/Protocols/IdDNSResolver.pas index b6a7f2fa2..e707411e5 100644 --- a/Lib/Protocols/IdDNSResolver.pas +++ b/Lib/Protocols/IdDNSResolver.pas @@ -220,6 +220,8 @@ interface (*$HPPEMIT '#pragma alias "@Iddnsresolver@TIdDNSResolver@SetPortW$qqrxus"="@Iddnsresolver@TIdDNSResolver@SetPort$qqrxus"' *) (*$HPPEMIT '#endif' *) (*$HPPEMIT '#endif' *) +// TODO: when compiling with bcc64x, use this pragma instead: +// #pragma comment(linker, "/alternatename:=") type { TODO : Solve problem with obsolete records } diff --git a/Lib/Protocols/IdFTPServer.pas b/Lib/Protocols/IdFTPServer.pas index 7e22dfe6d..6ef417745 100644 --- a/Lib/Protocols/IdFTPServer.pas +++ b/Lib/Protocols/IdFTPServer.pas @@ -3596,6 +3596,8 @@ procedure TIdFTPServer.DoDataChannelOperation(ASender: TIdCommand; const AConnec var LLocalLine : String; begin + // TODO: rewrite this to wait on both control and data sockets at the same + // time and read a command only if the control socket is actually readable... LLocalLine := ReadCommandLine(AContext); if LLocalLine <> '' then begin if not FDataChannelCommands.HandleCommand(AContext, LLocalLine) then begin diff --git a/Lib/Protocols/IdGlobalProtocols.pas b/Lib/Protocols/IdGlobalProtocols.pas index 0a69d9deb..48e7cb4ce 100644 --- a/Lib/Protocols/IdGlobalProtocols.pas +++ b/Lib/Protocols/IdGlobalProtocols.pas @@ -3579,6 +3579,7 @@ procedure FillMimeTable(const AMIMEList: TStrings; const ALoadFromOS: Boolean = KeyList := TStringList.create; try Reg.RootKey := HKEY_CLASSES_ROOT; + // TODO: use RegEnumKeyEx() directly to avoid wasting memory loading keys we don't care about... if Reg.OpenKeyReadOnly('\') then begin {do not localize} Reg.GetKeyNames(KeyList); Reg.Closekey; diff --git a/Lib/Protocols/IdHTTP.pas b/Lib/Protocols/IdHTTP.pas index bc0b66938..ec731dbcb 100644 --- a/Lib/Protocols/IdHTTP.pas +++ b/Lib/Protocols/IdHTTP.pas @@ -965,7 +965,9 @@ function TIdCustomHTTP.SetRequestParams(ASource: TStrings; AByteEncoding: IIdTex begin if AStrings.Count > 1 then begin // break trailing CR&LF - Result := ReplaceAll(Trim(AStrings.Text), sLineBreak, '&'); {do not localize} + Result := ReplaceAll(Trim(AStrings.Text), + {$IFDEF HAS_TStrings_LineBreak}AStrings.LineBreak{$ELSE}sLineBreak{$ENDIF}, + '&'); {do not localize} end else begin Result := Trim(AStrings.Text); end; diff --git a/Lib/Protocols/IdIRC.pas b/Lib/Protocols/IdIRC.pas index fb0a40e8c..dfcf4aa1b 100644 --- a/Lib/Protocols/IdIRC.pas +++ b/Lib/Protocols/IdIRC.pas @@ -1576,7 +1576,10 @@ procedure TIdIRC.CommandPRIVMSG(ASender: TIdCommand); end; // AWinkelsdorf 3/10/2010 ToDo: CTCP Ping might need a CTIME result but // many clients do not send the required CTIME with the Ping Query... - CTCPReply(FSenderNick, LCTCP, DateTimeToStr(Now)); {do not localize} + if LData = '' then begin + LData := DateTimeToStr(Now); + end; + CTCPReply(FSenderNick, LCTCP, LData); {do not localize} end; 3: { FINGER } begin diff --git a/Lib/Protocols/IndyProtocols.rc b/Lib/Protocols/IndyProtocols.rc index 533ff3879..e66507428 100644 --- a/Lib/Protocols/IndyProtocols.rc +++ b/Lib/Protocols/IndyProtocols.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols.bpl\0" diff --git a/Lib/Protocols/IndyProtocols100.rc b/Lib/Protocols/IndyProtocols100.rc index b3abd0e03..0842dc534 100644 --- a/Lib/Protocols/IndyProtocols100.rc +++ b/Lib/Protocols/IndyProtocols100.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols100\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols100.bpl\0" diff --git a/Lib/Protocols/IndyProtocols100.res b/Lib/Protocols/IndyProtocols100.res index 70024685f..b2f48c359 100644 Binary files a/Lib/Protocols/IndyProtocols100.res and b/Lib/Protocols/IndyProtocols100.res differ diff --git a/Lib/Protocols/IndyProtocols110.RES b/Lib/Protocols/IndyProtocols110.RES index dc050d393..1f8a6bebd 100644 Binary files a/Lib/Protocols/IndyProtocols110.RES and b/Lib/Protocols/IndyProtocols110.RES differ diff --git a/Lib/Protocols/IndyProtocols110.rc b/Lib/Protocols/IndyProtocols110.rc index 585104b64..10d0e0d7d 100644 --- a/Lib/Protocols/IndyProtocols110.rc +++ b/Lib/Protocols/IndyProtocols110.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols110\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols110.bpl\0" diff --git a/Lib/Protocols/IndyProtocols120.rc b/Lib/Protocols/IndyProtocols120.rc index ae833a62a..32d5af02e 100644 --- a/Lib/Protocols/IndyProtocols120.rc +++ b/Lib/Protocols/IndyProtocols120.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols120\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols120.bpl\0" diff --git a/Lib/Protocols/IndyProtocols120.res b/Lib/Protocols/IndyProtocols120.res index a097dda69..0a1bfa5f4 100644 Binary files a/Lib/Protocols/IndyProtocols120.res and b/Lib/Protocols/IndyProtocols120.res differ diff --git a/Lib/Protocols/IndyProtocols130.rc b/Lib/Protocols/IndyProtocols130.rc index 433d7d3e5..6d98e27cd 100644 --- a/Lib/Protocols/IndyProtocols130.rc +++ b/Lib/Protocols/IndyProtocols130.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols130\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols130.bpl\0" diff --git a/Lib/Protocols/IndyProtocols130.res b/Lib/Protocols/IndyProtocols130.res index 08b3aab3b..5c7599e94 100644 Binary files a/Lib/Protocols/IndyProtocols130.res and b/Lib/Protocols/IndyProtocols130.res differ diff --git a/Lib/Protocols/IndyProtocols140.RES b/Lib/Protocols/IndyProtocols140.RES index b7639be85..5512985b8 100644 Binary files a/Lib/Protocols/IndyProtocols140.RES and b/Lib/Protocols/IndyProtocols140.RES differ diff --git a/Lib/Protocols/IndyProtocols140.rc b/Lib/Protocols/IndyProtocols140.rc index 6db124cfe..d7c7f90c4 100644 --- a/Lib/Protocols/IndyProtocols140.rc +++ b/Lib/Protocols/IndyProtocols140.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols140\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols140.bpl\0" diff --git a/Lib/Protocols/IndyProtocols150.RES b/Lib/Protocols/IndyProtocols150.RES index 8a31a532d..6ff04ba76 100644 Binary files a/Lib/Protocols/IndyProtocols150.RES and b/Lib/Protocols/IndyProtocols150.RES differ diff --git a/Lib/Protocols/IndyProtocols150.rc b/Lib/Protocols/IndyProtocols150.rc index 9a0f089c0..50ae2bb69 100644 --- a/Lib/Protocols/IndyProtocols150.rc +++ b/Lib/Protocols/IndyProtocols150.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols150\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols150.bpl\0" diff --git a/Lib/Protocols/IndyProtocols160.rc b/Lib/Protocols/IndyProtocols160.rc index e73c07612..ff2cae6ce 100644 --- a/Lib/Protocols/IndyProtocols160.rc +++ b/Lib/Protocols/IndyProtocols160.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols160\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols160.bpl\0" diff --git a/Lib/Protocols/IndyProtocols160.res b/Lib/Protocols/IndyProtocols160.res index 282d7a79b..de72b7c62 100644 Binary files a/Lib/Protocols/IndyProtocols160.res and b/Lib/Protocols/IndyProtocols160.res differ diff --git a/Lib/Protocols/IndyProtocols170.rc b/Lib/Protocols/IndyProtocols170.rc index 9cac379ea..9a56637ae 100644 --- a/Lib/Protocols/IndyProtocols170.rc +++ b/Lib/Protocols/IndyProtocols170.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols170\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols170.bpl\0" diff --git a/Lib/Protocols/IndyProtocols170.res b/Lib/Protocols/IndyProtocols170.res index 93bbd2789..22ad20338 100644 Binary files a/Lib/Protocols/IndyProtocols170.res and b/Lib/Protocols/IndyProtocols170.res differ diff --git a/Lib/Protocols/IndyProtocols180.rc b/Lib/Protocols/IndyProtocols180.rc index fc7633ac5..60368ad08 100644 --- a/Lib/Protocols/IndyProtocols180.rc +++ b/Lib/Protocols/IndyProtocols180.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols180\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols180.bpl\0" diff --git a/Lib/Protocols/IndyProtocols180.res b/Lib/Protocols/IndyProtocols180.res index c4d18d875..aeff75cf2 100644 Binary files a/Lib/Protocols/IndyProtocols180.res and b/Lib/Protocols/IndyProtocols180.res differ diff --git a/Lib/Protocols/IndyProtocols190.rc b/Lib/Protocols/IndyProtocols190.rc index 5a2acbd78..6ccdc7baf 100644 --- a/Lib/Protocols/IndyProtocols190.rc +++ b/Lib/Protocols/IndyProtocols190.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols190\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols190.bpl\0" diff --git a/Lib/Protocols/IndyProtocols190.res b/Lib/Protocols/IndyProtocols190.res index f4f23af55..5d10bad23 100644 Binary files a/Lib/Protocols/IndyProtocols190.res and b/Lib/Protocols/IndyProtocols190.res differ diff --git a/Lib/Protocols/IndyProtocols200.rc b/Lib/Protocols/IndyProtocols200.rc index a2b15e530..5af834a08 100644 --- a/Lib/Protocols/IndyProtocols200.rc +++ b/Lib/Protocols/IndyProtocols200.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols200\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols200.bpl\0" diff --git a/Lib/Protocols/IndyProtocols200.res b/Lib/Protocols/IndyProtocols200.res index 773f0e28d..019ce8b22 100644 Binary files a/Lib/Protocols/IndyProtocols200.res and b/Lib/Protocols/IndyProtocols200.res differ diff --git a/Lib/Protocols/IndyProtocols210.rc b/Lib/Protocols/IndyProtocols210.rc index 457b555a9..29d4550d6 100644 --- a/Lib/Protocols/IndyProtocols210.rc +++ b/Lib/Protocols/IndyProtocols210.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols210\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols210.bpl\0" diff --git a/Lib/Protocols/IndyProtocols210.res b/Lib/Protocols/IndyProtocols210.res index d27df6e27..d9a0ada36 100644 Binary files a/Lib/Protocols/IndyProtocols210.res and b/Lib/Protocols/IndyProtocols210.res differ diff --git a/Lib/Protocols/IndyProtocols220.rc b/Lib/Protocols/IndyProtocols220.rc index ead108ba4..f412a55f2 100644 --- a/Lib/Protocols/IndyProtocols220.rc +++ b/Lib/Protocols/IndyProtocols220.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols220\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols220.bpl\0" diff --git a/Lib/Protocols/IndyProtocols220.res b/Lib/Protocols/IndyProtocols220.res index ee7345885..34743abd6 100644 Binary files a/Lib/Protocols/IndyProtocols220.res and b/Lib/Protocols/IndyProtocols220.res differ diff --git a/Lib/Protocols/IndyProtocols230.rc b/Lib/Protocols/IndyProtocols230.rc index 60bb9dffb..70a4387b0 100644 --- a/Lib/Protocols/IndyProtocols230.rc +++ b/Lib/Protocols/IndyProtocols230.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols230\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols230.bpl\0" diff --git a/Lib/Protocols/IndyProtocols230.res b/Lib/Protocols/IndyProtocols230.res index 1ae032f13..b20b713d5 100644 Binary files a/Lib/Protocols/IndyProtocols230.res and b/Lib/Protocols/IndyProtocols230.res differ diff --git a/Lib/Protocols/IndyProtocols240.rc b/Lib/Protocols/IndyProtocols240.rc index baadd8385..366489c43 100644 --- a/Lib/Protocols/IndyProtocols240.rc +++ b/Lib/Protocols/IndyProtocols240.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols240\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols240.bpl\0" diff --git a/Lib/Protocols/IndyProtocols240.res b/Lib/Protocols/IndyProtocols240.res index 45a761671..d2fffcfef 100644 Binary files a/Lib/Protocols/IndyProtocols240.res and b/Lib/Protocols/IndyProtocols240.res differ diff --git a/Lib/Protocols/IndyProtocols250.rc b/Lib/Protocols/IndyProtocols250.rc index 7bc17abf7..37760b652 100644 --- a/Lib/Protocols/IndyProtocols250.rc +++ b/Lib/Protocols/IndyProtocols250.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols250\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols250.bpl\0" diff --git a/Lib/Protocols/IndyProtocols250.res b/Lib/Protocols/IndyProtocols250.res index b16e5b8b2..f47c78620 100644 Binary files a/Lib/Protocols/IndyProtocols250.res and b/Lib/Protocols/IndyProtocols250.res differ diff --git a/Lib/Protocols/IndyProtocols260.rc b/Lib/Protocols/IndyProtocols260.rc index 4ce952537..b56fda476 100644 --- a/Lib/Protocols/IndyProtocols260.rc +++ b/Lib/Protocols/IndyProtocols260.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols260\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols260.bpl\0" diff --git a/Lib/Protocols/IndyProtocols270.rc b/Lib/Protocols/IndyProtocols270.rc index 78fc6941e..59ae80479 100644 --- a/Lib/Protocols/IndyProtocols270.rc +++ b/Lib/Protocols/IndyProtocols270.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols270\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols270.bpl\0" diff --git a/Lib/Protocols/IndyProtocols280.rc b/Lib/Protocols/IndyProtocols280.rc index 2db80ef71..6c9996cbe 100644 --- a/Lib/Protocols/IndyProtocols280.rc +++ b/Lib/Protocols/IndyProtocols280.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols280\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols280.bpl\0" diff --git a/Lib/Protocols/IndyProtocols290.rc b/Lib/Protocols/IndyProtocols290.rc index 88eff715d..2d70d85f2 100644 --- a/Lib/Protocols/IndyProtocols290.rc +++ b/Lib/Protocols/IndyProtocols290.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols290\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols290.bpl\0" diff --git a/Lib/Protocols/IndyProtocols290.res b/Lib/Protocols/IndyProtocols290.res index da606b6bb..1d5c2d338 100644 Binary files a/Lib/Protocols/IndyProtocols290.res and b/Lib/Protocols/IndyProtocols290.res differ diff --git a/Lib/Protocols/IndyProtocols40.rc b/Lib/Protocols/IndyProtocols40.rc index 11e82ad85..967861482 100644 --- a/Lib/Protocols/IndyProtocols40.rc +++ b/Lib/Protocols/IndyProtocols40.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols40\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols40.bpl\0" diff --git a/Lib/Protocols/IndyProtocols40.res b/Lib/Protocols/IndyProtocols40.res index c7a304f7c..b560854e3 100644 Binary files a/Lib/Protocols/IndyProtocols40.res and b/Lib/Protocols/IndyProtocols40.res differ diff --git a/Lib/Protocols/IndyProtocols50.rc b/Lib/Protocols/IndyProtocols50.rc index d277a44ed..075124092 100644 --- a/Lib/Protocols/IndyProtocols50.rc +++ b/Lib/Protocols/IndyProtocols50.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols50\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols50.bpl\0" diff --git a/Lib/Protocols/IndyProtocols50.res b/Lib/Protocols/IndyProtocols50.res index 82040b329..18b053bea 100644 Binary files a/Lib/Protocols/IndyProtocols50.res and b/Lib/Protocols/IndyProtocols50.res differ diff --git a/Lib/Protocols/IndyProtocols60.rc b/Lib/Protocols/IndyProtocols60.rc index e1da02e9a..0a7224c58 100644 --- a/Lib/Protocols/IndyProtocols60.rc +++ b/Lib/Protocols/IndyProtocols60.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols60\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols60.bpl\0" diff --git a/Lib/Protocols/IndyProtocols60.res b/Lib/Protocols/IndyProtocols60.res index e0b0ab889..7e6a8f35e 100644 Binary files a/Lib/Protocols/IndyProtocols60.res and b/Lib/Protocols/IndyProtocols60.res differ diff --git a/Lib/Protocols/IndyProtocols70.rc b/Lib/Protocols/IndyProtocols70.rc index 2ed6d2a79..c70f1448d 100644 --- a/Lib/Protocols/IndyProtocols70.rc +++ b/Lib/Protocols/IndyProtocols70.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols70\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols70.bpl\0" diff --git a/Lib/Protocols/IndyProtocols70.res b/Lib/Protocols/IndyProtocols70.res index 2054c042c..40b3c595c 100644 Binary files a/Lib/Protocols/IndyProtocols70.res and b/Lib/Protocols/IndyProtocols70.res differ diff --git a/Lib/Protocols/IndyProtocols90.rc b/Lib/Protocols/IndyProtocols90.rc index fa226391d..ad127d1f5 100644 --- a/Lib/Protocols/IndyProtocols90.rc +++ b/Lib/Protocols/IndyProtocols90.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndyProtocols90\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndyProtocols90.bpl\0" diff --git a/Lib/Protocols/IndyProtocols90.res b/Lib/Protocols/IndyProtocols90.res index 464ed908a..a71397313 100644 Binary files a/Lib/Protocols/IndyProtocols90.res and b/Lib/Protocols/IndyProtocols90.res differ diff --git a/Lib/Protocols/dclIndyProtocols.rc b/Lib/Protocols/dclIndyProtocols.rc index 08671df58..65c4e3329 100644 --- a/Lib/Protocols/dclIndyProtocols.rc +++ b/Lib/Protocols/dclIndyProtocols.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols100.RES b/Lib/Protocols/dclIndyProtocols100.RES index b08fb840f..c0d2c014c 100644 Binary files a/Lib/Protocols/dclIndyProtocols100.RES and b/Lib/Protocols/dclIndyProtocols100.RES differ diff --git a/Lib/Protocols/dclIndyProtocols100.rc b/Lib/Protocols/dclIndyProtocols100.rc index ae2e3d6b4..9228aae58 100644 --- a/Lib/Protocols/dclIndyProtocols100.rc +++ b/Lib/Protocols/dclIndyProtocols100.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols100\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols100.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols110.RES b/Lib/Protocols/dclIndyProtocols110.RES index f061966ee..7d500c81d 100644 Binary files a/Lib/Protocols/dclIndyProtocols110.RES and b/Lib/Protocols/dclIndyProtocols110.RES differ diff --git a/Lib/Protocols/dclIndyProtocols110.rc b/Lib/Protocols/dclIndyProtocols110.rc index 0d9e8a9aa..9e11aa0d8 100644 --- a/Lib/Protocols/dclIndyProtocols110.rc +++ b/Lib/Protocols/dclIndyProtocols110.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols110\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols110.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols120.RES b/Lib/Protocols/dclIndyProtocols120.RES index c2c3b1cee..1e6c3e24a 100644 Binary files a/Lib/Protocols/dclIndyProtocols120.RES and b/Lib/Protocols/dclIndyProtocols120.RES differ diff --git a/Lib/Protocols/dclIndyProtocols120.rc b/Lib/Protocols/dclIndyProtocols120.rc index 1c6b959e3..cc541aa5f 100644 --- a/Lib/Protocols/dclIndyProtocols120.rc +++ b/Lib/Protocols/dclIndyProtocols120.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols120\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols120.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols130.rc b/Lib/Protocols/dclIndyProtocols130.rc index 61987165c..9a7a76c2e 100644 --- a/Lib/Protocols/dclIndyProtocols130.rc +++ b/Lib/Protocols/dclIndyProtocols130.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols130\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols130.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols130.res b/Lib/Protocols/dclIndyProtocols130.res index 13ecabd11..fe8c3b946 100644 Binary files a/Lib/Protocols/dclIndyProtocols130.res and b/Lib/Protocols/dclIndyProtocols130.res differ diff --git a/Lib/Protocols/dclIndyProtocols140.RES b/Lib/Protocols/dclIndyProtocols140.RES index 3a0ad578b..db390bc88 100644 Binary files a/Lib/Protocols/dclIndyProtocols140.RES and b/Lib/Protocols/dclIndyProtocols140.RES differ diff --git a/Lib/Protocols/dclIndyProtocols140.rc b/Lib/Protocols/dclIndyProtocols140.rc index b5a2966fd..f2a14981e 100644 --- a/Lib/Protocols/dclIndyProtocols140.rc +++ b/Lib/Protocols/dclIndyProtocols140.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols140\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols140.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols150.RES b/Lib/Protocols/dclIndyProtocols150.RES index a30695fe0..7a3ef60bd 100644 Binary files a/Lib/Protocols/dclIndyProtocols150.RES and b/Lib/Protocols/dclIndyProtocols150.RES differ diff --git a/Lib/Protocols/dclIndyProtocols150.rc b/Lib/Protocols/dclIndyProtocols150.rc index 70573c04a..f18864ad6 100644 --- a/Lib/Protocols/dclIndyProtocols150.rc +++ b/Lib/Protocols/dclIndyProtocols150.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols150\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols150.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols160.rc b/Lib/Protocols/dclIndyProtocols160.rc index ae75433f6..4e4a1abe5 100644 --- a/Lib/Protocols/dclIndyProtocols160.rc +++ b/Lib/Protocols/dclIndyProtocols160.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols160\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols160.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols160.res b/Lib/Protocols/dclIndyProtocols160.res index 6302d1b1a..acfa25bf0 100644 Binary files a/Lib/Protocols/dclIndyProtocols160.res and b/Lib/Protocols/dclIndyProtocols160.res differ diff --git a/Lib/Protocols/dclIndyProtocols170.RES b/Lib/Protocols/dclIndyProtocols170.RES index f549f1f6c..838b4f927 100644 Binary files a/Lib/Protocols/dclIndyProtocols170.RES and b/Lib/Protocols/dclIndyProtocols170.RES differ diff --git a/Lib/Protocols/dclIndyProtocols170.rc b/Lib/Protocols/dclIndyProtocols170.rc index 471abd463..a6bddf6d9 100644 --- a/Lib/Protocols/dclIndyProtocols170.rc +++ b/Lib/Protocols/dclIndyProtocols170.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols170\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols170.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols180.rc b/Lib/Protocols/dclIndyProtocols180.rc index e1c81b68f..e2618514b 100644 --- a/Lib/Protocols/dclIndyProtocols180.rc +++ b/Lib/Protocols/dclIndyProtocols180.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols180\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols180.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols180.res b/Lib/Protocols/dclIndyProtocols180.res index beb702746..68f04a7c2 100644 Binary files a/Lib/Protocols/dclIndyProtocols180.res and b/Lib/Protocols/dclIndyProtocols180.res differ diff --git a/Lib/Protocols/dclIndyProtocols190.rc b/Lib/Protocols/dclIndyProtocols190.rc index a9ef9eafa..396c1a4a2 100644 --- a/Lib/Protocols/dclIndyProtocols190.rc +++ b/Lib/Protocols/dclIndyProtocols190.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols190\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols190.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols190.res b/Lib/Protocols/dclIndyProtocols190.res index 8a463af8d..8f5e5cadf 100644 Binary files a/Lib/Protocols/dclIndyProtocols190.res and b/Lib/Protocols/dclIndyProtocols190.res differ diff --git a/Lib/Protocols/dclIndyProtocols200.rc b/Lib/Protocols/dclIndyProtocols200.rc index adc3271be..92b897884 100644 --- a/Lib/Protocols/dclIndyProtocols200.rc +++ b/Lib/Protocols/dclIndyProtocols200.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols200\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols200.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols200.res b/Lib/Protocols/dclIndyProtocols200.res index a4c4a9ae7..5a1e06323 100644 Binary files a/Lib/Protocols/dclIndyProtocols200.res and b/Lib/Protocols/dclIndyProtocols200.res differ diff --git a/Lib/Protocols/dclIndyProtocols210.rc b/Lib/Protocols/dclIndyProtocols210.rc index 7ebae18f5..a91d57549 100644 --- a/Lib/Protocols/dclIndyProtocols210.rc +++ b/Lib/Protocols/dclIndyProtocols210.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols210\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols210.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols210.res b/Lib/Protocols/dclIndyProtocols210.res index 81ac56b8e..93eea1cb1 100644 Binary files a/Lib/Protocols/dclIndyProtocols210.res and b/Lib/Protocols/dclIndyProtocols210.res differ diff --git a/Lib/Protocols/dclIndyProtocols220.rc b/Lib/Protocols/dclIndyProtocols220.rc index 21a969d91..c84a7deb0 100644 --- a/Lib/Protocols/dclIndyProtocols220.rc +++ b/Lib/Protocols/dclIndyProtocols220.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols220\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols220.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols220.res b/Lib/Protocols/dclIndyProtocols220.res index aea528d9b..58e845137 100644 Binary files a/Lib/Protocols/dclIndyProtocols220.res and b/Lib/Protocols/dclIndyProtocols220.res differ diff --git a/Lib/Protocols/dclIndyProtocols230.rc b/Lib/Protocols/dclIndyProtocols230.rc index 911b8e799..98ee9e226 100644 --- a/Lib/Protocols/dclIndyProtocols230.rc +++ b/Lib/Protocols/dclIndyProtocols230.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols230\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols230.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols230.res b/Lib/Protocols/dclIndyProtocols230.res index 344a743d9..97a508ac0 100644 Binary files a/Lib/Protocols/dclIndyProtocols230.res and b/Lib/Protocols/dclIndyProtocols230.res differ diff --git a/Lib/Protocols/dclIndyProtocols240.rc b/Lib/Protocols/dclIndyProtocols240.rc index a2a962736..1f5c86536 100644 --- a/Lib/Protocols/dclIndyProtocols240.rc +++ b/Lib/Protocols/dclIndyProtocols240.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols240\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols240.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols240.res b/Lib/Protocols/dclIndyProtocols240.res index 97502e2b6..8c5cc401a 100644 Binary files a/Lib/Protocols/dclIndyProtocols240.res and b/Lib/Protocols/dclIndyProtocols240.res differ diff --git a/Lib/Protocols/dclIndyProtocols250.rc b/Lib/Protocols/dclIndyProtocols250.rc index b99ee21cb..fe97426af 100644 --- a/Lib/Protocols/dclIndyProtocols250.rc +++ b/Lib/Protocols/dclIndyProtocols250.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols250\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols250.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols250.res b/Lib/Protocols/dclIndyProtocols250.res index 3a5a1a37c..b6fea935f 100644 Binary files a/Lib/Protocols/dclIndyProtocols250.res and b/Lib/Protocols/dclIndyProtocols250.res differ diff --git a/Lib/Protocols/dclIndyProtocols260.rc b/Lib/Protocols/dclIndyProtocols260.rc index d13db59d0..bf3655b71 100644 --- a/Lib/Protocols/dclIndyProtocols260.rc +++ b/Lib/Protocols/dclIndyProtocols260.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols260\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols260.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols270.rc b/Lib/Protocols/dclIndyProtocols270.rc index ddda9beec..01c45c73b 100644 --- a/Lib/Protocols/dclIndyProtocols270.rc +++ b/Lib/Protocols/dclIndyProtocols270.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols270\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols270.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols280.rc b/Lib/Protocols/dclIndyProtocols280.rc index b7392f15d..25802ca67 100644 --- a/Lib/Protocols/dclIndyProtocols280.rc +++ b/Lib/Protocols/dclIndyProtocols280.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols280\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols280.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols290.rc b/Lib/Protocols/dclIndyProtocols290.rc index 92cc9985a..dbc2e8dcd 100644 --- a/Lib/Protocols/dclIndyProtocols290.rc +++ b/Lib/Protocols/dclIndyProtocols290.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols290\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols290.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols290.res b/Lib/Protocols/dclIndyProtocols290.res index 22f699c4e..04017a9a4 100644 Binary files a/Lib/Protocols/dclIndyProtocols290.res and b/Lib/Protocols/dclIndyProtocols290.res differ diff --git a/Lib/Protocols/dclIndyProtocols40.RES b/Lib/Protocols/dclIndyProtocols40.RES index 25cd1e190..61e587d4e 100644 Binary files a/Lib/Protocols/dclIndyProtocols40.RES and b/Lib/Protocols/dclIndyProtocols40.RES differ diff --git a/Lib/Protocols/dclIndyProtocols40.rc b/Lib/Protocols/dclIndyProtocols40.rc index 7af504026..a5c576e79 100644 --- a/Lib/Protocols/dclIndyProtocols40.rc +++ b/Lib/Protocols/dclIndyProtocols40.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols40\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols40.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols50.RES b/Lib/Protocols/dclIndyProtocols50.RES index ad8ad6525..b497339b9 100644 Binary files a/Lib/Protocols/dclIndyProtocols50.RES and b/Lib/Protocols/dclIndyProtocols50.RES differ diff --git a/Lib/Protocols/dclIndyProtocols50.rc b/Lib/Protocols/dclIndyProtocols50.rc index dcdd02ca8..e4bfc31e1 100644 --- a/Lib/Protocols/dclIndyProtocols50.rc +++ b/Lib/Protocols/dclIndyProtocols50.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols50\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols50.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols60.RES b/Lib/Protocols/dclIndyProtocols60.RES index 8a6bac81f..fba098e85 100644 Binary files a/Lib/Protocols/dclIndyProtocols60.RES and b/Lib/Protocols/dclIndyProtocols60.RES differ diff --git a/Lib/Protocols/dclIndyProtocols60.rc b/Lib/Protocols/dclIndyProtocols60.rc index 15ad8ac01..40565c060 100644 --- a/Lib/Protocols/dclIndyProtocols60.rc +++ b/Lib/Protocols/dclIndyProtocols60.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols60\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols60.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols70.rc b/Lib/Protocols/dclIndyProtocols70.rc index cd176fa11..5910d2504 100644 --- a/Lib/Protocols/dclIndyProtocols70.rc +++ b/Lib/Protocols/dclIndyProtocols70.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols70\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols70.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols70.res b/Lib/Protocols/dclIndyProtocols70.res index 0e96cb449..6a4ea38c5 100644 Binary files a/Lib/Protocols/dclIndyProtocols70.res and b/Lib/Protocols/dclIndyProtocols70.res differ diff --git a/Lib/Protocols/dclIndyProtocols90.rc b/Lib/Protocols/dclIndyProtocols90.rc index f3c12d9aa..9444d886d 100644 --- a/Lib/Protocols/dclIndyProtocols90.rc +++ b/Lib/Protocols/dclIndyProtocols90.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - Protocols Design-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "dclIndyProtocols90\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "dclIndyProtocols90.bpl\0" diff --git a/Lib/Protocols/dclIndyProtocols90.res b/Lib/Protocols/dclIndyProtocols90.res index 05691f41e..e337c390d 100644 Binary files a/Lib/Protocols/dclIndyProtocols90.res and b/Lib/Protocols/dclIndyProtocols90.res differ diff --git a/Lib/SuperCore/IdCompilerDefines.inc b/Lib/SuperCore/IdCompilerDefines.inc index 8eb530d96..41682a202 100644 --- a/Lib/SuperCore/IdCompilerDefines.inc +++ b/Lib/SuperCore/IdCompilerDefines.inc @@ -1163,6 +1163,7 @@ {$IFDEF VCL_2006_OR_ABOVE} {$DEFINE USE_INLINE} {$DEFINE HAS_2PARAM_FileAge} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF WINDOWS} // System.RegisterExpectedMemoryLeak() is only available on Windows at this time {$DEFINE HAS_System_RegisterExpectedMemoryLeak} @@ -1473,6 +1474,7 @@ {$ENDIF} {$DEFINE HAS_UNIT_ctypes} {$DEFINE HAS_sLineBreak} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF FPC_HAS_UNICODESTRING} {$DEFINE HAS_UnicodeString} {$ELSE} diff --git a/Lib/System/IdCompilerDefines.inc b/Lib/System/IdCompilerDefines.inc index 8eb530d96..41682a202 100644 --- a/Lib/System/IdCompilerDefines.inc +++ b/Lib/System/IdCompilerDefines.inc @@ -1163,6 +1163,7 @@ {$IFDEF VCL_2006_OR_ABOVE} {$DEFINE USE_INLINE} {$DEFINE HAS_2PARAM_FileAge} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF WINDOWS} // System.RegisterExpectedMemoryLeak() is only available on Windows at this time {$DEFINE HAS_System_RegisterExpectedMemoryLeak} @@ -1473,6 +1474,7 @@ {$ENDIF} {$DEFINE HAS_UNIT_ctypes} {$DEFINE HAS_sLineBreak} + {$DEFINE HAS_TStrings_LineBreak} // TODO: when was LineBreak introduced? {$IFDEF FPC_HAS_UNICODESTRING} {$DEFINE HAS_UnicodeString} {$ELSE} diff --git a/Lib/System/IdVers.inc b/Lib/System/IdVers.inc index 353692b0e..b8e47ebf2 100644 --- a/Lib/System/IdVers.inc +++ b/Lib/System/IdVers.inc @@ -4,15 +4,15 @@ {$NODEFINE gsIdVersionMinor} gsIdVersionRelease = 3; {$NODEFINE gsIdVersionRelease} - gsIdVersionBuild = 0; + gsIdVersionBuild = 1; {$NODEFINE gsIdVersionBuild} (*$HPPEMIT '#define gsIdVersionMajor 10'*) (*$HPPEMIT '#define gsIdVersionMinor 6'*) (*$HPPEMIT '#define gsIdVersionRelease 3'*) - (*$HPPEMIT '#define gsIdVersionBuild 0'*) + (*$HPPEMIT '#define gsIdVersionBuild 1'*) (*$HPPEMIT ''*) - gsIdVersion = '10.6.3.0'; {do not localize} + gsIdVersion = '10.6.3.1'; {do not localize} gsIdProductName = 'Indy'; {do not localize} gsIdProductVersion = '10.6.3'; {do not localize} diff --git a/Lib/System/IndySystem.rc b/Lib/System/IndySystem.rc index f1e8869da..e42496825 100644 --- a/Lib/System/IndySystem.rc +++ b/Lib/System/IndySystem.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem.bpl\0" diff --git a/Lib/System/IndySystem100.rc b/Lib/System/IndySystem100.rc index a1d232204..9e76974ac 100644 --- a/Lib/System/IndySystem100.rc +++ b/Lib/System/IndySystem100.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem100\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem100.bpl\0" diff --git a/Lib/System/IndySystem100.res b/Lib/System/IndySystem100.res index 0b87f0930..019a43863 100644 Binary files a/Lib/System/IndySystem100.res and b/Lib/System/IndySystem100.res differ diff --git a/Lib/System/IndySystem110.RES b/Lib/System/IndySystem110.RES index 3aee50c6c..0a62b0a97 100644 Binary files a/Lib/System/IndySystem110.RES and b/Lib/System/IndySystem110.RES differ diff --git a/Lib/System/IndySystem110.rc b/Lib/System/IndySystem110.rc index 24a84bd53..71d01b27a 100644 --- a/Lib/System/IndySystem110.rc +++ b/Lib/System/IndySystem110.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem110\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem110.bpl\0" diff --git a/Lib/System/IndySystem120.rc b/Lib/System/IndySystem120.rc index 70f504144..bf2c68d04 100644 --- a/Lib/System/IndySystem120.rc +++ b/Lib/System/IndySystem120.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem120\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem120.bpl\0" diff --git a/Lib/System/IndySystem120.res b/Lib/System/IndySystem120.res index 9c64ac87c..fbe9ce69d 100644 Binary files a/Lib/System/IndySystem120.res and b/Lib/System/IndySystem120.res differ diff --git a/Lib/System/IndySystem130.rc b/Lib/System/IndySystem130.rc index 258fce9c1..7210cfdae 100644 --- a/Lib/System/IndySystem130.rc +++ b/Lib/System/IndySystem130.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem130\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem130.bpl\0" diff --git a/Lib/System/IndySystem130.res b/Lib/System/IndySystem130.res index c13344ac8..71c3e4d92 100644 Binary files a/Lib/System/IndySystem130.res and b/Lib/System/IndySystem130.res differ diff --git a/Lib/System/IndySystem140.RES b/Lib/System/IndySystem140.RES index 950500bbc..76baab61a 100644 Binary files a/Lib/System/IndySystem140.RES and b/Lib/System/IndySystem140.RES differ diff --git a/Lib/System/IndySystem140.rc b/Lib/System/IndySystem140.rc index 6791f3bb9..f5618313c 100644 --- a/Lib/System/IndySystem140.rc +++ b/Lib/System/IndySystem140.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem140\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem140.bpl\0" diff --git a/Lib/System/IndySystem150.RES b/Lib/System/IndySystem150.RES index ab17fd496..95a060839 100644 Binary files a/Lib/System/IndySystem150.RES and b/Lib/System/IndySystem150.RES differ diff --git a/Lib/System/IndySystem150.rc b/Lib/System/IndySystem150.rc index 547419cab..3b6e491d1 100644 --- a/Lib/System/IndySystem150.rc +++ b/Lib/System/IndySystem150.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem150\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem150.bpl\0" diff --git a/Lib/System/IndySystem160.rc b/Lib/System/IndySystem160.rc index fbbefc375..e54e78529 100644 --- a/Lib/System/IndySystem160.rc +++ b/Lib/System/IndySystem160.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem160\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem160.bpl\0" diff --git a/Lib/System/IndySystem160.res b/Lib/System/IndySystem160.res index 8793dc7bd..0be61c1c0 100644 Binary files a/Lib/System/IndySystem160.res and b/Lib/System/IndySystem160.res differ diff --git a/Lib/System/IndySystem170.rc b/Lib/System/IndySystem170.rc index 2089f2517..24972560c 100644 --- a/Lib/System/IndySystem170.rc +++ b/Lib/System/IndySystem170.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem170\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem170.bpl\0" diff --git a/Lib/System/IndySystem170.res b/Lib/System/IndySystem170.res index b23ba7293..53168b9bf 100644 Binary files a/Lib/System/IndySystem170.res and b/Lib/System/IndySystem170.res differ diff --git a/Lib/System/IndySystem180.rc b/Lib/System/IndySystem180.rc index fcfe101f7..cf77cd46d 100644 --- a/Lib/System/IndySystem180.rc +++ b/Lib/System/IndySystem180.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem180\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem180.bpl\0" diff --git a/Lib/System/IndySystem180.res b/Lib/System/IndySystem180.res index f88a65ea7..3c2c2e0f6 100644 Binary files a/Lib/System/IndySystem180.res and b/Lib/System/IndySystem180.res differ diff --git a/Lib/System/IndySystem190.rc b/Lib/System/IndySystem190.rc index 72b8711ff..52a3a0f7c 100644 --- a/Lib/System/IndySystem190.rc +++ b/Lib/System/IndySystem190.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem190\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem190.bpl\0" diff --git a/Lib/System/IndySystem190.res b/Lib/System/IndySystem190.res index a8aa2a23a..fbe741aab 100644 Binary files a/Lib/System/IndySystem190.res and b/Lib/System/IndySystem190.res differ diff --git a/Lib/System/IndySystem200.rc b/Lib/System/IndySystem200.rc index ab15c8176..b3d1e3bb4 100644 --- a/Lib/System/IndySystem200.rc +++ b/Lib/System/IndySystem200.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem200\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem200.bpl\0" diff --git a/Lib/System/IndySystem200.res b/Lib/System/IndySystem200.res index 535510f1d..3cccc1eb4 100644 Binary files a/Lib/System/IndySystem200.res and b/Lib/System/IndySystem200.res differ diff --git a/Lib/System/IndySystem210.rc b/Lib/System/IndySystem210.rc index 58d3092d6..edc53a610 100644 --- a/Lib/System/IndySystem210.rc +++ b/Lib/System/IndySystem210.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem210\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem210.bpl\0" diff --git a/Lib/System/IndySystem210.res b/Lib/System/IndySystem210.res index d1c109c44..2be02e39a 100644 Binary files a/Lib/System/IndySystem210.res and b/Lib/System/IndySystem210.res differ diff --git a/Lib/System/IndySystem220.rc b/Lib/System/IndySystem220.rc index cdf7f5abf..edbc2e5fc 100644 --- a/Lib/System/IndySystem220.rc +++ b/Lib/System/IndySystem220.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem220\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem220.bpl\0" diff --git a/Lib/System/IndySystem220.res b/Lib/System/IndySystem220.res index 6fc5e7cd6..c0905b9fd 100644 Binary files a/Lib/System/IndySystem220.res and b/Lib/System/IndySystem220.res differ diff --git a/Lib/System/IndySystem230.rc b/Lib/System/IndySystem230.rc index cde081fe3..9444cc00e 100644 --- a/Lib/System/IndySystem230.rc +++ b/Lib/System/IndySystem230.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem230\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem230.bpl\0" diff --git a/Lib/System/IndySystem230.res b/Lib/System/IndySystem230.res index f53ea0956..1bbca0eed 100644 Binary files a/Lib/System/IndySystem230.res and b/Lib/System/IndySystem230.res differ diff --git a/Lib/System/IndySystem240.rc b/Lib/System/IndySystem240.rc index 001f814bd..31341174d 100644 --- a/Lib/System/IndySystem240.rc +++ b/Lib/System/IndySystem240.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem240\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem240.bpl\0" diff --git a/Lib/System/IndySystem240.res b/Lib/System/IndySystem240.res index 786950e53..35a0470a0 100644 Binary files a/Lib/System/IndySystem240.res and b/Lib/System/IndySystem240.res differ diff --git a/Lib/System/IndySystem250.rc b/Lib/System/IndySystem250.rc index 2424535c7..7a93d5d12 100644 --- a/Lib/System/IndySystem250.rc +++ b/Lib/System/IndySystem250.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem250\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem250.bpl\0" diff --git a/Lib/System/IndySystem250.res b/Lib/System/IndySystem250.res index e460ae3d6..2e880cb39 100644 Binary files a/Lib/System/IndySystem250.res and b/Lib/System/IndySystem250.res differ diff --git a/Lib/System/IndySystem260.rc b/Lib/System/IndySystem260.rc index 7ca38ad84..1e113618d 100644 --- a/Lib/System/IndySystem260.rc +++ b/Lib/System/IndySystem260.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem260\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem260.bpl\0" diff --git a/Lib/System/IndySystem270.rc b/Lib/System/IndySystem270.rc index 7b06d0ac4..134626dd0 100644 --- a/Lib/System/IndySystem270.rc +++ b/Lib/System/IndySystem270.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem270\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem270.bpl\0" diff --git a/Lib/System/IndySystem280.rc b/Lib/System/IndySystem280.rc index b0bc78e4a..08083c74e 100644 --- a/Lib/System/IndySystem280.rc +++ b/Lib/System/IndySystem280.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem280\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem280.bpl\0" diff --git a/Lib/System/IndySystem290.rc b/Lib/System/IndySystem290.rc index d971be9f8..8b8cc34cf 100644 --- a/Lib/System/IndySystem290.rc +++ b/Lib/System/IndySystem290.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem290\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem290.bpl\0" diff --git a/Lib/System/IndySystem290.res b/Lib/System/IndySystem290.res index da606b6bb..0afac4256 100644 Binary files a/Lib/System/IndySystem290.res and b/Lib/System/IndySystem290.res differ diff --git a/Lib/System/IndySystem40.rc b/Lib/System/IndySystem40.rc index 43ec299c0..afdc89e22 100644 --- a/Lib/System/IndySystem40.rc +++ b/Lib/System/IndySystem40.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem40\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem40.bpl\0" diff --git a/Lib/System/IndySystem40.res b/Lib/System/IndySystem40.res index 992ef1922..d2b157c9c 100644 Binary files a/Lib/System/IndySystem40.res and b/Lib/System/IndySystem40.res differ diff --git a/Lib/System/IndySystem50.rc b/Lib/System/IndySystem50.rc index b5c3b59ed..c70f0a219 100644 --- a/Lib/System/IndySystem50.rc +++ b/Lib/System/IndySystem50.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem50\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem50.bpl\0" diff --git a/Lib/System/IndySystem50.res b/Lib/System/IndySystem50.res index 94dd3c282..97c013cc6 100644 Binary files a/Lib/System/IndySystem50.res and b/Lib/System/IndySystem50.res differ diff --git a/Lib/System/IndySystem60.rc b/Lib/System/IndySystem60.rc index 762725630..5cdf94ad4 100644 --- a/Lib/System/IndySystem60.rc +++ b/Lib/System/IndySystem60.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem60\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem60.bpl\0" diff --git a/Lib/System/IndySystem60.res b/Lib/System/IndySystem60.res index 3ec3440c2..b3d06c5e0 100644 Binary files a/Lib/System/IndySystem60.res and b/Lib/System/IndySystem60.res differ diff --git a/Lib/System/IndySystem70.rc b/Lib/System/IndySystem70.rc index 5037dce58..60138f497 100644 --- a/Lib/System/IndySystem70.rc +++ b/Lib/System/IndySystem70.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem70\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem70.bpl\0" diff --git a/Lib/System/IndySystem70.res b/Lib/System/IndySystem70.res index ff0326a6f..c63d603ea 100644 Binary files a/Lib/System/IndySystem70.res and b/Lib/System/IndySystem70.res differ diff --git a/Lib/System/IndySystem90.rc b/Lib/System/IndySystem90.rc index a100a8e3d..627a8bbd5 100644 --- a/Lib/System/IndySystem90.rc +++ b/Lib/System/IndySystem90.rc @@ -1,6 +1,6 @@ 1 VERSIONINFO -FILEVERSION 10,6,3,0 -PRODUCTVERSION 10,6,3,0 +FILEVERSION 10,6,3,1 +PRODUCTVERSION 10,6,3,1 FILEFLAGSMASK 0x3FL FILEFLAGS 0x00L FILEOS 0x40004L @@ -13,7 +13,7 @@ FILESUBTYPE 0x0L { VALUE "CompanyName", "Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "FileDescription", "Internet Direct (Indy) 10.6.3 - System Run-Time Package\0" - VALUE "FileVersion", "10.6.3.0\0" + VALUE "FileVersion", "10.6.3.1\0" VALUE "InternalName", "IndySystem90\0" VALUE "LegalCopyright", "Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew\0" VALUE "OriginalFilename", "IndySystem90.bpl\0" diff --git a/Lib/System/IndySystem90.res b/Lib/System/IndySystem90.res index 79728ceb6..acc0f2a62 100644 Binary files a/Lib/System/IndySystem90.res and b/Lib/System/IndySystem90.res differ