diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b88059..0bec2a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,30 +1,29 @@ -## 1.1.0+1 +## 1.1.1 -- Add documentation website. +- feat: `WindowsTaskbar.setWindowTitle` & `WindowsTaskbar.resetWindowTitle` (@alexmercerind). +- refactor: check `nullptr` before invoking `ITaskbarList3` methods (@alexmercerind). ## 1.1.0 -- Added `WindowsTaskbar.setOverlayIcon` & `WindowsTaskbar.resetOverlayIcon` (@nikitatg). -- Move implementation to separate translation unit & make methods non-inline (@alexmercerind). -- Now platform channel calls raise errors correctly by checking `HRESULT` (@alexmercerind). -- Deprecated methods: +- feat: `WindowsTaskbar.setOverlayIcon` & `WindowsTaskbar.resetOverlayIcon` (@nikitatg). +- feat: platform channel calls raise errors correctly by checking `HRESULT` (@alexmercerind). +- perf: move impl to separate translation unit & make methods non-inline (@alexmercerind). +- refactor: improved naming of various methods (@alexmercerind). +- deprecated: - `WindowsTaskbar.clearThumbnailToolbar` is now `WindowsTaskbar.resetThumbnailToolbar`. - `WindowsTaskbar.setFlashTaskbarAppIcon` is now `WindowsTaskbar.setFlashTaskbarAppIcon`. - `WindowsTaskbar.stopFlashingTaskbarAppIcon` is now `WindowsTaskbar.resetFlashTaskbarAppIcon`. - - The change has been made to fix inconsistency in names. ## 1.0.0 -- Implement `WindowsTaskbar.flashTaskbarAppIcon` & `WindowsTaskbar.stopFlashingTaskbarAppIcon` (@alexmercerind). -- Change project license to MIT (@alexmercerind). -- Use `MultiByteToWideChar` for `std::wstring` convert (@boyan01). +- feat: `WindowsTaskbar.flashTaskbarAppIcon` & `WindowsTaskbar.stopFlashingTaskbarAppIcon` (@alexmercerind). +- fix: use `MultiByteToWideChar` for `std::wstring` convert (@boyan01). +- chore: re-license to MIT (@alexmercerind). ## 0.0.1 -- Initial release. -- Expose all common `ITaskbarList3` WIN32 APIs (@alexmercerind). -- Add following methods to `WindowsTaskbar` (@alexmercerind): - - `SetProgressMode` - - `SetProgress` - - `SetThumbnailToolbar` - - `SetThumbnailTooltip` +- feat: most of the common `ITaskbarList3` Win32 APIs (@alexmercerind). +- feat: `SetProgressMode` (@alexmercerind). +- feat: `SetProgress` (@alexmercerind). +- feat: `SetThumbnailToolbar` (@alexmercerind). +- feat: `SetThumbnailTooltip` (@alexmercerind). diff --git a/README.md b/README.md index dc4dd53..27f08fc 100644 --- a/README.md +++ b/README.md @@ -1,23 +1,31 @@ -
Flutter plugin serving utilities related to Windows taskbar.
## Install ```yaml dependencies: - windows_taskbar: ^1.0.0 + windows_taskbar: ^1.1.1 ``` -## Demo ++ + | +
+ + | +