This commit is contained in:
Basile Burg 2020-04-25 04:27:54 +02:00
parent b65bb860e4
commit ae77400994
8 changed files with 26 additions and 24 deletions

View File

@ -1,12 +1,12 @@
# v3.9.0-dev
# v3.9.0
## Enhancements
- D highlighter: added suport for HEREDOC strings literal of type `q"()"` `q"[]"`, `q"<>"` and `q"{}"`. Support for HEREDOC strings literal based on a custom identifier wont be added as they might be removed as per DIP 1026.
- D highlighter: added suport for HEREDOC string literald of type `q"()"` `q"[]"`, `q"<>"` and `q"{}"`. Support for HEREDOC based on a custom delimiter wont be added as they might be removed as per DIP 1026.
- Docking: added a dialog to remind that docking is locked in certain scenarios. (#30)
- Editor: set the option to detect the indentation mode on by default, to prevent mixed indentation style.
- Editor: a fourth button in the diff dialog allows to reload but without preserving the undo history, which is better to navigate using _go to next changed area_ and _go to prev changed area_.
- Search Replace: the result of _FindAll_ when the string to seach is a regular expression are highlighted. (#14)
- Editor: the option to detect the indentation is activated by default, to prevent mixed indentation style.
- Editor: a fourth button in the diff dialog allows to reload but without preserving the undo history, which is better when using _go to next changed area_ and _go to prev changed area_ to navigate in the editor.
- Search Replace: the result of _FindAll_ when the string to search is not a trivial regular expression are also highlighted. (#14)
- TODO list: a new option, _disableIfMoreFilesThan_, allows to disable auto refreshing of the list could be slow when the current project is huge.
## Bugs fixed
@ -15,12 +15,12 @@
- DUB projects: dependencies specified with _path_ are recognized when their sources are in a sub folder taking as name the package name. (#29)
- DUB runnables: document specific messages were not cleared between two calls to "Run DUB single file package". (#27)
- Editor: case where brace auto close is triggered while in comment. (#31)
- Editor: prevent unexpected validation of properties in certain cases, such as `a.map` giving `a.mangleof` after `!`.
- Editor: prevent unexpected validation of properties in certain cases, such as `a.map` giving `a.mangleof!` after `!`.
## Other
- Toolchain: removed the background tool _dastworx_ and replaced it with a library called _libdexed-d_.
- Toolchain: ddemangle is not required anymore, demangling D names is now done in _libdexed-d_.
- Toolchain: removed the background tool _dastworx_ and replaced it with a statically linked shared library called _libdexed-d_.
- Toolchain: ddemangle is not required anymore, demangling of D names now happens in _libdexed-d_.
# v3.8.4

View File

@ -24,19 +24,19 @@ Dexed, the _D Extended EDitor_, is an IDE for the [D programming language](https
## Project information
- :bookmark: latest release: version 3.8.4, Thu 16 Apr 2020.
- :bookmark: latest release: version 3.9.0, Sat 25 Apr 2020.
- :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.8.4
## Download version 3.9.0
[Download](https://gitlab.com/basile.b/dexed/-/releases/v3.8.4) the zipped binaries or the zip that contains the setup program for you platform.
[Download](https://gitlab.com/basile.b/dexed/-/releases/v3.9.0) the zipped binaries or the zip that contains the setup program for you platform.
<!--
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.4/downloads/binaries/dexed.3.8.4.linux64.setup.zip)
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.4/downloads/binaries/dexed.3.8.4.linux64.zip)
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.4/downloads/binaries/dexed-3.8.4-0.x86_64.rpm)
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.8.4/downloads/binaries/dexed-3.8.4.amd64.deb)
- :package: [setup program for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.9.0/downloads/binaries/dexed.3.9.0.linux64.setup.zip)
- :package: [binaries for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.9.0/downloads/binaries/dexed.3.9.0.linux64.zip)
- :package: [rpm for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.9.0/downloads/binaries/dexed-3.9.0-0.x86_64.rpm)
- :package: [deb for Linux 64 bit](https://gitlab.com/basile.b/dexed/releases/v3.9.0/downloads/binaries/dexed-3.9.0.amd64.deb)
-->
The _zip_ archives allow to move freely the files.

@ -1 +0,0 @@
Subproject commit 146e9e0c31d86bd8fd6450f43713e04589378e93

View File

@ -42,6 +42,7 @@ echo "building dcd..."
if [ ! -d dcd ]; then
git clone https://github.com/dlang-community/dcd.git
cd dcd
git submodule update --init
else
cd dcd
git pull
@ -50,8 +51,7 @@ git fetch --tags
if [ ! -z "$dcd_ver" ]; then
git checkout $dcd_ver
fi
dub build --build=release --config=client --compiler=$DC
dub build --build=release --config=server --compiler=$DC
make ldc
echo "...done"
cd ..
@ -60,6 +60,7 @@ echo "building dscanner..."
if [ ! -d d-scanner ]; then
git clone https://github.com/dlang-community/d-scanner.git
cd d-scanner
git submodule update --init
else
cd d-scanner
git pull
@ -68,7 +69,7 @@ git fetch --tags
if [ ! -z "$dscanner_ver" ]; then
git checkout $dscanner_ver
fi
dub build --build=release --compiler=$DC
make ldc
echo "...done"
cd ..

View File

@ -34,12 +34,14 @@ fi
name_and_ver=dexed-$maj.$min.$pch-$lbl.$arch
buildroot=$HOME/rpmbuild/BUILDROOT/$name_and_ver
buildspec=$HOME/rpmbuild/SPECS
bindir=$buildroot/usr/bin
pixdir=$buildroot/usr/share/pixmaps
shcdir=$buildroot/usr/share/applications
libdir=$buildroot/usr/lib64
mkdir -p $buildroot
mkdir -p $buildspec
mkdir -p $bindir
mkdir -p $pixdir
mkdir -p $shcdir
@ -66,7 +68,7 @@ Version: $maj.$min.$pch
Release: $lbl
Summary: IDE for the D programming language
License: Boost
URL: www.github.com/Basile-z/dexed
URL: gitlab.com/basile.b/dexed
Requires: gtk2, glibc, cairo, libX11, vte
%description
@ -80,7 +82,7 @@ Dexed is an IDE for the DMD D compiler.
%changelog
* $dte Basile Burg b2.temp@gmx.com
- see https://github.com/Basile-z/dexed/releases/tag/$ver
- see https://gitlab.com/basile.b/dexed/-/blame/master/setup/rpm.sh
">$specname
rpmbuild -ba $specname --define "_rpmdir /$cp_trgt"

View File

@ -108,7 +108,7 @@ struct Formater
static immutable string exePath, datPath, shortCutPath;
version(linux) immutable string asSu;
static this()
shared static this()
{
version(Windows)
{

View File

@ -116,5 +116,5 @@ object CurrentProject: TNativeProject
'setup.d'
)
ConfigurationIndex = 3
version = '3.8.4'
version = '3.9.0'
end

View File

@ -1 +1 @@
v3.8.4
v3.9.0