Skip to content

Commit 4f55b63

Browse files
committed
### 1.1.1 (2020-02-10)
* (MK-2001) Sending of FS20 cmdRAW possible or via sendTo as described in the readme
1 parent 2c0adb5 commit 4f55b63

File tree

9 files changed

+442
-281
lines changed

9 files changed

+442
-281
lines changed

.github/workflows/npmpublish.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Publish
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v1
12+
- uses: actions/setup-node@v1
13+
with:
14+
node-version: 10
15+
- run: npm i
16+
- run: npm test
17+
18+
publish-npm:
19+
needs: build
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/checkout@v1
23+
- uses: actions/setup-node@v1
24+
with:
25+
node-version: 10
26+
registry-url: https://registry.npmjs.org/
27+
- run: npm i
28+
- run: npm publish
29+
env:
30+
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

Gruntfile.js

Lines changed: 0 additions & 193 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@ ioBroker adapter to control FS20, Max!, HMS and other devices via [CUL](http://b
2626
This command uses the CUL Library of this adapter to send the command to a FS20 Device.
2727

2828
## Changelog
29+
### 1.1.1 (2020-02-10)
30+
* (MK-2001) Sending of FS20 cmdRAW possible or via sendTo as described in the readme
31+
2932
### 1.1.0 (2020-01-04)
3033
* (foxriver76) removed usage of adapter.objects
3134

@@ -58,4 +61,4 @@ This command uses the CUL Library of this adapter to send the command to a FS20
5861

5962
## License
6063

61-
[Licensed under GPLv2](LICENSE) Copyright (c) 2014-2017 hobbyquaker
64+
[Licensed under GPLv2](LICENSE) Copyright (c) 2014-2020 hobbyquaker

0 commit comments

Comments
 (0)