diff --git a/fhem/CHANGED b/fhem/CHANGED index 5b0a9edff..53effb66e 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # Do not insert empty lines here, update check depends on it. + - bugfix: 73_AutoShuttersControl: change shading reading message - feature: 76_SMAPortal: upgrade to V3. This version is not compatible to prior V2. Attributes and Readings are changed. !!! Please read new commandref !!! diff --git a/fhem/FHEM/73_AutoShuttersControl.pm b/fhem/FHEM/73_AutoShuttersControl.pm index 86475ea4b..637ea2a45 100644 --- a/fhem/FHEM/73_AutoShuttersControl.pm +++ b/fhem/FHEM/73_AutoShuttersControl.pm @@ -1272,7 +1272,7 @@ sub Initialize { ], "release_status": "testing", "license": "GPL_2", - "version": "v0.10", + "version": "v0.10.1", "author": [ "Marko Oldenburg " ], diff --git a/fhem/lib/FHEM/Automation/ShuttersControl.pm b/fhem/lib/FHEM/Automation/ShuttersControl.pm index 87e7377dc..8fcb6d446 100644 --- a/fhem/lib/FHEM/Automation/ShuttersControl.pm +++ b/fhem/lib/FHEM/Automation/ShuttersControl.pm @@ -4963,12 +4963,6 @@ sub _CheckShuttersConditionsForShadingFn { my $warnMessage; my $infoMessage; - $infoMessage .= ( - $shutters->getShadingMode eq 'off' - && $ascDev->getAutoShuttersControlShading eq 'on' - ? ' global shading active but ASC_Shading_Mode attribut is not set or off' - : '' - ); $infoMessage .= ( $shutters->getShadingMode ne 'off' @@ -4978,6 +4972,13 @@ sub _CheckShuttersConditionsForShadingFn { : '' ); + $warnMessage .= ( + $shutters->getShadingMode eq 'off' + && $ascDev->getAutoShuttersControlShading eq 'on' + ? ' global shading active but ASC_Shading_Mode attribut is not set or off' + : '' + ); + $errorMessage .= ( $shutters->getShadingMode ne 'off' && $ascDev->getAutoShuttersControlShading ne 'on'