summaryrefslogtreecommitdiff
path: root/notepadpp
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2023-03-08 11:14:36 -0500
committerB. Stack <bgstack15@gmail.com>2023-03-08 11:14:36 -0500
commit699bea8381f259375ec9942fa79b3d4867d6932b (patch)
tree805e7e49f495a739ed64ba5e3d89c8aff2e1dacd /notepadpp
parentMerge branch 'newmoon-bump' into 'master' (diff)
downloadstackrpms-699bea8381f259375ec9942fa79b3d4867d6932b.tar.gz
stackrpms-699bea8381f259375ec9942fa79b3d4867d6932b.tar.bz2
stackrpms-699bea8381f259375ec9942fa79b3d4867d6932b.zip
notepad++ 8.5
Diffstat (limited to 'notepadpp')
-rw-r--r--notepadpp/debian/changelog48
-rw-r--r--notepadpp/debian/control2
-rwxr-xr-xnotepadpp/deploy-to-obs.sh3
3 files changed, 52 insertions, 1 deletions
diff --git a/notepadpp/debian/changelog b/notepadpp/debian/changelog
index fc54b88..df6986a 100644
--- a/notepadpp/debian/changelog
+++ b/notepadpp/debian/changelog
@@ -1,3 +1,51 @@
+notepadpp (8.5-1+stackrpms) obs; urgency=medium
+
+ * Fix notepad replacement opening file name containing white space
+ regression. (Fix #13032)
+ * Fix regression about visual glitch of Find in Files progress window &
+ Document Switcher.(Fix #13185, #13053)
+ * Update to Scintilla 5.3.3 and Lexilla 5.2.2. (Implement #13082)
+ * Add new explorer context menu entry "Edit with Notepad++" for WINDOWS
+ 11. (Fix #10320, #10565, #4368, #8786, #10640, #10856, #10653, #7747,
+ #6169, #92)
+ * Add show non-printable characters command. (Fix #827, #4731, #8284)
+ * Apply tab colors to document list items, and add groups to document
+ list. (Fix #12155, #12689, #13026)
+ * Add middle mouse click ability to close doc in Document List. (Fix
+ #12949)
+ * Add Begin/End Select in Column Mode command. (Fix #12833, #12832)
+ * Add option to make auto-completion list brief. (Fix #12783)
+ * Remove duplicate items in function/word list of Auto-completion. (Fix
+ #13061)
+ * Fix missing items in word autocomplete. (Fix #13060)
+ * Fix autocomplete to sort case insensitive issue. (Fix #12495)
+ * Change behaviour: make Select and Find (Next/Previous) always in
+ normal search mode. (Fix #3229)
+ * Change behaviour: make volatile Find uses least-strict option
+ settings. (Fix #13145)
+ * Change behaviour: Don't populate in Find what if a stream selection
+ more than 1024 characters. (Fix #12603)
+ * Fix wrong value set in Preferences->Performance->"Define Large File
+ Size".(Fix #13280)
+ * Fix untitled document number jumping or repeated problem. (Fix #8677,
+ #11704, #13194)
+ * Fix dock-able panels not restoring for mono instances when Notepad++
+ is in the tray. (Fix #9454)
+ * Fix panels not restored from systemtray with "Edit with Notepad++" in
+ admin mode. (Fix #13041)
+ * Fix hit text in search results not being scrolled in the view issue.
+ (Fix #13129)
+ * Add new notification NPPN_EXTERNALLEXERBUFFER for lexer plugin with
+ buffer ID when a new lexer is applied to the buffer in question. (Fix
+ #12351)
+ * Fix Synch H/V Scrolling commands not sync with 2 views. (Fix #5250,
+ #13071)
+ * Add several GUI enhancement. (Fix #11695, #13176, #13187, #13162)
+ * Make several GUI items translatable. (Fix #13175, #8020, #8858,
+ #13088, #8927, #10876, #9343, #8004)
+
+ -- B. Stack <bgstack15@gmail.com> Wed, 08 Mar 2023 11:04:30 -0500
+
notepadpp (8.4.9-1+stackrpms) obs; urgency=medium
* Fix saving 4GB+ files file size cutting off issue. (Fix #12526)
diff --git a/notepadpp/debian/control b/notepadpp/debian/control
index 01b2734..6fe286f 100644
--- a/notepadpp/debian/control
+++ b/notepadpp/debian/control
@@ -1,7 +1,7 @@
Source: notepadpp
Section: editors
Priority: optional
-Maintainer: B Stack <bgstack15@gmail.com>
+Maintainer: B. Stack <bgstack15@gmail.com>
Build-Depends: debhelper-compat (= 12)
Standards-Version: 4.1.4
Homepage: https://notepad-plus-plus.org/
diff --git a/notepadpp/deploy-to-obs.sh b/notepadpp/deploy-to-obs.sh
index 5c9863f..25a2879 100755
--- a/notepadpp/deploy-to-obs.sh
+++ b/notepadpp/deploy-to-obs.sh
@@ -18,6 +18,9 @@ tf="$( find . -maxdepth 1 -name 'notepadpp*orig*z' -printf '%T@ %f\n' | sort -n
tar -zxf "${tf}"
cd "$( tar -zvtf "${tf}" | awk '/^d/{print $NF}' | head -n1 )"
cp -pr "${gitdir}/debian" .
+pwd
+ls -altr
+ls -altrd ../*notepadpp*
debuild -us -uc # depends on dpkg-dev=1.19.7 and not 1.20.5 which is still broken in Ceres as of 2020-11-04
test $? -eq 0 || { "debuild failed. Cannot continue. Aborted." ; exit 1 ; }
cd "${devdir}"
bgstack15