Skip to content

Commit

Permalink
Update changelogs
Browse files Browse the repository at this point in the history
  • Loading branch information
shalithasuranga committed Mar 5, 2024
1 parent bdfc876 commit 1fb82b1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 0 deletions.
7 changes: 7 additions & 0 deletions docs/release-notes/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions docs/release-notes/client-library.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 12 additions & 0 deletions docs/release-notes/framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -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=<bool>` 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
Expand Down

0 comments on commit 1fb82b1

Please sign in to comment.