node-red-contrib-sun-position
Advanced tools
Comparing version 0.5.1-beta-0 to 0.5.1-beta-2
@@ -13,2 +13,5 @@ # node-red-contrib-sun-position | ||
- blind control | ||
- fix for #66 if the blind not uses values between 0 and 1 | ||
- fix for #67 mixed earliest and latest settings | ||
- enhanced output of the rules | ||
- change logic of rule execution: From rules within Until rules will now considered. | ||
@@ -15,0 +18,0 @@ - change should have no affect if rule setup is equal to the examples, that time restricted rules separated in first only until and afterwards only from rules |
@@ -28,4 +28,5 @@ { | ||
"ruleTimeNone": "N/A", | ||
"ruleTimeMax": "späteste (max)", | ||
"ruleTimeMin": "früheste (min)", | ||
"ruleTimeMax": "spätestens (max)", | ||
"ruleTimeMin": "frühestens (min)", | ||
"ruleDescription": "Beschreibung", | ||
"ruleBlindLevel": "Rollladenposition", | ||
@@ -32,0 +33,0 @@ "ruleLevelAbs": "↕ Absolut", |
@@ -28,4 +28,5 @@ { | ||
"ruleTimeNone": "N/A", | ||
"ruleTimeMax": "latest (max)", | ||
"ruleTimeMin": "earliest (min)", | ||
"ruleTimeMax": "no later than (max)", | ||
"ruleTimeMin": "at the earliest (min)", | ||
"ruleDescription": "Description", | ||
"ruleBlindLevel": "blind position", | ||
@@ -32,0 +33,0 @@ "ruleLevelAbs": "↕ absolute", |
@@ -1055,3 +1055,5 @@ /******************************************** | ||
if (!posConfig) { | ||
res.status(500).send(JSON.stringify({})); | ||
res.status(500).send(JSON.stringify({ | ||
error: 'can not find position config node "' +req.query.config+'" '+String(posConfig) | ||
})); | ||
return; | ||
@@ -1058,0 +1060,0 @@ } |
@@ -911,3 +911,3 @@ /************************************************************************/ | ||
function getBackendData(result, data) { // eslint-disable-line no-unused-vars | ||
// console.log('[IN getBackendData] ',data); // eslint-disable-line | ||
console.log('[IN getBackendData] ',data); // eslint-disable-line | ||
let res = ''; | ||
@@ -923,3 +923,3 @@ if (!data || data.type === 'none' || data.type === '' || data.type === 'jsonata' || data.type === 'json' || data.type === 'bin') { | ||
} else if (data.type === 'PlT') { | ||
res = 'msg.payload'; | ||
res = 'msg.payload if msg.topic contains "' + data.value + '"'; | ||
} else if (data.type === 'msgTs') { | ||
@@ -926,0 +926,0 @@ res = 'msg.ts'; |
{ | ||
"name": "node-red-contrib-sun-position", | ||
"version": "0.5.1-beta-0", | ||
"version": "0.5.1-beta-2", | ||
"description": "NodeRED nodes to get sun and moon position", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
1142287
8763