Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v4.1.0 #576

Merged
merged 3 commits into from
Apr 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 4.1.0

- Enhancement: Extend `WindowProviderInterface` with `minimizeWindow` and `restoreWindow` functions
- Feature: Introduce `WindowElementQuery` type and extend `Window` class with `find`, `findAll`, `waitFor` and find hooks

## 4.0.1

- Enhancement: Fix channel info for image loader to 4 to avoid processing errors
Expand Down
2 changes: 1 addition & 1 deletion core/configs/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@nut-tree/configs",
"private": true,
"version": "4.0.1",
"version": "4.1.0",
"description": "Shared configs for nut.js",
"author": {
"name": "dry Software UG (haftungsbeschränkt)",
Expand Down
14 changes: 0 additions & 14 deletions core/nut.js/lib/window-element.interface.ts

This file was deleted.

2 changes: 1 addition & 1 deletion core/nut.js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/nut-js",
"version": "4.0.1",
"version": "4.1.0",
"license": "Apache-2.0",
"main": "dist/index",
"typings": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion core/provider-interfaces/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/provider-interfaces",
"version": "4.0.1",
"version": "4.1.0",
"description": "Public provider interfaces for @nut-tree/nut-js",
"main": "dist/index",
"typings": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion core/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/shared",
"version": "4.0.1",
"version": "4.1.0",
"description": "Shared objects, data types and functions for @nut-tree/nut-js",
"main": "dist/index",
"typings": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion e2e/window-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-window",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "Integration tests to verify window handling",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/jest-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-jest",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "A simple nut.js test example which demos Jest integration",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/keyboard-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-keyboard",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "A simple nut.js test example which tests keyboard control",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/mouse-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-mouse",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "A simple nut.js test example which tests mouse control",
"author": {
Expand Down
2 changes: 1 addition & 1 deletion examples/screen-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-screen",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "A simple nut.js test example which tests screen control",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/typescript-test/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sample-typescript",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"description": "A simple nut.js test example which demos usage with TypeScript",
"main": "index.ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/monorepo",
"version": "4.0.1",
"version": "4.1.0",
"private": true,
"scripts": {
"test": "pnpm -r test",
Expand Down
2 changes: 1 addition & 1 deletion providers/clipboardy/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/default-clipboard-provider",
"version": "4.0.1",
"version": "4.1.0",
"description": "The @nut-tree/nut-js default clipboard provider based on clipboardy",
"main": "dist/index",
"typings": "dist/index",
Expand Down
2 changes: 1 addition & 1 deletion providers/libnut/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nut-tree/libnut",
"version": "4.0.1",
"version": "4.1.0",
"description": "libnut is an N-API module for desktop automation with node",
"main": "dist/index",
"typings": "dist/index",
Expand Down
Loading