Skip to content

Commit a68b876

Browse files
committed
Release 1.4.3.0
1 parent d0fd7bb commit a68b876

File tree

9 files changed

+1248
-11
lines changed

9 files changed

+1248
-11
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
* text=auto
22
*.cmd eol=crlf
33
src/** eol=crlf
4+
*.css eol=lf
45
src/lib -diff -text
56
src/WebView4Delphi -diff -text
67
*.bmp -diff -text

ReleaseNotes.txt

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
Preview HTML plugin for Notepad++
22
=================================
33

4+
v1.4.3.0, 2025-12-18
5+
--------------------
6+
- Fixed: resolved an edge case where the preview background would become solid black in dark app mode
7+
- Changed: the minimum required version of `msedgewebview2.exe` is no longer strictly enforced (may prevent issues like [#6])
8+
- Added: pages with no user-defined CSS will by styled with a default light or dark theme
9+
- Added: new configuration options for:
10+
11+
* overriding the default style theme
12+
* inserting a JavaScript file that runs during previews
13+
14+
Visit [the wiki](https://github.com/rdipardo/npp_preview/wiki/Settings#style-javascript) to learn more.
15+
416
v1.4.2.1, 2025-12-05
517
--------------------
618
- Fixed: previews render with a white default background even when dark app mode is enabled ([MicrosoftEdge/WebView2Feedback#5454])
@@ -95,12 +107,13 @@ v1.1.0.0, 2013-01-20
95107
[#3]: https://github.com/rdipardo/npp_preview/issues/3
96108
[#4]: https://github.com/rdipardo/npp_preview/issues/4
97109
[#5]: https://github.com/rdipardo/npp_preview/issues/5
110+
[#6]: https://github.com/rdipardo/npp_preview/issues/6
98111
[wiki homepage]: https://github.com/rdipardo/npp_preview/wiki
99112
[a017892ab7]: https://fossil.2of4.net/npp_preview/tktview/a017892ab7
100113
[cfc74baf4b]: https://fossil.2of4.net/npp_preview/tktview/cfc74baf4b
101114
[20d1203257]: https://fossil.2of4.net/npp_preview/tktview/20d1203257
102115
[1b34ee74aa]: https://fossil.2of4.net/npp_preview/tktview/1b34ee74aa
103-
[MicrosoftEdge/WebView2Feedback#5392]: https://github.com/MicrosoftEdge/WebView2Feedback/issues/5454
116+
[MicrosoftEdge/WebView2Feedback#5454]: https://github.com/MicrosoftEdge/WebView2Feedback/issues/5454
104117

105118
<!--
106119
vim: ft=markdown

lazarus/make_release.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
::
1616
SETLOCAL
1717

18-
set "VERSION=1.4.2.1"
18+
set "VERSION=1.4.3.0"
1919
set "PLUGIN=PreviewHTML"
2020
set "CONFIG_DIR=.\src\Config"
2121
set "FPC_DIR=.\out\3RD-PARTY"
@@ -36,8 +36,8 @@ xcopy /DIY ReleaseNotes.txt .\out
3636
xcopy /DIY src\common\COPYING* %FPC_DIR%
3737
@rem echo D | xcopy /DIY src\Microsoft.Web.WebView2\ "%FPC_DIR%\Microsoft.Web.WebView2"
3838
echo D | xcopy /DIY src\WebView4Delphi\LICENSE "%FPC_DIR%\WebView4Delphi"
39-
7z a -tzip "%SLUG%" "%PLUGIN_DLLS%" .\out\*.txt %CONFIG_DIR%\*.ini %FPC_DIR% -y
40-
7z a -tzip "%SLUGX64%" "%PLUGINX64_DLLS%" .\out\*.txt %CONFIG_DIR%\*.ini %FPC_DIR% -y
39+
7z a -tzip "%SLUG%" "%PLUGIN_DLLS%" .\out\*.txt %CONFIG_DIR%\*.* %FPC_DIR% -y
40+
7z a -tzip "%SLUGX64%" "%PLUGINX64_DLLS%" .\out\*.txt %CONFIG_DIR%\*.* %FPC_DIR% -y
4141
popd
4242

4343
ENDLOCAL

make_release.cmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
::
1616
SETLOCAL
1717

18-
set "VERSION=1.4.2.1"
18+
set "VERSION=1.4.3.0"
1919
set "PLUGIN=PreviewHTML"
2020
set "CONFIG_DIR=.\src\Config"
2121
set "FPC_DIR=.\out\3RD-PARTY"
@@ -34,7 +34,7 @@ xcopy /DIY ReleaseNotes.txt .\out
3434
xcopy /DIY src\common\COPYING* %FPC_DIR%
3535
@rem echo D | xcopy /DIY src\Microsoft.Web.WebView2\ "%FPC_DIR%\Microsoft.Web.WebView2"
3636
echo D | xcopy /DIY src\WebView4Delphi\LICENSE "%FPC_DIR%\WebView4Delphi"
37-
7z a -tzip "%SLUG%" "%PLUGIN_DLLS%" .\out\*.txt %CONFIG_DIR%\*.ini %FPC_DIR% -y
38-
7z a -tzip "%SLUGX64%" "%PLUGINX64_DLLS%" .\out\*.txt %CONFIG_DIR%\*.ini %FPC_DIR% -y
37+
7z a -tzip "%SLUG%" "%PLUGIN_DLLS%" .\out\*.txt %CONFIG_DIR%\*.* %FPC_DIR% -y
38+
7z a -tzip "%SLUGX64%" "%PLUGINX64_DLLS%" .\out\*.txt %CONFIG_DIR%\*.* %FPC_DIR% -y
3939

4040
ENDLOCAL

0 commit comments

Comments
 (0)