From ae774009947864c706ac3845b21a96500c09da7c Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 25 Apr 2020 04:27:54 +0200 Subject: [PATCH] rlz --- CHANGELOG.md | 16 ++++++++-------- README.md | 14 +++++++------- etc/pegged | 1 - setup/build-release.sh | 7 ++++--- setup/rpm.sh | 6 ++++-- setup/setup.d | 2 +- setup/setup.dprj | 2 +- setup/version.txt | 2 +- 8 files changed, 26 insertions(+), 24 deletions(-) delete mode 160000 etc/pegged diff --git a/CHANGELOG.md b/CHANGELOG.md index cddee3c9..d08b6b2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 9f9cec32..d82233f3 100644 --- a/README.md +++ b/README.md @@ -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. The _zip_ archives allow to move freely the files. diff --git a/etc/pegged b/etc/pegged deleted file mode 160000 index 146e9e0c..00000000 --- a/etc/pegged +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 146e9e0c31d86bd8fd6450f43713e04589378e93 diff --git a/setup/build-release.sh b/setup/build-release.sh index 88d97d93..59be735b 100644 --- a/setup/build-release.sh +++ b/setup/build-release.sh @@ -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 .. diff --git a/setup/rpm.sh b/setup/rpm.sh index da0cdb48..0d73bd7c 100644 --- a/setup/rpm.sh +++ b/setup/rpm.sh @@ -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" diff --git a/setup/setup.d b/setup/setup.d index 89f6d21b..a52b1879 100644 --- a/setup/setup.d +++ b/setup/setup.d @@ -108,7 +108,7 @@ struct Formater static immutable string exePath, datPath, shortCutPath; version(linux) immutable string asSu; -static this() +shared static this() { version(Windows) { diff --git a/setup/setup.dprj b/setup/setup.dprj index e22dd21b..80f664d2 100644 --- a/setup/setup.dprj +++ b/setup/setup.dprj @@ -116,5 +116,5 @@ object CurrentProject: TNativeProject 'setup.d' ) ConfigurationIndex = 3 - version = '3.8.4' + version = '3.9.0' end diff --git a/setup/version.txt b/setup/version.txt index 5b3a517e..5f22788f 100644 --- a/setup/version.txt +++ b/setup/version.txt @@ -1 +1 @@ -v3.8.4 +v3.9.0