Notepad++ release 8.7.9
-
Notepad++ release 8.7.9 is available here:
https://notepad-plus-plus.org/news/v879-we-are-with-ukraine/Notepad++ release 8.7.9 regression-fixes, bug-fixes & improvements:
- Fix incorrect syntax highlighting regressions. (Fix #16271, #16309 - Revert 4 of v8.7.8)
- Update to Scintilla 5.5.5 & Lexilla 5.4.3. (Implement #16235)
- Fix bug where plugin button hiding settings in toolbarButtonsConf.xml are ignored. (Fix #16280)
- Fix SQL Backslash Escape preference not taking effect immediately. (Fix #16244)
- Add new low-level DirectX11 DirectWrite 1.1 Scintilla rendering mode. (Implement #16284)
- Add versions of external libraries (Scintilla/Lexilla/Boost) to Debug Info. (Fix #11466)
Notepad++ release 8.7.8 regression-fixes, bug-fixes & improvements:
- Fix regression (v8.7.1 - v8.7.7) of saving backup file without modifications. (Fix #16186)
- Fix syntax highlighting regression while switching among UDL files. (Fix #16154)
- Add ability to hide selected toolbar buttons via a XML configuration.(Fix #15106, #15440, #16000)
Optimize switching programming language performance for large files. (Fix #16106)- Improve folding/unfolding performance for large files. (Fix #16064)
- Fix count operation on regex causing Notepad++ to hang. (Fix #16207)
- Improve Style Configurator GUI organization. (Fix #15939)
- Adds SAS programming language support. (Fix #16148)
- Make existing DirectWrite rendering modes accessible. (Fix #16126)
- Allow DirectWrite use on non-Core Windows Server. (Fix #15916)
- Use VTS instead of LTS for specific control code abbreviation. (Fix #16107)
- Fix installer silent mode doLocalConf.xml setting handling issue. (Fix #16233)
Auto-update will be triggered in 1 week, if no critical issue found.
-
I think there is a regression. I suspect it is related to 8.7.8 #6, but I haven’t proven that yet. The bug is present in 8.7.8 and 8.7.9, but not in 8.7.7:
Open a new tab and type two lines:
abc def
Open the Find dialog; turn off wrap around, set regular expression, and enter:
.*
as the find expression. Place the caret at the beginning of the file, then click Find repeatedly. First it findsabc
; then a zero length match; thendef
; then a zero length match.In 8.7.7, clicking Find a fifth time produces the error message Can’t find the text “.*” from caret to end-of-file. In 8.7.8 and 8.7.9, Notepad++ becomes unresponsive.
Other tests suggest the problem occurs whenever there is a zero length match at the end of the file.
-
Indeed, it looks like Commit a52738c / PR 16208 is the cause.
Changing the line that changed:
return _document->NextPosition(position, 1);
to
return std::max(_document->NextPosition(position, 1), position + 1);
appears to fix it.
@donho, would you prefer that I prepare another pull request (after further testing)? Submit an issue and a pull request? Leave this to you?
-
@Coises ,
I can confirm the STR, and it does lock up my portable version of 8.7.9, just as described. There’s no reponse in the find dialog, and the button stays disabled and clicking anywhere else on the dialog crashes the app. -
@Coises said in Notepad++ release 8.7.9:
@donho, would you prefer that I prepare another pull request (after further testing)? Submit an issue and a pull request? Leave this to you?
Pull request #16371 submitted. Let me know if I should do anything else.