summaryrefslogtreecommitdiff
path: root/notepadpp
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-01-27 09:12:37 -0500
committerB Stack <bgstack15@gmail.com>2020-01-27 09:22:29 -0500
commit9d4a547569e117dd0aaaf3a547965374c30eaf1d (patch)
tree1310842f53f0f835f76fb3246621a47ca9c173f0 /notepadpp
parentveracrypt 1.24-Update4 dpkg (diff)
downloadstackrpms-9d4a547569e117dd0aaaf3a547965374c30eaf1d.tar.gz
stackrpms-9d4a547569e117dd0aaaf3a547965374c30eaf1d.tar.bz2
stackrpms-9d4a547569e117dd0aaaf3a547965374c30eaf1d.zip
notepadpp 7.8.3
Diffstat (limited to 'notepadpp')
-rwxr-xr-xnotepadpp/build-orig-tarball.sh3
-rw-r--r--notepadpp/debian/changelog20
2 files changed, 23 insertions, 0 deletions
diff --git a/notepadpp/build-orig-tarball.sh b/notepadpp/build-orig-tarball.sh
index f5210f1..80b2260 100755
--- a/notepadpp/build-orig-tarball.sh
+++ b/notepadpp/build-orig-tarball.sh
@@ -32,6 +32,9 @@ to_filename() {
### Flow
+# check dependencies
+which jq 1>/dev/null 2>&1 || { echo "Please install jq! Aborted." ; exit 1; }
+
## 1. learn latest version
latest_version="$( curl -s "https://notepad-plus-plus.org/downloads/" | grep -oiE "Current Version [0-9\.]+" | grep -oE "[0-9\.a-zA-Z]+$" )"
ferror "USING VERSION ${latest_version}"
diff --git a/notepadpp/debian/changelog b/notepadpp/debian/changelog
index 5f7887e..858b180 100644
--- a/notepadpp/debian/changelog
+++ b/notepadpp/debian/changelog
@@ -1,3 +1,23 @@
+notepadpp (7.8.3-1+devuan) obs; urgency=low
+
+ - Enhancements and bug-fixes
+ * Add the "Expand All", "Fold All" and "Select/Show current editing file" capacity into Folder as Workspace.
+ * Fix restoring line position issue while document is wrapped.
+ * Improve Json syntax highlighting.
+ * Make filling find field of Find dialog with selected word(s) optional.
+ * Make doSaveOrNot dialog simpler when there's a single file to save.
+ * Fix auto-insert {[""]} imbrication not working issue.
+ * Make cmd cli (for "Open Containing Folder in cmd") customizable.
+ * Prevent from setting Updater's Proxy as Notepad++ is not in Admin mode.
+ * Disable file association settings when Notepad++'s no admin right.
+ * Fix incremental search bar "highlight all" option not conserved bug.
+ * Enhance SQL syntax highlighting (add 2 more keyword lists).
+ * Fix too small buffer issue during add text macro playback.
+ * Fix "Close All Unchanged" not working issue for sub-view.
+ * Eliminate garbage displaying in Find-result fold margin.
+
+ -- B Stack <bgstack15@gmail.com> Mon, 27 Jan 2019 09:06:43 -0500
+
notepadpp (7.8.2-1+devuan) obs; urgency=low
- Initial release for Devuan
bgstack15