mirror of https://gitlab.com/basile.b/dexed.git
rlz
This commit is contained in:
parent
9ca6deb4f8
commit
8dc896c68a
|
@ -1,3 +1,9 @@
|
||||||
|
# v3.9.21
|
||||||
|
|
||||||
|
## Bugs fixed
|
||||||
|
|
||||||
|
- Windows version did not compile anymore
|
||||||
|
|
||||||
# v3.9.20
|
# v3.9.20
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
12
README.md
12
README.md
|
@ -24,16 +24,16 @@ Dexed, the _D Extended EDitor_, is an IDE for the [D programming language](https
|
||||||
|
|
||||||
## Project information
|
## 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.
|
- :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).
|
- :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: [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.20/downloads/binaries/dexed.3.9.20.linux64.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.20/downloads/binaries/dexed-3.9.20-0.x86_64.rpm)
|
- :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.20/downloads/binaries/dexed-3.9.20.amd64.deb)
|
- :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 _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.
|
The _setup.zip_ archives contain a command line program that installs to predefined locations so that the software can be run without additional intervention.
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v3.9.20
|
v3.9.21
|
||||||
|
|
|
@ -3034,7 +3034,7 @@ begin
|
||||||
waitCommandProcessed();
|
waitCommandProcessed();
|
||||||
if not mnuEvalCompletion.Items.Count.equals(0) then
|
if not mnuEvalCompletion.Items.Count.equals(0) then
|
||||||
begin
|
begin
|
||||||
MousePos := Point(Edit1.Left, Edit1.Top + Edit1.Height);
|
MousePos := Classes.Point(Edit1.Left, Edit1.Top + Edit1.Height);
|
||||||
MousePos := Edit1.ClientToScreen(MousePos);
|
MousePos := Edit1.ClientToScreen(MousePos);
|
||||||
mnuEvalCompletion.PopUp(MousePos.X, MousePos.Y);
|
mnuEvalCompletion.PopUp(MousePos.X, MousePos.Y);
|
||||||
end;
|
end;
|
||||||
|
|
Loading…
Reference in New Issue