Skip to content

Commit

Permalink
### 1.2.0 (2020-04-08)
Browse files Browse the repository at this point in the history
* (bluefox) Support of compact mode
  • Loading branch information
GermanBluefox committed Apr 7, 2020
1 parent 32f7ab9 commit 294afc5
Show file tree
Hide file tree
Showing 7 changed files with 369 additions and 279 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/npmpublish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish

on:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
- run: npm i
- run: npm test

publish-npm:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: 10
registry-url: https://registry.npmjs.org/
- run: npm i
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2016-2018, hobbyquaker@ccu.io
Copyright (c) 2016-2020, hobbyquaker@ccu.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
![Logo](admin/artnet.png)
# ioBroker.artnet
===============

![Number of Installations](http://iobroker.live/badges/artnet-installed.svg) ![Number of Installations](http://iobroker.live/badges/artnet-stable.svg) [![NPM version](http://img.shields.io/npm/v/iobroker.artnet.svg)](https://www.npmjs.com/package/iobroker.artnet)
[![Downloads](https://img.shields.io/npm/dm/iobroker.artnet.svg)](https://www.npmjs.com/package/iobroker.artnet)
Expand All @@ -12,6 +11,9 @@ Control DMX512 Devices via an Art-Net node.
You can read more about art-net (here)[http://www.ulrichradig.de/home/index.php/avr/dmx-avr-artnetnode].

## Changelog
### 1.2.0 (2020-04-08)
* (bluefox) Support of compact mode

### 1.1.1 (2020-03-15)
* (Anzic23) Fixed delays between commands

Expand All @@ -36,3 +38,26 @@ You can read more about art-net (here)[http://www.ulrichradig.de/home/index.php/

### 0.0.1 (2014-10-19)
* (hobbyquaker) working on device management

## License
The MIT License (MIT)

Copyright (c) 2016-2020, hobbyquaker@ccu.io

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Loading

0 comments on commit 294afc5

Please sign in to comment.