This commit is contained in:
Basile Burg 2022-06-19 23:49:43 +02:00
parent 9ca6deb4f8
commit 8dc896c68a
4 changed files with 14 additions and 8 deletions

View File

@ -1,3 +1,9 @@
# v3.9.21
## Bugs fixed
- Windows version did not compile anymore
# v3.9.20
## Enhancements

View File

@ -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.

View File

@ -1 +1 @@
v3.9.20
v3.9.21

View File

@ -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;