This commit is contained in:
Basile Burg 2020-04-05 14:18:39 +02:00
parent 5116b50705
commit 146c5ce85b
5 changed files with 15 additions and 11 deletions

View File

@ -17,6 +17,8 @@
# v3.8.1
- dummy release
# v3.8.0
## Enhancements

View File

@ -24,18 +24,20 @@ Dexed, the _D Extended EDitor_, is an IDE for the [D programming language](https
## Project information
- :bookmark: latest release: version 3.8.1, Wed 18 Mar 2020.
- :bookmark: latest release: version 3.8.2, Sun 5 Apr 2020.
- :scroll: licensed under the terms of the Boost software license.
- :dollar: Development can be supported with [Paypal donations](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=AQDJVC39PJF7J).
## Download version 3.8.1
## Download version 3.8.2
Download the zipped binaries or the zip that contains the setup program for you platform:
[Download](https://gitlab.com/basile.b/dexed/-/releases/v3.8.2) the zipped binaries or the zip that contains the setup program for you platform:
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.1/downloads/binaries/dexed.3.8.1.linux64.setup.zip)
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.1/downloads/binaries/dexed.3.8.1.linux64.zip)
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.1/downloads/binaries/dexed-3.8.1-0.x86_64.rpm)
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.1/downloads/binaries/dexed-3.8.1.amd64.deb)
<!--
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.2/downloads/binaries/dexed.3.8.2.linux64.setup.zip)
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.2/downloads/binaries/dexed.3.8.2.linux64.zip)
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.2/downloads/binaries/dexed-3.8.2-0.x86_64.rpm)
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.2/downloads/binaries/dexed-3.8.2.amd64.deb)
-->
The _zip_ archives allow to move freely the files.
The _setup.zip_ archives contain a command line program that installs to predefined locations so that the software can be run without additional intervention.

View File

@ -116,5 +116,5 @@ object CurrentProject: TNativeProject
'setup.d'
)
ConfigurationIndex = 3
version = '3.8.0'
version = '3.8.2'
end

View File

@ -1 +1 @@
v3.8.1
v3.8.2

View File

@ -70,7 +70,7 @@ type
property pipeInputKind: TPipeInputKind read fPipeInputKind write fPipeInputKind;
property askConfirmation: boolean read fAskConfirmation write fAskConfirmation;
property autoExecuteEvents: TAutoExecuteEvents read fAutoExecuteEvents write fAutoExecuteEvents;
property backgroundColor: TColor read fBackColor write fBackColor default clBackground;
property backgroundColor: TColor read fBackColor write fBackColor default clDefault;
public
constructor create(ACollection: TCollection); override;
destructor destroy; override;
@ -160,7 +160,7 @@ begin
fToolItems := TToolItems(ACollection);
fToolAlias := format('<tool %d>', [ID]);
fParameters := TStringList.create;
fBackColor := clBackground;
fBackColor := clDefault;
end;
destructor TToolItem.destroy;