2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-04-21 07:56:03 +00:00

73_AutoShuttersControl: fix window close fn then Mode_Up off

git-svn-id: https://svn.fhem.de/fhem/trunk@20450 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
LeonGaultier 2019-11-04 07:21:11 +00:00
parent 4229003162
commit 5f37e301b2
2 changed files with 4 additions and 5 deletions

View File

@ -1,5 +1,6 @@
# Add changes at the top of the list. Keep it in ASCII, and 80-char wide. # 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. # Do not insert empty lines here, update check depends on it.
- bugfix: 73_AutoShuttersControl: fix window close fn then Mode_Up off
- change: 93_DbLog: change SQL-Statement for SVG delta-h and delta-d plots, - change: 93_DbLog: change SQL-Statement for SVG delta-h and delta-d plots,
Forum: 65860.msg982171.html#msg982171 Forum: 65860.msg982171.html#msg982171
- update: 98_MSwitch: New Version 2.63 / add usesetextensions for dummymode - update: 98_MSwitch: New Version 2.63 / add usesetextensions for dummymode

View File

@ -1007,13 +1007,11 @@ sub EventProcessingWindowRec($@) {
} }
} }
elsif ( elsif (
$shutters->getModeUp ne 'absent' $shutters->getModeDown ne 'absent'
and $shutters->getModeUp ne 'off' and $shutters->getModeDown ne 'off'
and ( not $shutters->getIsDay and ( not $shutters->getIsDay
or $homemode eq 'asleep' or $homemode eq 'asleep'
or $homemode eq 'gotosleep' ) or $homemode eq 'gotosleep' )
and $shutters->getModeDown ne 'absent'
and $shutters->getModeDown ne 'off'
and $ascDev->getAutoShuttersControlEvening eq 'on' and $ascDev->getAutoShuttersControlEvening eq 'on'
) )
{ {
@ -6660,7 +6658,7 @@ sub getblockAscDrivesAfterManual {
], ],
"release_status": "under develop", "release_status": "under develop",
"license": "GPL_2", "license": "GPL_2",
"version": "v0.6.33", "version": "v0.6.34",
"author": [ "author": [
"Marko Oldenburg <leongaultier@gmail.com>" "Marko Oldenburg <leongaultier@gmail.com>"
], ],