diff --git a/fhem/CHANGED b/fhem/CHANGED index 0ed6c1f20..376a2a5a6 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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. + - change: 93_DbLog: META.json data corrected - change: 93_DbRep: Ready for support of MariaDB Perl driver - change: 98_Installer: change Maintainer, change app version check - change: 93_DbRep: attribute allowDeletion deleted, multiCmd: use of diff --git a/fhem/FHEM/93_DbLog.pm b/fhem/FHEM/93_DbLog.pm index 410a0c1b3..ded1ec3e9 100644 --- a/fhem/FHEM/93_DbLog.pm +++ b/fhem/FHEM/93_DbLog.pm @@ -34,6 +34,8 @@ # # Leerzeichen entfernen: sed -i 's/[[:space:]]*$//' 93_DbLog.pm # +# META.json: https://perldoc.perl.org/CPAN::Meta::Spec +# ############################################################################################################################## package main; @@ -56,6 +58,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch'; # Version History intern by DS_Starter: my %DbLog_vNotesIntern = ( + "5.9.6" => "09.03.2024 change META.json ", "5.9.5" => "04.01.2024 change DbLog_configcheck to select only column width independent from column characteristic ", "5.9.4" => "03.01.2024 make EVENT writable ", "5.9.3" => "09.10.2023 new attribute colType ", @@ -12538,27 +12541,27 @@ attr SMA_Energymeter DbLogValueFn "prereqs": { "runtime": { "requires": { - "FHEM": 5.00918799, - "perl": 5.014, - "DBI": 0, - "Time::HiRes": 0, - "Time::Local": 0, - "HttpUtils": 0, - "Encode": 0, - "SubProcess": 0, - "Storable": 0 + "FHEM": "5.00918799", + "perl": "5.014", + "DBI": "0", + "Time::HiRes": "0", + "Time::Local": "0", + "HttpUtils": "0", + "Encode": "0", + "SubProcess": "0", + "Storable": "0" }, "recommends": { - "FHEM::Meta": 0, - "DateTime": 0, - "DateTime::Format::Strptime": 0, - "FHEM::Utility::CTZ": 0 + "FHEM::Meta": "0", + "DateTime": "0", + "DateTime::Format::Strptime": "0", + "FHEM::Utility::CTZ": "0" }, "suggests": { - "Data::Dumper": 0, - "DBD::Pg": 0, - "DBD::mysql": 0, - "DBD::SQLite": 0 + "Data::Dumper": "0", + "DBD::Pg": "0", + "DBD::mysql": "<5", + "DBD::SQLite": "0" } } }, diff --git a/fhem/contrib/DS_Starter/93_DbLog.pm b/fhem/contrib/DS_Starter/93_DbLog.pm index 78c3eb5fd..ac2720179 100644 --- a/fhem/contrib/DS_Starter/93_DbLog.pm +++ b/fhem/contrib/DS_Starter/93_DbLog.pm @@ -34,6 +34,8 @@ # # Leerzeichen entfernen: sed -i 's/[[:space:]]*$//' 93_DbLog.pm # +# META.json: https://perldoc.perl.org/CPAN::Meta::Spec +# ############################################################################################################################## package main; @@ -56,7 +58,7 @@ no if $] >= 5.017011, warnings => 'experimental::smartmatch'; # Version History intern by DS_Starter: my %DbLog_vNotesIntern = ( - "5.9.6" => "06.03.2024 adopt META.json Forum: https://forum.fhem.de/index.php?topic=137375.0 ", + "5.9.6" => "09.03.2024 change META.json ", "5.9.5" => "04.01.2024 change DbLog_configcheck to select only column width independent from column characteristic ", "5.9.4" => "03.01.2024 make EVENT writable ", "5.9.3" => "09.10.2023 new attribute colType ", @@ -12539,28 +12541,27 @@ attr SMA_Energymeter DbLogValueFn "prereqs": { "runtime": { "requires": { - "FHEM": 5.00918799, - "perl": 5.014, - "DBI": 0, - "Time::HiRes": 0, - "Time::Local": 0, - "HttpUtils": 0, - "Encode": 0, - "SubProcess": 0, - "Storable": 0 + "FHEM": "5.00918799", + "perl": "5.014", + "DBI": "0", + "Time::HiRes": "0", + "Time::Local": "0", + "HttpUtils": "0", + "Encode": "0", + "SubProcess": "0", + "Storable": "0" }, "recommends": { - "FHEM::Meta": 0, - "DateTime": 0, - "DateTime::Format::Strptime": 0, - "FHEM::Utility::CTZ": 0 + "FHEM::Meta": "0", + "DateTime": "0", + "DateTime::Format::Strptime": "0", + "FHEM::Utility::CTZ": "0" }, "suggests": { - "Data::Dumper": 0, - "DBD::Pg": 0, - "DBD::mysql": 4.050, - "DBD::MariaDB": 0, - "DBD::SQLite": 0 + "Data::Dumper": "0", + "DBD::Pg": "0", + "DBD::mysql": "<5", + "DBD::SQLite": "0" } } },