diff --git a/PowerEditor/bin/change.log b/PowerEditor/bin/change.log index ade44b749..6c0276827 100644 --- a/PowerEditor/bin/change.log +++ b/PowerEditor/bin/change.log @@ -1,3 +1,21 @@ +Notepad++ v8.3.3 regression-fix, bug-fixes and new enhancements: + +1. Fix crash regression on opening a session file. +2. Enhance stability: add new ability (plugin compatibility) for not loading incompatible plugins. +3. Fix deleting the folded line makes folded (hidden) content disappeared. +4. Re-enable ability to center the FindReplaceDlg on Notepad++ main window. +5. Fix extension not appended issue while saving with ENTER under Windows 7. +6. Fix preferences dialog "Dark Mode->Customize tone" RTL alignment issue in dark mode. +7. Fix disabled static texts of Preferences blurry issue in Dark mode. +8. Add 4 API for custom auto-indentation and getting current macro status. +9. Add new AutoComplete icon for distinguishing functions from normal keywords. +10. Fix Plugin Admin close issue after typing ENTER. +11. Show current and new version on update dialog. + +More fixes & implementations detail: +https://notepad-plus-plus.org/downloads/v8.3.3/ + + Notepad++ v8.3.2 regression-fixes, bug-fixes and new enhancements: 1. Fix incorrect message while double clicking on search result regression. @@ -35,8 +53,6 @@ Notepad++ v8.3 new features and bug-fixes: 3. Fix Find in Files crash issue. -More fixes & implementations detail: -https://notepad-plus-plus.org/downloads/v8.3.2/ Included plugins: @@ -48,4 +64,4 @@ Included plugins: Updater (Installer only): -* WinGup (for Notepad++) v5.2.2 +* WinGup (for Notepad++) v5.2.3 diff --git a/PowerEditor/src/Notepad_plus.cpp b/PowerEditor/src/Notepad_plus.cpp index 1f740ad1b..05fa5ca50 100644 --- a/PowerEditor/src/Notepad_plus.cpp +++ b/PowerEditor/src/Notepad_plus.cpp @@ -7229,6 +7229,8 @@ static const QuoteParams quotes[] = {TEXT("Anonymous #185"), QuoteParams::rapid, false, SC_CP_UTF8, L_TEXT, TEXT("Me: \"I'm 45 years old but I've got a 19 year-old young man's body\"\nHer: \"Show me\"\nI opened the freezer to show her the body.\nShe screamed.\nMe too.\n") }, {TEXT("Anonymous #186"), QuoteParams::slow, false, SC_CP_UTF8, L_TEXT, TEXT("Everyone complains about the weather,\nbut no one wants to sacrifice a virgin to change it.\n") }, {TEXT("Anonymous #187"), QuoteParams::rapid, false, SC_CP_UTF8, L_TEXT, TEXT("If you are alone at home and feel lonely:\nTurn off the lights, turn on the TV and watch a horror movie.\nThen you will have feeling that there are someone hidden in the kitchen, in the toilet\nand even under your bed.\n") }, + {TEXT("Anonymous #188"), QuoteParams::slow, false, SC_CP_UTF8, L_TEXT, TEXT("*Knock knock*\n\"Race condition\"\n\"Who's there?\"\n") }, + {TEXT("Anonymous #189"), QuoteParams::rapid, false, SC_CP_UTF8, L_TEXT, TEXT("The two most difficult programming challenges are naming things, cache invalidation, and off-by-one errors.\n") }, {TEXT("xkcd"), QuoteParams::rapid, false, SC_CP_UTF8, L_TEXT, TEXT("Never have I felt so close to another soul\nAnd yet so helplessly alone\nAs when I Google an error\nAnd there's one result\nA thread by someone with the same problem\nAnd no answer\nLast posted to in 2003\n\n\"Who were you, DenverCoder9?\"\n\"What did you see?!\"\n\n(ref: https://xkcd.com/979/)") }, {TEXT("A developer"), QuoteParams::slow, false, SC_CP_UTF8, L_TEXT, TEXT("No hugs & kisses.\nOnly bugs & fixes.") }, {TEXT("Elon Musk"), QuoteParams::rapid, false, SC_CP_UTF8, L_TEXT, TEXT("Don't set your password as your child's name.\nName your child after your password.") }, diff --git a/PowerEditor/src/Notepad_plus.rc b/PowerEditor/src/Notepad_plus.rc index 249b56eeb..4a5089ae0 100644 --- a/PowerEditor/src/Notepad_plus.rc +++ b/PowerEditor/src/Notepad_plus.rc @@ -1234,7 +1234,8 @@ BEGIN //LTEXT "Stand with Hong Kong",IDC_AUTHOR_NAME,70,32,80,8 //LTEXT "pour Samuel Paty",IDC_AUTHOR_NAME,70,32,80,8 //LTEXT "Boycott Beijing 2022",IDC_AUTHOR_NAME,85,38,80,8 - LTEXT "Declare variables, not war",IDC_AUTHOR_NAME,85,38,100,8 + //LTEXT "Declare variables, not war",IDC_AUTHOR_NAME,85,38,100,8 + LTEXT "Make Apps, not war",IDC_AUTHOR_NAME,85,38,100,8 LTEXT "Home:",IDC_STATIC,21,58,47,8 LTEXT "https://notepad-plus-plus.org/",IDC_HOME_ADDR,50,58,126,8 GROUPBOX "GNU General Public Licence",IDC_STATIC,19,75,231,131,BS_CENTER diff --git a/PowerEditor/src/resource.h b/PowerEditor/src/resource.h index b70c7c7c1..660e1fc91 100644 --- a/PowerEditor/src/resource.h +++ b/PowerEditor/src/resource.h @@ -19,12 +19,12 @@ // // Notepad++ version: begin // -#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.3.2") +#define NOTEPAD_PLUS_VERSION TEXT("Notepad++ v8.3.3") // should be X.Y : ie. if VERSION_DIGITALVALUE == 4, 7, 1, 0 , then X = 4, Y = 71 // ex : #define VERSION_VALUE TEXT("5.63\0") -#define VERSION_VALUE TEXT("8.32\0") -#define VERSION_DIGITALVALUE 8, 3, 2, 0 +#define VERSION_VALUE TEXT("8.33\0") +#define VERSION_DIGITALVALUE 8, 3, 3, 0 // Notepad++ version: end