Notepad++ v8.4.1 release
-
Hello !
I just filed issue 11661 about a regression in Notepad++ 8.4 with MIME Tools plugin 2.7 and Base 64 Encoding.
Thank you for Notepad++ ! -
@dleborgne said in Notepad++ v8.4.1 release:
I just filed issue 11661 about a regression in Notepad++ 8.4 with MIME Tools plugin 2.7 and Base 64 Encoding.
Probably due to the Scintilla API change that now excludes the trailing NUL character - which would make each string one character shorter?
https://github.com/notepad-plus-plus/notepad-plus-plus/issues/10504#issuecomment-1010295809
Cheers.
-
@donho
Well I seem to have found one. Not sure if this is just regarding UDL’s Function List, but whenever a tab is picked, and then goes back to the original document that is UDL defined, the FunctionList is no longer working…ie, the FunctionList is empty of the Function List definitions for that file.
The following screenshots are titled accordingly, InitialDocOpen, PostDarkModeUDL selected, change doc tab and switch back to UDL tab.
Notice the final pic, that shows the FunctionList is empty after switching tabs.My debug info:
Notepad++ v8.4.1 (64-bit)
Build time : May 8 2022 - 19:51:18
Path : C:\Users\camilee\Documents\Development Tools Downloads\Notepad++ Versions\npp.8.4.1.portable.x64\notepad++.exe
Command Line :
Admin mode : OFF
Local Conf mode : ON
Cloud Config : OFF
OS Name : Windows 10 Home (64-bit)
OS Version : 2009
OS Build : 19044.1706
Current ANSI codepage : 1252
Plugins : mimeTools.dll NppConverter.dll NppExport.dll
-
@lycan-thrope said in Notepad++ v8.4.1 release:
Not sure if this is just regarding UDL’s Function List, but whenever a tab is picked, and then goes back to the original document that is UDL defined, the FunctionList is no longer working…ie, the FunctionList is empty of the Function List definitions for that file.
I cannot reproduce this.
Cheers.
-
@michael-vincent Sigh…never mind. Apparently my fingers screwed up the typing in the overrideMap.xml file that I was switching to. I don’t know how, but it was misspelled on the letter that the cursor was on. I looked at it closer and noticed it was spelled “Dard” rather than “Dark” which is what the name was. What’s wierd is it actually showed it briefly, under regular dBASE…apparently the switch redrew it so even though it showed in the first Dark mode setting, when the tabs were switched and then refocused on it,…it didn’t read it…until I just corrected the spelling in the overrideMap.xml file. Sorry for the false alarm. :( (egg on face)
-
Hello, please color between “style” tags in php sheets, regards
-
-
FYI:
There are still some regressions in this version, so this release will be triggered for the auto-updating.
I feel more confident about the stability of v8.4.2 for the auto-updating. -
Hi! Please check this issue. Thank you.
v8.4.1 x86 installed.
Using TextFX Characters v0.2.6 plugin -> UPPER CASE
Word Changed: “Blue Colour” to " BLUE COLOU"
Missing one letter.v8.3.3 x86 installed.
Using TextFX Characters v0.2.6 plugin -> UPPER CASE
Word Changed: “Blue Colour” to " BLUE COLOUR"
No letter missing.v8.1 x86 installed.
Using TextFX Characters v0.2.6 plugin -> UPPER CASE
Word Changed: “Blue Colour” to " BLUE COLOUR"
No letter missing. -
@fazhan-nur-rezza-fauzi said in Notepad++ v8.4.1 release:
Please check this issue.
That plugin has not been updated in years. It is no longer fully compatible with modern Notepad++'s API.
Besides, Notepad++ has had “make uppercase” for years. See the edit menu
-
@fazhan-nur-rezza-fauzi,
the problem with v8.4.1 (and v8.4) is the Scintilla API version it uses. Scintilla 5.1.5 changed the return value of its APIs to not count the terminating NULL in the total length of the string. Obviously TextFx was programmed to expect a string length + 1. -
-