mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-05-04 22:19:38 +00:00
93_DbLog: 3.12.1, crash if SVG called (forum:#91285)
git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@17374 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
767de2e1ba
commit
c122fb0345
1
CHANGED
1
CHANGED
@ -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: 93_DbLog: 3.12.1, crash if SVG called (forum:#91285)
|
||||||
- change: 32_withings: API endpoint changed back to Withings servers
|
- change: 32_withings: API endpoint changed back to Withings servers
|
||||||
- bugfix: 93_DbLog: 3.12.0, SVG-select corrected
|
- bugfix: 93_DbLog: 3.12.0, SVG-select corrected
|
||||||
(forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640)
|
(forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640)
|
||||||
|
@ -16,6 +16,7 @@
|
|||||||
############################################################################################################################################
|
############################################################################################################################################
|
||||||
# Versions History done by DS_Starter & DeeSPe:
|
# Versions History done by DS_Starter & DeeSPe:
|
||||||
#
|
#
|
||||||
|
# 3.12.1 19.09.2018 use Time::Local (forum:#91285)
|
||||||
# 3.12.0 04.09.2018 corrected SVG-select (https://forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640)
|
# 3.12.0 04.09.2018 corrected SVG-select (https://forum.fhem.de/index.php/topic,65860.msg815640.html#msg815640)
|
||||||
# 3.11.0 02.09.2018 reduceLog, reduceLogNbl - optional "days newer than" part added
|
# 3.11.0 02.09.2018 reduceLog, reduceLogNbl - optional "days newer than" part added
|
||||||
# 3.10.10 05.08.2018 commandref revised reducelogNbl
|
# 3.10.10 05.08.2018 commandref revised reducelogNbl
|
||||||
@ -205,10 +206,11 @@ eval "use DBI;1" or my $DbLogMMDBI = "DBI";
|
|||||||
use Data::Dumper;
|
use Data::Dumper;
|
||||||
use Blocking;
|
use Blocking;
|
||||||
use Time::HiRes qw(gettimeofday tv_interval);
|
use Time::HiRes qw(gettimeofday tv_interval);
|
||||||
|
use Time::Local;
|
||||||
use Encode qw(encode_utf8);
|
use Encode qw(encode_utf8);
|
||||||
no if $] >= 5.017011, warnings => 'experimental::smartmatch';
|
no if $] >= 5.017011, warnings => 'experimental::smartmatch';
|
||||||
|
|
||||||
my $DbLogVersion = "3.12.0";
|
my $DbLogVersion = "3.12.1";
|
||||||
|
|
||||||
my %columns = ("DEVICE" => 64,
|
my %columns = ("DEVICE" => 64,
|
||||||
"TYPE" => 64,
|
"TYPE" => 64,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user