77_UWZ: Commandref Warn Type 7 and 6 exchanged, new method for no experimental Warnings

git-svn-id: https://svn.fhem.de/fhem/trunk@11562 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
markooldenburg
2016-05-30 07:58:17 +00:00
parent ea751c37b7
commit b15df6a85f
2 changed files with 8 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
# 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: 77_UWZ: Commandref Warn Type 7 and 6 exchanged, new method for no
eperimental warnings
- feature: plex: play command now handles single media items, music albums
and playlists. playAlbum command removed. (by Risiko)
- added: 52_I2C_BH1750: modul for i2c BH1750 light sensor

View File

@@ -43,7 +43,7 @@ package main;
use strict;
use feature qw/say switch/;
use warnings;
#no warnings 'experimental::lexical_subs','experimental::smartmatch';
no if $] >= 5.017011, warnings => 'experimental::lexical_subs','experimental::smartmatch';
my $missingModul;
eval "use LWP::UserAgent;1" or $missingModul .= "LWP::UserAgent ";
@@ -60,7 +60,7 @@ use vars qw($readingFnAttributes);
use vars qw(%defs);
my $MODUL = "UWZ";
my $version = "1.0.0";
my $version = "1.0.1";
my $countrycode = "DE";
my $plz = "77777";
@@ -939,8 +939,8 @@ sub UWZAsHtmlKarteLand($$) {
<li><b>3</b> - snow</li>
<li><b>4</b> - rain</li>
<li><b>5</b> - frost</li>
<li><b>6</b> - thunderstorm</li>
<li><b>7</b> - forest fire</li>
<li><b>6</b> - forest fire</li>
<li><b>7</b> - thunderstorm</li>
<li><b>8</b> - glaze</li>
<li><b>9</b> - heat</li>
<li><b>10</b> - freezing rain</li>
@@ -1175,8 +1175,8 @@ sub UWZAsHtmlKarteLand($$) {
<li><b>3</b> - Schneefall</li>
<li><b>4</b> - Regen</li>
<li><b>5</b> - Extremfrost</li>
<li><b>6</b> - Gewitter</li>
<li><b>7</b> - Waldbrandgefahr</li>
<li><b>6</b> - Waldbrandgefahr</li>
<li><b>7</b> - Gewitter</li>
<li><b>8</b> - Glätte</li>
<li><b>9</b> - Hitze</li>
<li><b>10</b> - Glatteisregen</li>