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

49_SSCAM: add blank line in set runView

git-svn-id: https://svn.fhem.de/fhem/trunk@27049 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2023-01-14 08:46:46 +00:00
parent 0cb347469b
commit ec4dc198b7
2 changed files with 5 additions and 3 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.
- change: 49_SSCAM: add blank line in set runView
- feature: 93_DbRep: new averageValue option writeToDBSingleStart - feature: 93_DbRep: new averageValue option writeToDBSingleStart
- bugfix: 72_FRITZBOX: Fehlerbereinigungen u.a. "," Reading - bugfix: 72_FRITZBOX: Fehlerbereinigungen u.a. "," Reading
- change: 49_SSCamSTRM: change behavior of hideDisplayName, - change: 49_SSCamSTRM: change behavior of hideDisplayName,

View File

@ -3,7 +3,7 @@
######################################################################################################################### #########################################################################################################################
# 49_SSCam.pm # 49_SSCam.pm
# #
# (c) 2015-2022 by Heiko Maaz # (c) 2015-2023 by Heiko Maaz
# e-mail: Heiko dot Maaz at t-online dot de # e-mail: Heiko dot Maaz at t-online dot de
# #
# This Module can be used to operate Cameras defined in Synology Surveillance Station 7.0 or higher. # This Module can be used to operate Cameras defined in Synology Surveillance Station 7.0 or higher.
@ -185,6 +185,7 @@ BEGIN {
# Versions History intern # Versions History intern
my %vNotesIntern = ( my %vNotesIntern = (
"9.10.8" => "14.01.2023 add blank line in setter runView ",
"9.10.7" => "02.08.2022 allow placeholders #CAM, #DATE, #TIME, #FILE, #CTIME (also for Email) ", "9.10.7" => "02.08.2022 allow placeholders #CAM, #DATE, #TIME, #FILE, #CTIME (also for Email) ",
"9.10.6" => "18.07.2022 textField-long property set for recChatTxt, recEmailTxt, recTelegramTxt, snapChatTxt, snapEmailTxt, snapTelegramTxt, ". "9.10.6" => "18.07.2022 textField-long property set for recChatTxt, recEmailTxt, recTelegramTxt, snapChatTxt, snapEmailTxt, snapTelegramTxt, ".
"set 'part1type' to default => text/html instead of text/plain", "set 'part1type' to default => text/html instead of text/plain",
@ -1593,7 +1594,7 @@ sub Set {
"enable:noArg ". "enable:noArg ".
"disable:noArg ". "disable:noArg ".
"optimizeParams ". "optimizeParams ".
"runView:live_fw".$hlslfw."live_link,live_open,lastrec_fw,lastrec_fw_MJPEG,lastrec_fw_MPEG4/H.264,lastrec_open,lastsnap_fw ". "runView:#,live_fw".$hlslfw."live_link,live_open,lastrec_fw,lastrec_fw_MJPEG,lastrec_fw_MPEG4/H.264,lastrec_open,lastsnap_fw ".
"stopView:noArg ". "stopView:noArg ".
(IsCapPTZObjTrack($hash) ? "startTracking:noArg " : ""). (IsCapPTZObjTrack($hash) ? "startTracking:noArg " : "").
(IsCapPTZObjTrack($hash) ? "stopTracking:noArg " : ""). (IsCapPTZObjTrack($hash) ? "stopTracking:noArg " : "").
@ -2566,7 +2567,7 @@ sub _setrunView { ## no critic "not used"
my $prop = $paref->{prop}; my $prop = $paref->{prop};
my $prop1 = $paref->{prop1}; my $prop1 = $paref->{prop1};
return if(!IsModelCam($hash)); return if(!IsModelCam($hash) || !$prop);
my $spec = join " ", @$aref; my $spec = join " ", @$aref;
if($spec =~ /STRM:/x) { if($spec =~ /STRM:/x) {