-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* (bluefox) Extend the table JSON Config with the encryption possibility * (bluefox) Do not read historical data if instance is not active
- Loading branch information
1 parent
601872e
commit 3b81759
Showing
8 changed files
with
61 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "6.17.5", | ||
"version": "6.17.6", | ||
"packages": [ | ||
"packages/*" | ||
], | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "iobroker.admin", | ||
"description": "The adapter opens a webserver for the ioBroker admin UI.", | ||
"version": "6.17.5", | ||
"version": "6.17.6", | ||
"contributors": [ | ||
"bluefox <[email protected]>", | ||
"apollon77", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,41 @@ | ||
{ | ||
"name": "src-rx", | ||
"private": true, | ||
"homepage": ".", | ||
"scripts": { | ||
"start": "set DANGEROUSLY_DISABLE_HOST_CHECK=true&& craco start", | ||
"old-start": "react-scripts start", | ||
"lint": "eslint --fix --ext .js,.jsx,.tsx src", | ||
"build": "craco build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject", | ||
"check-ts": "tsc --noEmit --checkJS false", | ||
"tsc": "tsc --project tsconfig.build.json" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
"name": "src-rx", | ||
"private": true, | ||
"homepage": ".", | ||
"scripts": { | ||
"start": "set DANGEROUSLY_DISABLE_HOST_CHECK=true&& craco start", | ||
"old-start": "react-scripts start", | ||
"lint": "eslint --fix --ext .js,.jsx,.tsx src", | ||
"build": "craco build", | ||
"test": "react-scripts test", | ||
"eject": "react-scripts eject", | ||
"check-ts": "tsc --noEmit --checkJS false", | ||
"tsc": "tsc --project tsconfig.build.json" | ||
}, | ||
"eslintConfig": { | ||
"extends": "react-app" | ||
}, | ||
"browserslist": [ | ||
">0.2%", | ||
"not dead", | ||
"not op_mini all" | ||
], | ||
"dependencies": { | ||
"@iobroker/json-config": "file:../../jsonConfig" | ||
}, | ||
"proxy": "http://127.0.0.1:8081", | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-proposal-decorators", | ||
{ | ||
"legacy": true | ||
} | ||
], | ||
"dependencies": { | ||
"@iobroker/json-config": "file:../../jsonConfig" | ||
}, | ||
"proxy": "http://127.0.0.1:8081", | ||
"plugins": [ | ||
[ | ||
"@babel/plugin-proposal-decorators", | ||
{ | ||
"legacy": true | ||
} | ||
], | ||
[ | ||
"@babel/plugin-proposal-class-properties", | ||
{ | ||
"loose": true | ||
} | ||
] | ||
], | ||
"version": "6.17.5" | ||
[ | ||
"@babel/plugin-proposal-class-properties", | ||
{ | ||
"loose": true | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters