Skip to content

Commit ad703f5

Browse files
committed
Release 1.5.1
1 parent 1403eff commit ad703f5

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

NEWS.textile

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11

22
h3. Released Versions
33

4+
* 1.5.1 (2024-11-17)
5+
** Fixed: the tag matcher can distinguish parent elements from child ones, regressed in v1.5.0 ("#9":9) [31eca02], [4438502]
6+
** Fixed: the command menu follows the native language of non-portable N++ users, as well as portable ones [88dfaf6]
7+
** Changed: emoji with codepoints between U+010000 and U+10FFFF are encoded as Unicode scalars, not surrogate pairs, and they can now be (de/en)coded as HTML entities [9bdb140]
8+
** Changed: Windows on ARM64 users should not need to have a compatible Visual C++ runtime installed on their machines [c3ceba1]
9+
** Changed: HTML entity mappings will be reloaded if the INI file is edited in N++ [1403eff]
10+
** Added: help dialogs follow the user's native language (currently limited to 22 localizations) [3ea62bd]
11+
412
* 1.5.0 (2024-10-14)
513
** Fixed: decoding codepoints "between U+010000 and U+10FFFF":cref-2 finally Just Works(tm)
614
** Changed: the source code has been rewritten in C++ [0d94837]
7-
** Added: the command menu follows the user's native language setting (currently limited to 22 languages; "#5":5)
8-
** Added: changing the editor's native language automatically updates the plugin menu (N++ 8.7 and newer)
15+
** Added: for _portable_ N++ users, the command menu follows the user's native language setting (currently limited to 22 languages; "#5":5)
16+
** Added: for _portable_ N++ users, changing the editor's native language automatically updates the plugin menu (N++ 8.7 and newer)
917
** Added: first release for Windows on ARM64
1018

1119
* 1.4.4 (2024-03-14)
@@ -112,6 +120,7 @@ h3. Unreleased, Unstable Versions
112120
[db330832]https://github.com/notepad-plus-plus/notepad-plus-plus/commit/db3308329bd23a073b7de6f4ded2a523b282fcc3#diff-8968b5cad4cc8f62c9204894eea9941dac353af428a26be64f52055e99992040
113121
[5]https://github.com/rdipardo/nppHTMLTag/issues/5
114122
[7]https://github.com/rdipardo/nppHTMLTag/issues/7
123+
[9]https://github.com/rdipardo/nppHTMLTag/issues/9
115124
[cref]https://community.notepad-plus-plus.org/topic/22471/recompile-your-x64-plugins-with-new-header
116125
[cref-2]https://community.notepad-plus-plus.org/post/93441
117126
[jsDecodeBug]https://community.notepad-plus-plus.org/topic/18488/htmltag-1-1-plugin-broken-since-npp-7-7

make_release.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
::
99
SETLOCAL
1010

11-
set "VERSION=1.5.0"
11+
set "VERSION=1.5.1"
1212
set "PLUGIN=HTMLTag"
1313
set "PLUGIN_DLL=out\Win32\Release\%PLUGIN%.dll"
1414
set "PLUGINX64_DLL=out\x64\Release\%PLUGIN%.dll"

src/Forms/resource.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010

1111
#include <windows.h>
1212

13-
#define HTMLTAG_VERSION L"1.5.0.3\0"
14-
#define HTMLTAG_VERSION_WORDS 1, 5, 0, 3
13+
#define HTMLTAG_VERSION L"1.5.1.0\0"
14+
#define HTMLTAG_VERSION_WORDS 1, 5, 1, 0
1515

1616
#define ID_ABOUT_HTML_TAG_DLG 0x1000
1717
#define ID_UNICODE_FMT_CONFIG_DLG 0x2000

0 commit comments

Comments
 (0)