From 8dc896c68a5815f69179a59332387395a0889089 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sun, 19 Jun 2022 23:49:43 +0200 Subject: [PATCH] rlz --- CHANGELOG.md | 6 ++++++ README.md | 12 ++++++------ setup/version.txt | 2 +- src/u_gdb.pas | 2 +- 4 files changed, 14 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cee585c8..3f535f66 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v3.9.21 + +## Bugs fixed + +- Windows version did not compile anymore + # v3.9.20 ## Enhancements diff --git a/README.md b/README.md index 8e15b459..ea738865 100644 --- a/README.md +++ b/README.md @@ -24,16 +24,16 @@ Dexed, the _D Extended EDitor_, is an IDE for the [D programming language](https ## Project information -- :bookmark: latest release: version 3.9.20, Sun 19 June 2022. +- :bookmark: latest release: version 3.9.21, Sun 19 June 2022. - :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.9.20 +## Download version 3.9.21 -- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.20/downloads/binaries/dexed.3.9.20.linux64.setup.zip) -- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.20/downloads/binaries/dexed.3.9.20.linux64.zip) -- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.20/downloads/binaries/dexed-3.9.20-0.x86_64.rpm) -- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.20/downloads/binaries/dexed-3.9.20.amd64.deb) +- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.21/downloads/binaries/dexed.3.9.21.linux64.setup.zip) +- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.21/downloads/binaries/dexed.3.9.21.linux64.zip) +- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.21/downloads/binaries/dexed-3.9.21-0.x86_64.rpm) +- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.21/downloads/binaries/dexed-3.9.21.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/version.txt b/setup/version.txt index 181aa960..098baa04 100644 --- a/setup/version.txt +++ b/setup/version.txt @@ -1 +1 @@ -v3.9.20 +v3.9.21 diff --git a/src/u_gdb.pas b/src/u_gdb.pas index 04b3adab..139bba61 100644 --- a/src/u_gdb.pas +++ b/src/u_gdb.pas @@ -3034,7 +3034,7 @@ begin waitCommandProcessed(); if not mnuEvalCompletion.Items.Count.equals(0) then begin - MousePos := Point(Edit1.Left, Edit1.Top + Edit1.Height); + MousePos := Classes.Point(Edit1.Left, Edit1.Top + Edit1.Height); MousePos := Edit1.ClientToScreen(MousePos); mnuEvalCompletion.PopUp(MousePos.X, MousePos.Y); end;