From 839baf528e3b7beb72ebb7706e7e460cdbe0beb2 Mon Sep 17 00:00:00 2001 From: pizmus <> Date: Mon, 21 Oct 2019 19:55:19 +0000 Subject: [PATCH] 70_SolarEdgeAPI: show SolarEdge logo to comply with API requirements - update git-svn-id: https://svn.fhem.de/fhem/trunk@20392 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/70_SolarEdgeAPI.pm | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/fhem/CHANGED b/fhem/CHANGED index a28ff9405..6222a479e 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: 70_SolarEdgeAPI: increment version number for previous change - change: 70_SolarEdgeAPI: show SolarEdge logo to comply with API requirements - update: 98_MSwitch: New Version 2.6a (Forum: https://forum.fhem.de/index.php/topic,86199.msg984087.html#msg984087) diff --git a/fhem/FHEM/70_SolarEdgeAPI.pm b/fhem/FHEM/70_SolarEdgeAPI.pm index ee0703a9f..4dacf1b50 100644 --- a/fhem/FHEM/70_SolarEdgeAPI.pm +++ b/fhem/FHEM/70_SolarEdgeAPI.pm @@ -100,13 +100,15 @@ eval "use JSON;1" or $solarEdgeAPI_missingModul .= "JSON "; # If the new attributes are not set by the user, the default values # are chosen so that behavior is same as in previous versions. # Restart periodic timer during _Define instead of _Notify. +# +# 1.3.0 show SolarEdge logo to comply with requirement from API documentation # ############################################################################### sub SolarEdgeAPI_SetVersion($) { my ($hash) = @_; - $hash->{VERSION} = "1.2.0"; + $hash->{VERSION} = "1.3.0"; } ###############################################################################