summaryrefslogtreecommitdiff
path: root/notepadpp
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2020-12-04 09:14:00 -0500
committerB Stack <bgstack15@gmail.com>2020-12-04 09:14:00 -0500
commitd18aa5097e94e7998fcbd6f29cad10eca64f01a0 (patch)
tree3ac2dbe637b546f72d06d2d07b03346d12e8f6a6 /notepadpp
parentMerge branch 'freefilesync-bump' into 'master' (diff)
downloadstackrpms-d18aa5097e94e7998fcbd6f29cad10eca64f01a0.tar.gz
stackrpms-d18aa5097e94e7998fcbd6f29cad10eca64f01a0.tar.bz2
stackrpms-d18aa5097e94e7998fcbd6f29cad10eca64f01a0.zip
notepadpp 7.9.1
Diffstat (limited to 'notepadpp')
-rw-r--r--notepadpp/debian/changelog57
-rw-r--r--notepadpp/debian/compat1
-rw-r--r--notepadpp/debian/control6
3 files changed, 60 insertions, 4 deletions
diff --git a/notepadpp/debian/changelog b/notepadpp/debian/changelog
index b14c98f..bd33782 100644
--- a/notepadpp/debian/changelog
+++ b/notepadpp/debian/changelog
@@ -1,3 +1,60 @@
+notepadpp (7.9.1-1+devuan) obs; urgency=medium
+
+ - Packaging
+ * bin32 and bin64: Depend on -common that is same or higher version
+ - Enhancements and bug-fixes
+ * Fix NUL file-corruption bug after Windows shutdown brutally (Fix
+ [#6133](https://github.com/notepad-plus-plus/notepad-plus-plus/issues/6133)).
+ * Fix inaccurate URL detection by replacing a new URL parser (Fix
+ #3912, #3353, #4643, #5029, #6155, #7791, #8634)
+ * Fix RegEx look behind operations and \A and and \b and \z (Fix
+ #713, #1870, #2216, #2360, #9004, #4855).
+ * Split functionList.xml into multifile in "functionList" Folder
+ (Implement #4896).
+ * Make tray icon work again in administrator mode (Fix #8528).
+ * Fix dialogs & floating dockable panels don't minimize to system
+ tray issue (Fix #9044, #8928).
+ * Add alternative icon set for tab bar (Implement #8068).
+ * Add ability to remove any duplicate lines in a document, keeping
+ the first occurrence (Fix #8965).
+ * Fix incorrect icon for monitoring status in Document list panel
+ and in Document switcher (Fix #8783).
+ * Add copy marked text & styled text to clipboard commands to menu
+ (Implement #8943, #6095).
+ * Fix find-all-open-docs not finding all matches in ANSI files (Fix
+ #8901).
+ * Display long lines better in Find-result panel by increasing its
+ max length to 2048 (Fix #7723).
+ * Fix double clicking on find result line not working (Fix #9009,
+ #8525).
+ * Fix Find-result rclick-Copy incomplete data bug (Fix #8801).
+ * Add case insensitive lines sorting (Implement #4479).
+ * Add "Open Containing Folder as Workspace" command in main menu
+ and in context menu of tabs (Implement #3028).
+ * Enhance Sel info of status bar (Fix #8524).
+ * Add new option for save type of normal text files in Save dialog
+ (Fix #8866).
+ * Fix file path truncated issue in save confirmation dialog (Fix
+ #8812).
+ * Fix auto-Indent not working for PowerShell (Fix #9049).
+ * Allow setting of background color for bookmark margin (Fix #8833).
+ * Fix smart-highlighting not applying to cloned view (Fix #7910).
+ * Fix smart highlight issue related to EOF (Fix #8908).
+ * Fix closing file in 2nd view not removed from Doc Switcher (Fix
+ #8800).
+ * Add Delete keystroke to remove selected root from Folder as
+ Workspace (Fix #8960).
+ * Add TAB keystroke in Function List to switch between search field
+ and list (Fix #8665).
+ * Add ESC keystroke in Function List to switch to edit window (Fix
+ #8886).
+ * Add ESC keystroke to close Search Results Window (Implement
+ #2946).
+ * Fix data-prefixed attributes are not recognized in HTML (Fix
+ #6200).
+
+ -- Ben Stack <bgstack15@gmail.com> Fri, 04 Dec 2020 08:55:14 -0500
+
notepadpp (7.9-1+devuan) obs; urgency=medium
Add the ability to open the target file of a Shortcut (*.lnk).
diff --git a/notepadpp/debian/compat b/notepadpp/debian/compat
deleted file mode 100644
index 48082f7..0000000
--- a/notepadpp/debian/compat
+++ /dev/null
@@ -1 +0,0 @@
-12
diff --git a/notepadpp/debian/control b/notepadpp/debian/control
index 3985f5e..01b2734 100644
--- a/notepadpp/debian/control
+++ b/notepadpp/debian/control
@@ -2,7 +2,7 @@ Source: notepadpp
Section: editors
Priority: optional
Maintainer: B Stack <bgstack15@gmail.com>
-Build-Depends: debhelper (>=12~)
+Build-Depends: debhelper-compat (= 12)
Standards-Version: 4.1.4
Homepage: https://notepad-plus-plus.org/
@@ -18,7 +18,7 @@ Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends},
wine | wine-staging | winehq | winehq-staging | wine-stable,
- notepadpp-common
+ notepadpp-common (>= ${binary:Version})
Provides: notepadpp, x-editor
Description: editor from a non-free OS
The 32-bit release, which also includes TextFX
@@ -28,7 +28,7 @@ Architecture: all
Multi-Arch: foreign
Depends: ${misc:Depends}, ${shlibs:Depends},
wine64 | wine-staging | winehq | winehq-staging | wine-stable,
- notepadpp-common
+ notepadpp-common (>= ${binary:Version})
Provides: notepadpp, x-editor
Description: editor from a non-free OS
The 64-bit release
bgstack15