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

FULLY: Fixed command set url

git-svn-id: https://svn.fhem.de/fhem/trunk@18281 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
zap 2019-01-16 15:38:22 +00:00
parent 4c28802d28
commit f4d82fd8b8
2 changed files with 12 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.
# Do not insert empty lines here, update check depends on it.
- bugfix: 89_FULLY: fixed command set url
- bugfix: 98_livetracking: fixed HTTP return
- bugfix: 49_SSCam: fix event generation after snapshots created
- bugfix: 59_Weather: fix reading double value

View File

@ -1,6 +1,6 @@
##############################################################################
#
# 89_FULLY.pm 1.0
# 89_FULLY.pm 1.1
#
# $Id$
#
@ -36,7 +36,7 @@ sub FULLY_ProcessDeviceInfo ($$);
sub FULLY_UpdateReadings ($$);
sub FULLY_Ping ($$);
my $FULLY_VERSION = "1.0";
my $FULLY_VERSION = "1.1";
# Timeout for Fully requests
my $FULLY_TIMEOUT = 5;
@ -362,7 +362,13 @@ sub FULLY_Set ($@)
}
elsif ($opt eq 'url') {
my $url = shift @$a;
push (@c, defined ($url) ? "loadURL" : "loadStartURL");
if (defined ($url)) {
push (@c, "loadURL");
push (@p, { "url" => "$url" });
}
else {
push (@c, "loadStartURL");
}
}
elsif ($opt eq 'setStringSetting' || $opt eq 'setBooleanSetting') {
return "FULLY: Command $opt only available in expert mode" if ($expert == 0);
@ -769,8 +775,8 @@ sub FULLY_Ping ($$)
<h3>FULLY</h3>
<ul>
Module for controlling of Fully browser on Android tablets. Requires a Plus license
of Fully browser app. Remote device management must be enabled in Fully app. Requires
Fully app version 1.27 or later.
of Fully browser app. Remote device management and remote admin in local network
must be enabled in Fully app. Requires Fully app version 1.27 or later.
</br></br>
<a name="HMCCUdefine"></a>