Releases: michaldivis/dark-html-viewer
Releases · michaldivis/dark-html-viewer
v1.0.4
News
- added support for
net7.0
- added nullable support
Changes
- internal temp file management improvements
- using CommunityToolkit.Mvvm for MVVM instead of Divis.DarkHelpers
Breaking Changes
- removed support for
net5.0
- removed
IsEnabled
property fromVirtualHostNameToFolderMappingSettings
- changed
VirtualHostNameToFolderMappingSettingsException
to use aDictionary<string, string>
to store error messages
v1.0.3
Fixes
- fixed missing save scroll position functionality (
SaveScrollPositionForNextLoadCommand
,SaveScrollPositionForNextLoadAsync()
)
v1.0.2
News
- the default background color of the underlying WebView can now be configured via the static
HtmlViewer.ConfigureDefaultBackgroundColor(Color defaultBackgroundColor)
v1.0.1
News
- new feature: save scroll position (
SaveScrollPositionForNextLoadCommand
,SaveScrollPositionForNextLoadAsync()
)
v1.0.0
Breaking changes
- the
DarkHtmlViewer
control has been renamed toHtmlViewer
Changes
- updated the underlying WebView2 control so the minimum required WebView2 Runtime is now 102.0.1245.22 (see WebView2 1.0.1245.22 release notes for more)
v0.1.4-alpha
Changes
- added Zoom functionality
- Exposed command methods to the public API:
LoadCommand
=>void Load(string html)
ScrollCommand
=>Task ScrollAsync(string elementId)
ScrollOnNextLoadCommand
=>void ScrollOnNextLoad(string elementId)
SearchCommand
=>Task SearchAsync(string text)
SearchOnNextLoadCommand
=>void SearchOnNextLoad(string text)
PrintCommand
=>Task PrintAsync()
ZoomCommand
=>void Zoom(double zoom)
v0.1.3-alpha
Changes
- bug fixes
- added search functionality
- added virtual host name to folder path mapping support
- added logging support
- target framework changes - removed netcoreapp3.1
v0.1.2-alpha
Changes
- more functionality and some tweaks
- more target frameworks (net6.0, netcoreapp3.1)
v0.1.1-alpha
News
- print command
v0.1.0-alpha
This is the initial alpha release
News
- Basic
DarkHtmlViewer
control - Demo project