2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

49_SSCam: contrib 7.4.0

git-svn-id: https://svn.fhem.de/fhem/trunk@17820 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
nasseeder1 2018-11-22 20:38:15 +00:00
parent 5062bece6c
commit bfe9108b5f
2 changed files with 16 additions and 14702 deletions

View File

@ -45,7 +45,7 @@ use HttpUtils;
# Versions History intern # Versions History intern
our %SSCam_vNotesIntern = ( our %SSCam_vNotesIntern = (
"7.4.0" => "20.11.2018 new set command \"createReadingsGroup\" ", "7.4.0" => "20.11.2018 new set command \"createReadingsGroup\", versionNotes can process lists like \"2,6\" ",
"7.3.3" => "18.11.2018 change rights decsption in commandRef ", "7.3.3" => "18.11.2018 change rights decsption in commandRef ",
"7.3.2" => "12.11.2018 fix Warning in line 4954, set COMPATIBILITY to 8.2.2 ", "7.3.2" => "12.11.2018 fix Warning in line 4954, set COMPATIBILITY to 8.2.2 ",
"7.3.1" => "31.10.2018 fix connection lost failure if several SSCamSTRM devices are defined and updated by longpoll from same parent device ", "7.3.1" => "31.10.2018 fix connection lost failure if several SSCamSTRM devices are defined and updated by longpoll from same parent device ",
@ -94,7 +94,7 @@ our %SSCam_vNotesIntern = (
# Versions History extern # Versions History extern
our %SSCam_vNotesExtern = ( our %SSCam_vNotesExtern = (
"7.4.0" => "20.11.2018 new command \"createReadingsGroup\". By this command a ReadingsGroup with a name of your choice (or use a default name) can be created. ", "7.4.0" => "20.11.2018 new command \"createReadingsGroup\". By this command a ReadingsGroup with a name of your choice (or use the default name) can be created. ",
"7.3.2" => "12.11.2018 fix Warning if 'livestreamprefix' is set to DEF, COMPATIBILITY set to 8.2.2 ", "7.3.2" => "12.11.2018 fix Warning if 'livestreamprefix' is set to DEF, COMPATIBILITY set to 8.2.2 ",
"7.3.0" => "28.10.2018 In attribute \"livestreamprefix\" can now \"DEF\" be specified to overwrite livestream address by specification from device definition ", "7.3.0" => "28.10.2018 In attribute \"livestreamprefix\" can now \"DEF\" be specified to overwrite livestream address by specification from device definition ",
"7.2.1" => "23.10.2018 COMPATIBILITY changed to 8.2.1 ", "7.2.1" => "23.10.2018 COMPATIBILITY changed to 8.2.1 ",
@ -1269,10 +1269,13 @@ sub SSCam_Get($@) {
$ret .= "<tbody>"; $ret .= "<tbody>";
$ret .= "<tr class=\"even\">"; $ret .= "<tr class=\"even\">";
if($arg && $arg =~ /[\d]+/) { if($arg && $arg =~ /[\d]+/) {
if(AttrVal("global","language","EN") eq "DE") { my @hints = split(",",$arg);
%hs = ( $arg => $SSCam_vHintsExt_de{$arg} ); foreach (@hints) {
} else { if(AttrVal("global","language","EN") eq "DE") {
%hs = ( $arg => $SSCam_vHintsExt_en{$arg} ); $hs{$_} = $SSCam_vHintsExt_de{$_};
} else {
$hs{$_} = $SSCam_vHintsExt_en{$_};
}
} }
} else { } else {
if(AttrVal("global","language","EN") eq "DE") { if(AttrVal("global","language","EN") eq "DE") {
@ -7686,7 +7689,9 @@ attr &lt;name&gt; genericStrmHtmlTag &lt;video $HTMLATTR controls autoplay&gt;
<a name="ptzPanel_iconPath"></a> <a name="ptzPanel_iconPath"></a>
<li><b>ptzPanel_iconPath</b><br> <li><b>ptzPanel_iconPath</b><br>
Path for icons used in PTZ-control panel, default is "www/images/sscam". Path for icons used in PTZ-control panel, default is "www/images/sscam".
The attribute value will be used for all icon-files except *.svg. </li><br> The attribute value will be used for all icon-files except *.svg. <br>
For further information execute "get &lt;name&gt; versionNotes 2,6".
</li><br>
<a name="ptzPanel_iconPrefix"></a> <a name="ptzPanel_iconPrefix"></a>
<li><b>ptzPanel_iconPrefix</b><br> <li><b>ptzPanel_iconPrefix</b><br>
@ -9042,7 +9047,9 @@ attr &lt;name&gt; genericStrmHtmlTag &lt;video $HTMLATTR controls autoplay&gt;
<a name="ptzPanel_iconPath"></a> <a name="ptzPanel_iconPath"></a>
<li><b>ptzPanel_iconPath</b><br> <li><b>ptzPanel_iconPath</b><br>
Pfad für Icons im PTZ-Steuerungspaneel, default ist "www/images/sscam". Pfad für Icons im PTZ-Steuerungspaneel, default ist "www/images/sscam".
Der Attribut-Wert wird für alle Icon-Dateien außer *.svg verwendet. </li><br> Der Attribut-Wert wird für alle Icon-Dateien außer *.svg verwendet. <br>
Für weitere Information bitte "get &lt;name&gt; versionNotes 2,6" ausführen.
</li><br>
<a name="ptzPanel_iconPrefix"></a> <a name="ptzPanel_iconPrefix"></a>
<li><b>ptzPanel_iconPrefix</b><br> <li><b>ptzPanel_iconPrefix</b><br>

File diff suppressed because it is too large Load Diff