From 172825ed4245572439e74ff40ddb54702539d122 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Sat, 23 Mar 2024 07:18:26 +0100 Subject: [PATCH 1/4] Disable GitHub package registry --- .github/workflows/snapshot_release.yaml | 21 +++++++-------------- .github/workflows/tagged_release.yaml | 7 ------- 2 files changed, 7 insertions(+), 21 deletions(-) diff --git a/.github/workflows/snapshot_release.yaml b/.github/workflows/snapshot_release.yaml index 1b77ac8f..f86afa3b 100644 --- a/.github/workflows/snapshot_release.yaml +++ b/.github/workflows/snapshot_release.yaml @@ -1,13 +1,13 @@ name: Create snapshot release on: push: - branches: - - develop - paths-ignore: - - "**/*.md" - repository_dispatch: - types: - - snapshot-release +# branches: +# - develop +# paths-ignore: +# - "**/*.md" +# repository_dispatch: +# types: +# - snapshot-release workflow_dispatch: jobs: @@ -74,10 +74,3 @@ jobs: run: pnpm run publish:next env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - uses: actions/setup-node@v3 - with: - registry-url: "https://npm.pkg.github.com" - - name: Publish snapshot release to GPR - run: npm run publish:next - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/tagged_release.yaml b/.github/workflows/tagged_release.yaml index e8263c95..51aa34c4 100644 --- a/.github/workflows/tagged_release.yaml +++ b/.github/workflows/tagged_release.yaml @@ -68,10 +68,3 @@ jobs: run: pnpm run publish:release env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} - - uses: actions/setup-node@v3 - with: - registry-url: "https://npm.pkg.github.com" - - name: Publish tagged release to GPR - run: pnpm run publish:release - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} From db8088332dbde44e11d4ec9fc45a6bfc8642dbb4 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Thu, 28 Mar 2024 10:47:38 +0100 Subject: [PATCH 2/4] Updated changelog --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d768021..30ef467b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file. +## 4.0.1 + +- Enhancement: Fix channel info for image loader to 4 to avoid processing errors + ## 4.0.0 - Feature: Add ability to move/focus/resize windows [(#172)](https://github.com/nut-tree/nut.js/issues/172) From 72541d6562e21fc28c5af1b5be2329a0d7e69118 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Thu, 28 Mar 2024 10:47:49 +0100 Subject: [PATCH 3/4] Re-enabled snapshot releases --- .github/workflows/snapshot_release.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/snapshot_release.yaml b/.github/workflows/snapshot_release.yaml index f86afa3b..dd8bf8ea 100644 --- a/.github/workflows/snapshot_release.yaml +++ b/.github/workflows/snapshot_release.yaml @@ -1,13 +1,13 @@ name: Create snapshot release on: push: -# branches: -# - develop -# paths-ignore: -# - "**/*.md" -# repository_dispatch: -# types: -# - snapshot-release + branches: + - develop + paths-ignore: + - "**/*.md" + repository_dispatch: + types: + - snapshot-release workflow_dispatch: jobs: From 059ffb9354c073301479eea0166e3e8e053916ac Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Thu, 28 Mar 2024 10:49:05 +0100 Subject: [PATCH 4/4] Version bump to v4.0.1 --- core/configs/package.json | 2 +- core/nut.js/package.json | 2 +- core/provider-interfaces/package.json | 2 +- core/shared/package.json | 2 +- e2e/window-test/package.json | 2 +- examples/jest-test/package.json | 2 +- examples/keyboard-test/package.json | 2 +- examples/mouse-test/package.json | 2 +- examples/screen-test/package.json | 2 +- examples/typescript-test/package.json | 2 +- package.json | 2 +- providers/clipboardy/package.json | 2 +- providers/libnut/package.json | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/core/configs/package.json b/core/configs/package.json index 2a877f91..9a6b5e37 100644 --- a/core/configs/package.json +++ b/core/configs/package.json @@ -1,7 +1,7 @@ { "name": "@nut-tree/configs", "private": true, - "version": "4.0.0", + "version": "4.0.1", "description": "Shared configs for nut.js", "author": { "name": "dry Software UG (haftungsbeschränkt)", diff --git a/core/nut.js/package.json b/core/nut.js/package.json index 83a628b3..23650c5a 100644 --- a/core/nut.js/package.json +++ b/core/nut.js/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/nut-js", - "version": "4.0.0", + "version": "4.0.1", "license": "Apache-2.0", "main": "dist/index", "typings": "dist/index", diff --git a/core/provider-interfaces/package.json b/core/provider-interfaces/package.json index 99fad5c9..75fef09e 100644 --- a/core/provider-interfaces/package.json +++ b/core/provider-interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/provider-interfaces", - "version": "4.0.0", + "version": "4.0.1", "description": "Public provider interfaces for @nut-tree/nut-js", "main": "dist/index", "typings": "dist/index", diff --git a/core/shared/package.json b/core/shared/package.json index fb528cf7..6ed116f9 100644 --- a/core/shared/package.json +++ b/core/shared/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/shared", - "version": "4.0.0", + "version": "4.0.1", "description": "Shared objects, data types and functions for @nut-tree/nut-js", "main": "dist/index", "typings": "dist/index", diff --git a/e2e/window-test/package.json b/e2e/window-test/package.json index 1e384848..75a1271d 100644 --- a/e2e/window-test/package.json +++ b/e2e/window-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-window", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "Integration tests to verify window handling", "main": "main.js", diff --git a/examples/jest-test/package.json b/examples/jest-test/package.json index ce8d63be..40230636 100644 --- a/examples/jest-test/package.json +++ b/examples/jest-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-jest", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "A simple nut.js test example which demos Jest integration", "main": "index.js", diff --git a/examples/keyboard-test/package.json b/examples/keyboard-test/package.json index edc6100c..9fe82f10 100644 --- a/examples/keyboard-test/package.json +++ b/examples/keyboard-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-keyboard", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "A simple nut.js test example which tests keyboard control", "main": "index.js", diff --git a/examples/mouse-test/package.json b/examples/mouse-test/package.json index 8b2ef061..664c4b64 100644 --- a/examples/mouse-test/package.json +++ b/examples/mouse-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-mouse", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "A simple nut.js test example which tests mouse control", "author": { diff --git a/examples/screen-test/package.json b/examples/screen-test/package.json index dea4ce7c..40dc1c78 100644 --- a/examples/screen-test/package.json +++ b/examples/screen-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-screen", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "A simple nut.js test example which tests screen control", "main": "index.js", diff --git a/examples/typescript-test/package.json b/examples/typescript-test/package.json index 748e2d3b..f426d8f3 100644 --- a/examples/typescript-test/package.json +++ b/examples/typescript-test/package.json @@ -1,6 +1,6 @@ { "name": "sample-typescript", - "version": "4.0.0", + "version": "4.0.1", "private": true, "description": "A simple nut.js test example which demos usage with TypeScript", "main": "index.ts", diff --git a/package.json b/package.json index 85bdf261..61d556fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/monorepo", - "version": "4.0.0", + "version": "4.0.1", "private": true, "scripts": { "test": "pnpm -r test", diff --git a/providers/clipboardy/package.json b/providers/clipboardy/package.json index 1bfc223b..3c2539c1 100644 --- a/providers/clipboardy/package.json +++ b/providers/clipboardy/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/default-clipboard-provider", - "version": "4.0.0", + "version": "4.0.1", "description": "The @nut-tree/nut-js default clipboard provider based on clipboardy", "main": "dist/index", "typings": "dist/index", diff --git a/providers/libnut/package.json b/providers/libnut/package.json index 6ab09ae3..4439e6c5 100644 --- a/providers/libnut/package.json +++ b/providers/libnut/package.json @@ -1,6 +1,6 @@ { "name": "@nut-tree/libnut", - "version": "4.0.0", + "version": "4.0.1", "description": "libnut is an N-API module for desktop automation with node", "main": "dist/index", "typings": "dist/index",