Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
s1hofmann committed Feb 18, 2024
2 parents 39dd098 + 0cc2e17 commit 2c19ded
Show file tree
Hide file tree
Showing 10 changed files with 733 additions and 404 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
node: [ 16 ]
node: [ 18 ]
runs-on: ${{matrix.os}}
steps:
- name: Set up Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4.0.2
with:
node-version: ${{matrix.node}}
- name: Configure Linux environment
Expand Down
13 changes: 7 additions & 6 deletions .github/workflows/snapshot_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
node: [ 18 ]
runs-on: ${{matrix.os}}
steps:
- name: Set up Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4.0.2
with:
node-version: ${{matrix.node}}
- name: Configure Linux environment
Expand Down Expand Up @@ -50,11 +51,11 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Set up Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4.0.2
with:
node-version: 14
node-version: 18
- name: Configure Linux environment
if: ${{matrix.os == 'ubuntu-20.04'}}
run: sudo apt-get install -y cmake libx11-dev zlib1g-dev libpng-dev libxtst-dev build-essential
Expand Down Expand Up @@ -82,5 +83,5 @@ jobs:
uses: peter-evans/repository-dispatch@v1
with:
token: ${{ secrets.SNAPSHOT_DISPATCH_TOKEN }}
repository: nut-tree/libnut-install
repository: nut-tree/nut.js
event-type: snapshot-release
11 changes: 6 additions & 5 deletions .github/workflows/tagged_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,13 @@ jobs:
strategy:
matrix:
os: [ ubuntu-20.04, macos-11, windows-2019 ]
node: [ 18 ]
runs-on: ${{matrix.os}}
steps:
- name: Set up Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4.0.2
with:
node-version: ${{matrix.node}}
- name: Configure Linux environment
Expand Down Expand Up @@ -44,11 +45,11 @@ jobs:
runs-on: ${{matrix.os}}
steps:
- name: Set up Git repository
uses: actions/checkout@v2
uses: actions/checkout@v4.1.1
- name: Set up node
uses: actions/setup-node@v2
uses: actions/setup-node@v4.0.2
with:
node-version: 14
node-version: 18
- name: Configure Linux environment
if: ${{matrix.os == 'ubuntu-20.04'}}
run: sudo apt-get install -y cmake libx11-dev zlib1g-dev libpng-dev libxtst-dev build-essential
Expand Down
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.

# 2.7.0
- Enhancement: Adding support for numpad 'Enter' key [PR #168)](/~https://github.com/nut-tree/libnut-core/pull/168) Contributed by [@smithkyle](/~https://github.com/smithkyle)
- Enhancement: Adding support for 'Fn' modifier key [PR #169)](/~https://github.com/nut-tree/libnut-core/pull/169) Contributed by [@smithkyle](/~https://github.com/smithkyle)
- Maintenance: Version upgrades, CI updates, etc.

## 2.6.0

- Feature: Move/focus/resize window [(#18)](/~https://github.com/nut-tree/libnut-core/issues/18) Contributed by [@ekrenzin](/~https://github.com/ekrenzin)
Expand Down
Loading

0 comments on commit 2c19ded

Please sign in to comment.