diff --git a/docs/src/content/docs/changelog.mdx b/docs/src/content/docs/changelog.mdx index e3e3668bf..479e99a3d 100644 --- a/docs/src/content/docs/changelog.mdx +++ b/docs/src/content/docs/changelog.mdx @@ -24,7 +24,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 */ ## [Unreleased] + +## v3.0.0-alpha.12 - 2025-07-15 + +### Added - `app.Env.GetAccentColor` to get the accent color of a user's system. Works on MacOS. by [@etesam913](https://github.com/etesam913) +- Add `window.ToggleFrameless()` api by [@atterpac](https://github.com/atterpac) in [#4137](https://github.com/wailsapp/wails/pull/4137) + +### Fixed +- Fixed doctor command to check for Windows SDK dependencies by [@kodumulo](https://github.com/kodumulo) in [#4390](https://github.com/wailsapp/wails/issues/4390) + ## v3.0.0-alpha.11 - 2025-07-12 diff --git a/v3/examples/frameless/assets/index.html b/v3/examples/frameless/assets/index.html index 8cc945d55..2776cfaa9 100644 --- a/v3/examples/frameless/assets/index.html +++ b/v3/examples/frameless/assets/index.html @@ -34,6 +34,10 @@ closeButton.addEventListener('click', function(event) { window.wails.Window.Close(); }); + let toggleFramelessButton = document.querySelector('#toggle-frameless'); + toggleFramelessButton.addEventListener('click', function(event) { + window.wails.Window.ToggleFrameless(); + }); }); @@ -42,6 +46,7 @@