mirror of https://gitlab.com/basile.b/dexed.git
fix #74 - ddemangle listed as required tool but not used anymore
This commit is contained in:
parent
a318d854ab
commit
e7f44fc129
|
@ -7,6 +7,7 @@ See [LDC announcement](https://forum.dlang.org/post/ssvxmrdpklhsrqlgrzas@forum.d
|
||||||
|
|
||||||
## Bugs fixed
|
## Bugs fixed
|
||||||
|
|
||||||
|
- About box, ddemangle was listed as a required tool but it is not anymore. (#74)
|
||||||
- Messages, when selected, the recently added _Search Results_ category could not be emptied.
|
- Messages, when selected, the recently added _Search Results_ category could not be emptied.
|
||||||
- Highlighter, `q"()"`, `q"[]"`, `q"<>"`, `q"{}>"` strings highlighting was broken.
|
- Highlighter, `q"()"`, `q"[]"`, `q"<>"`, `q"{}>"` strings highlighting was broken.
|
||||||
- HTML export, the dialog proposed to open a file, not to save one.
|
- HTML export, the dialog proposed to open a file, not to save one.
|
||||||
|
|
|
@ -247,10 +247,6 @@ begin
|
||||||
'optional, the LDC D compiler, setup in "Options - Compilers paths"');
|
'optional, the LDC D compiler, setup in "Options - Compilers paths"');
|
||||||
itm.Parent := boxTools;
|
itm.Parent := boxTools;
|
||||||
itm.ReAlign;
|
itm.ReAlign;
|
||||||
itm := TToolInfo.Construct(self, tikFindable, 'ddemangle',
|
|
||||||
'optional, allows to demangle the symbols in the message widget');
|
|
||||||
itm.Parent := boxTools;
|
|
||||||
itm.ReAlign;
|
|
||||||
itm := TToolInfo.Construct(self, tikRunning, 'dcd-server',
|
itm := TToolInfo.Construct(self, tikRunning, 'dcd-server',
|
||||||
'mandatory, provides IDE-grade features such as the completion');
|
'mandatory, provides IDE-grade features such as the completion');
|
||||||
itm.Parent := boxTools;
|
itm.Parent := boxTools;
|
||||||
|
|
Loading…
Reference in New Issue