From 146c5ce85bcd150ba829080592e4e5ea9a96eeef Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 5 Apr 2020 14:18:39 +0200 Subject: [PATCH] rlz --- CHANGELOG.md | 2 ++ README.md | 16 +++++++++------- setup/setup.dprj | 2 +- setup/version.txt | 2 +- src/u_tools.pas | 4 ++-- 5 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 938979df..d7aba84e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ # v3.8.1 +- dummy release + # v3.8.0 ## Enhancements diff --git a/README.md b/README.md index 3f313319..1bc0f1ef 100644 --- a/README.md +++ b/README.md @@ -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) + 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. diff --git a/setup/setup.dprj b/setup/setup.dprj index 0d107689..7eae0714 100644 --- a/setup/setup.dprj +++ b/setup/setup.dprj @@ -116,5 +116,5 @@ object CurrentProject: TNativeProject 'setup.d' ) ConfigurationIndex = 3 - version = '3.8.0' + version = '3.8.2' end diff --git a/setup/version.txt b/setup/version.txt index 32f8572e..a835adcf 100644 --- a/setup/version.txt +++ b/setup/version.txt @@ -1 +1 @@ -v3.8.1 +v3.8.2 diff --git a/src/u_tools.pas b/src/u_tools.pas index 7edf9264..618f8a56 100644 --- a/src/u_tools.pas +++ b/src/u_tools.pas @@ -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('', [ID]); fParameters := TStringList.create; - fBackColor := clBackground; + fBackColor := clDefault; end; destructor TToolItem.destroy;