From 1fb82b1679ea4c9f63b9bdc8a0c4ea4c72096fc6 Mon Sep 17 00:00:00 2001 From: Shalitha Suranga Date: Tue, 5 Mar 2024 20:19:04 +0530 Subject: [PATCH] Update changelogs --- docs/release-notes/cli.md | 7 +++++++ docs/release-notes/client-library.md | 5 +++++ docs/release-notes/framework.md | 12 ++++++++++++ 3 files changed, 24 insertions(+) diff --git a/docs/release-notes/cli.md b/docs/release-notes/cli.md index 228b702c..94bca9ef 100644 --- a/docs/release-notes/cli.md +++ b/docs/release-notes/cli.md @@ -4,6 +4,13 @@ title: CLI ## Unreleased +## v11.0.1 + +### Bugfixes/improvements +- Clean existing app build files before creating another build using the `neu build` command. +- Support older Node versions by removing the optional chaining feature usage. +- Fix the endless port waiting issue with the `--frontend-lib-dev` option. + ## v11.0.0 ### Core: Runner diff --git a/docs/release-notes/client-library.md b/docs/release-notes/client-library.md index 81a470ac..670fb7f6 100644 --- a/docs/release-notes/client-library.md +++ b/docs/release-notes/client-library.md @@ -4,6 +4,11 @@ title: Client Library ## Unreleased +## v5.0.1 + +### TypeScript +- Fix type declaration issues with the `window` global object. Now, `window.NL_VERSION`, etc. won't display errors on code editors or with the TypeScript compiler. + ## v5.0.0 ### API: app diff --git a/docs/release-notes/framework.md b/docs/release-notes/framework.md index 30baebd5..a8305265 100644 --- a/docs/release-notes/framework.md +++ b/docs/release-notes/framework.md @@ -4,6 +4,18 @@ title: Framework ## Unreleased +### Configuration: window transparency +Neutralinojs offers the inbuilt borderless mode and draggable region API to create custom window frames using HTML and CSS. Earlier, Neutralinojs used a default opaque color (usually white) for the window and webview layer, so app developers couldn't make custom CSS-styled window frames transparent or implement custom window frame shapes (i.e., rounded edges). Now, it offers the `window.transparent` boolean flag to activate window transparency. + +If the transparency mode is on, the Neutralinojs window and webview use an alpha color layer and become transparent, so developers can use the `rgba` CSS color function on `body` background to handle the transparency level of the app. + +The transparency mode can be activated using the `--window-transparent=` internal command-line option too. + +*Note: This feature is not implemented for the Windows operating system yet.* + +### API: clipboard +- Expose the `clipboard.clear()` function to clear system clipboard. + ## v5.0.0 ### API: Reading, writing with standard streams