Skip to content

Commit

Permalink
### 0.1.9 (2020-01-12)
Browse files Browse the repository at this point in the history
* (Garfonso) Added "white" to rgb
  • Loading branch information
GermanBluefox committed Jan 12, 2020
1 parent a71f824 commit d5d01c9
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 4 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 @@
MIT License

Copyright (c) 2018 bluefox <[email protected]>
Copyright (c) 2018-2020 bluefox <[email protected]>

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
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,9 @@ Following devices can be detected:


## Changelog
### 0.1.9 (2020-01-12)
* (Garfonso) Added "white" to rgb

### 0.1.7 (2019-08-14)
* (bluefox) Add default roles

Expand All @@ -120,6 +123,6 @@ Following devices can be detected:

## License

Copyright (c) 2018-2019 bluefox <[email protected]>
Copyright (c) 2018-2020 Bluefox <[email protected]>

MIT License
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "iobroker.type-detector",
"version": "0.1.8",
"version": "0.1.9",
"description": "Detects devices in ioBroker for Material, Google home, Homekit, ...",
"author": {
"name": "bluefox",
Expand All @@ -19,7 +19,7 @@
"dependencies": {},
"devDependencies": {
"gulp": "^4.0.2",
"mocha": "^6.2.0",
"mocha": "^7.0.0",
"chai": "^4.2.0"
},
"bugs": {
Expand Down

0 comments on commit d5d01c9

Please sign in to comment.