Skip to content

Commit

Permalink
included Delphi 10.4 support
Browse files Browse the repository at this point in the history
  • Loading branch information
digao-dalpiaz committed Oct 31, 2020
1 parent 57f2889 commit dd741bc
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
Binary file modified CompInstall.exe
Binary file not shown.
4 changes: 2 additions & 2 deletions CompInstall.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[General]
Name=Digao Dalpiaz - DzTalkApp component
Version=1.2
DelphiVersions=XE2;XE3;XE4;XE5;XE6;XE7;XE8;10;10.1;10.2;10.3
Version=1.3
DelphiVersions=XE2;XE3;XE4;XE5;XE6;XE7;XE8;10;10.1;10.2;10.3;10.4
Packages=DzTalkApp
AddLibrary=1

Expand Down
4 changes: 3 additions & 1 deletion DzTalkApp.pas
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ implementation

uses Vcl.Forms;

const STR_VERSION = '1.3';

procedure Register;
begin
RegisterComponents('Digao', [TDzTalkApp]);
Expand All @@ -118,7 +120,7 @@ constructor TDzTalkApp.Create(AOwner: TComponent);
begin
inherited;

FAbout := 'Digao Dalpiaz / Version 1.2';
FAbout := 'Digao Dalpiaz / Version '+STR_VERSION;

FActive := False;
end;
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Delphi non-visual component to communicate between applications

![Delphi Supported Versions](https://img.shields.io/badge/Delphi%20Supported%20Versions-XE2..10.3%20Rio-blue.svg)
![Delphi Supported Versions](https://img.shields.io/badge/Delphi%20Supported%20Versions-XE2..10.4-blue.svg)
![Platforms](https://img.shields.io/badge/Platforms-Win32%20and%20Win64-red.svg)
![Auto Install](https://img.shields.io/badge/-Auto%20Install%20App-orange.svg)

Expand All @@ -19,6 +19,10 @@

## What's New

- 10/31/2020 (Version 1.3)

- Included Delphi 10.4 auto-install support.

- 10/27/2020 (Version 1.2)

- Fixed previous Delphi versions (at least on XE2, XE3, XE4 and XE5) package tag. It was causing package compilation error.
Expand Down Expand Up @@ -55,7 +59,7 @@ Close Delphi IDE and run **CompInstall.exe** app to auto install component into
4. If you want to use Win64 platform, select this platform and Build again.
5. Add sub-path Win32\Release to the Library paths at Tools\Options using 32-bit option, and if you have compiled to 64 bit platform, add sub-path Win64\Release using 64-bit option.

Supports Delphi XE2..Delphi 10.3 Rio
Supports Delphi XE2..Delphi 10.4

## How to use

Expand Down

0 comments on commit dd741bc

Please sign in to comment.