mirror of https://gitlab.com/basile.b/dexed.git
rlz
This commit is contained in:
parent
2bf823e685
commit
8e2adaeb88
|
@ -1,10 +1,10 @@
|
||||||
# v3.9.19-dev
|
# v3.9.19
|
||||||
|
|
||||||
## Enhancements
|
## Enhancements
|
||||||
|
|
||||||
- Completion, changed defaults so that `.` does not validate but instead close, leaving typed text as-is.
|
- Completion, changed defaults so that `.` does not validate but instead close, leaving typed text as-is.
|
||||||
To apply the changes on on exisint installation, set editor option `closeCompletionCharsWithSpace` to `*+-/^=~><%.` and `closeCompletionChars` to `,;)}]!`.
|
To apply the changes on on exisint installation, set editor option `closeCompletionCharsWithSpace` to `*+-/^=~><%.` and `closeCompletionChars` to `,;)}]!`.
|
||||||
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
|
- Completion, while menu opened, <key>Backspace</key> had for effect to also delete next char.
|
||||||
This was an old workaround that has no reason to be maintained anymore.
|
This was an old workaround that has no reason to be maintained anymore.
|
||||||
- Editor status bar, added a context menu with casually useful actions related to the editor filename (open containing folder, copy file name, cd in terminal, etc.)
|
- Editor status bar, added a context menu with casually useful actions related to the editor filename (open containing folder, copy file name, cd in terminal, etc.)
|
||||||
|
|
||||||
|
|
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.18, Mon 16 May 2022.
|
- :bookmark: latest release: version 3.9.19, Tue 7 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.18
|
## Download version 3.9.19
|
||||||
|
|
||||||
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.18/downloads/binaries/dexed.3.9.18.linux64.setup.zip)
|
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.19/downloads/binaries/dexed.3.9.19.linux64.setup.zip)
|
||||||
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.18/downloads/binaries/dexed.3.9.18.linux64.zip)
|
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.19/downloads/binaries/dexed.3.9.19.linux64.zip)
|
||||||
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.18/downloads/binaries/dexed-3.9.18-0.x86_64.rpm)
|
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.19/downloads/binaries/dexed-3.9.19-0.x86_64.rpm)
|
||||||
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.18/downloads/binaries/dexed-3.9.18.amd64.deb)
|
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/-/releases/v3.9.19/downloads/binaries/dexed-3.9.19.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.
|
||||||
|
|
|
@ -937,7 +937,7 @@
|
||||||
</Other>
|
</Other>
|
||||||
</CompilerOptions>
|
</CompilerOptions>
|
||||||
<Debugging>
|
<Debugging>
|
||||||
<Exceptions Count="3">
|
<Exceptions Count="4">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Name Value="EAbort"/>
|
<Name Value="EAbort"/>
|
||||||
</Item1>
|
</Item1>
|
||||||
|
@ -947,6 +947,9 @@
|
||||||
<Item3>
|
<Item3>
|
||||||
<Name Value="EFOpenError"/>
|
<Name Value="EFOpenError"/>
|
||||||
</Item3>
|
</Item3>
|
||||||
|
<Item4>
|
||||||
|
<Name Value="EParserError"/>
|
||||||
|
</Item4>
|
||||||
</Exceptions>
|
</Exceptions>
|
||||||
</Debugging>
|
</Debugging>
|
||||||
</CONFIG>
|
</CONFIG>
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
v3.9.18
|
v3.9.19
|
||||||
|
|
Loading…
Reference in New Issue