2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 10:46:53 +00:00

fixed a bug related to set command remoteControl

git-svn-id: https://svn.fhem.de/fhem/trunk@4493 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
teevau 2013-12-28 21:39:12 +00:00
parent 70fdf0b58f
commit 0444e9125c
2 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,7 @@
# 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.
- SVN - SVN
- bugfix: VIERA: fixed bug related to set command remoteControl
- bugfix: ENIGMA2: improved compatibility for Fritzbox and old - bugfix: ENIGMA2: improved compatibility for Fritzbox and old
Webif versions Webif versions
- feature: readingsGroup: process events only if visible in browser, - feature: readingsGroup: process events only if visible in browser,

View File

@ -8,9 +8,12 @@
# written 2013 by Tobias Vaupel <fhem at 622 mbit dot de> # written 2013 by Tobias Vaupel <fhem at 622 mbit dot de>
# #
# #
# Version = 1.21 # Version = 1.22
# #
# Version History: # Version History:
# - 1.22 - 2013-12-28
# -- fixed set command remoteControl
#
# - 1.21 - 2013-08-19 # - 1.21 - 2013-08-19
# -- Log() deprecated/replaced by Log3() # -- Log() deprecated/replaced by Log3()
# -- GetStatus() is called after set volume/mute to update readings immediately # -- GetStatus() is called after set volume/mute to update readings immediately
@ -27,7 +30,7 @@
# -- New functions: sub VIERA_RClayout_TV(); sub VIERA_RCmakenotify($$); # -- New functions: sub VIERA_RClayout_TV(); sub VIERA_RCmakenotify($$);
# -- Updated VIERA_Initialize for remotecontrol # -- Updated VIERA_Initialize for remotecontrol
# #
# - 1.00 - yyy-mm-dd # - 1.00 - 2013-03-16
# -- First release # -- First release
# #
############################################################################## ##############################################################################
@ -216,7 +219,7 @@ sub VIERA_Set($@){
break; break;
} }
when("remoteControl"){ when("remotecontrol"){
if($state eq "?"){ if($state eq "?"){
$usage = "choose one of the states:\n"; $usage = "choose one of the states:\n";
foreach $key (sort keys %VIERA_remoteControl_args){ foreach $key (sort keys %VIERA_remoteControl_args){