summaryrefslogtreecommitdiff
path: root/notepadpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2021-06-07 14:31:00 -0400
committerB. Stack <bgstack15@gmail.com>2021-06-07 14:31:00 -0400
commit42076672541b3b2d2106e6c9e259be38139cdbc6 (patch)
tree01fabfdf5cfabd67d64a8c754db834bb72ee5791 /notepadpp
parentMerge branch 'scite-bump' into 'master' (diff)
downloadstackrpms-42076672541b3b2d2106e6c9e259be38139cdbc6.tar.gz
stackrpms-42076672541b3b2d2106e6c9e259be38139cdbc6.tar.bz2
stackrpms-42076672541b3b2d2106e6c9e259be38139cdbc6.zip
npp 8.0 rc1
Diffstat (limited to 'notepadpp')
-rwxr-xr-xnotepadpp/build-orig-tarball.sh7
-rw-r--r--notepadpp/debian/changelog64
2 files changed, 69 insertions, 2 deletions
diff --git a/notepadpp/build-orig-tarball.sh b/notepadpp/build-orig-tarball.sh
index 275a1aa..190196e 100755
--- a/notepadpp/build-orig-tarball.sh
+++ b/notepadpp/build-orig-tarball.sh
@@ -39,13 +39,16 @@ which jq 1>/dev/null 2>&1 || { echo "Please install jq! Aborted." ; exit 1; }
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}"
+
## 2. dl npp main version, 32 and 64
# magic awk written 2020-10-05 to handle naming convention change from 7.8.9.bin to 7.9.portable.
lv_compare="$( echo "${latest_version}" | awk -v 'maxsections=3' -F'.' 'NF < maxsections {printf("%s",$0);for(i=NF;i<maxsections;i++)printf("%s",".0");printf("\n")} NF >= maxsections {print}' | awk -v 'maxdigits=2' -F'.' '{print $1*10^(maxdigits*2)+$2*10^(maxdigits)+$3}' )"
export fn_section=".portable"
+short_version="${latest_version}"
test ${lv_compare} -lt 70900 && export fn_section=".bin"
-get "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v${latest_version}/npp.${latest_version}${fn_section}.7z"
-get "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v${latest_version}/npp.${latest_version}${fn_section}.x64.7z"
+test ${lv_compare} -ge 80000 && export short_version="8"
+get "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v${short_version}/npp.${latest_version}${fn_section}.7z"
+get "https://github.com/notepad-plus-plus/notepad-plus-plus/releases/download/v${short_version}/npp.${latest_version}${fn_section}.x64.7z"
## 3. dl 32 plugins
# fetch master list of plugins
diff --git a/notepadpp/debian/changelog b/notepadpp/debian/changelog
index 3e59071..4150ec0 100644
--- a/notepadpp/debian/changelog
+++ b/notepadpp/debian/changelog
@@ -1,3 +1,67 @@
+notepadpp (8.0-1+devuan) obs; urgency=medium
+
+ * Add Dark Mode. (Implement #9183 & #7692)
+ * ARM64 build is available. (Implement #5158)
+ * One button to build them all - build Notepad++ with Scintilla static
+ lib and Boost RegExpr headers. (Implement #9594)
+ * Add new Fluent UI icons for toolbar. (Implement #9742)
+ * Add new feature "Distraction Free Mode" (Menu "View->Distraction Free
+ Mode").
+ * Add new API NPPM_ADDTOOLBARICON_FORDARKMODE for dark mode (Implement
+ #9928).
+ * Add 1 click action (SHIFT-click) on close button to close all tabs in
+ dockable panel (Implement #8922.
+ * Add ability of changing select text foreground color (optional). (Fix
+ #3397 & #1314)
+ * Allow Replace to stop after replacement (optional). (Implement #4437)
+ * Fix append extension feature not working in save dialog. (Fix #9939)
+ * Add ability to reverse line order. (Implement #9837)
+ * Add ability to style only current instance of text. (Fix #9263)
+ * Fix duplicated entries in Auto-Completion pop-up window. (Fix #9711)
+ * Fix Python Function List not showing functions in some circumstance.
+ (Fix #9844)
+ * Enhance Folder as Workspace performance while adding/removing files
+ in bulk. (Fix #9203)
+ * Add Ada, Fortran, Fortran77 & Haskell in function lists. (Fix #9698)
+ * Improve performance of "Open all" command in Search results. (Fix
+ #9819)
+ * Add "Copy Pathnames" command to Search results context menu. (Fix
+ #9821)
+ * Catch regex search exceptions and show exception message. (Fix #9565)
+ * Add MarkAll Preference settings for case and word. (Fix #9751 & #5148)
+ * Fix regression: Handle "Default Directory" setting correctly in
+ Open/Save File Dialog. (Fix #9767)
+ * Fix a special character in UTF16 file crash issue (regression). (Fix
+ #9797)
+ * Add "Append extension" checkbox to Save As dialog. (Implement #9515)
+ * Fix Copy command in Search result is available as there's no
+ selection. (Fix #9757)
+ * Add padding ability in the edit zone. (Fix #2323)
+ * Make new tab name translatable. (Fix #2837)
+ * Improve character case handling in RegEx. (Fix #9636)
+ * Fix dragged out UDL file is not applied to UDL in the new instance.
+ (Fix #3451)
+ * Add command line parameter for adding specified string to app title
+ bar. (Implement #9539)
+ * Fix Auto-Completion ignoring case issue. (Fix #3997, #4833 & #4998)
+ * Fix "Match Whole Word" option being enabled in RegEx Search. (Fix
+ #9766)
+ * Fix sort with column key selection that appears after tab characters.
+ (Fix #9682)
+ * Fix "Reload Workspace" menu command not working issue. (Fix #9350)
+ * Fix view file in Edge browser failure issue if name contains spaces.
+ (Fix #9313)
+ * Add ability to avoid accumulating multiple search results. (Fix #8777)
+ * Fix UTF-16 decoding/encoding for code points above U+FFFF. (Fix
+ #9597, #3747 & #5754)
+ * Fix "Save As" command removing original path from recent files
+ history issue. (Fix #9673)
+ * Fix function List button tool tips mixed up issue. (Fix #9804)
+ * Remove Microsoft Bing from Notepad++ for Search on Internet command,
+ due to its poor reliability. (Ref)
+
+ -- B. Stack <bgstack15@gmail.com> Mon, 07 Jun 2021 14:25:58 -0400
+
notepadpp (7.9.5-1+devuan) obs; urgency=medium
- Enhancements and bug-fixes:
bgstack15