2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-01-31 12:49:34 +00:00

fhem.pl: default for featurelevel set to 6.0 (Forum #106528)

git-svn-id: https://svn.fhem.de/fhem/trunk@21056 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2020-01-26 13:01:53 +00:00
parent 443145e6d0
commit f497147493
4 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,8 @@
# 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.
- feature: 6.0 released
- 2020-01-26 (6.0)
- new: MSwitch_Wizard: preparation for Mswitch V3.0 - new: MSwitch_Wizard: preparation for Mswitch V3.0
- change: 93_DbLog: default Event parsing changed again, Forum: #106769 - change: 93_DbLog: default Event parsing changed again, Forum: #106769
- change: 93_DbRep: adjust behavior of writeToDB - write value at every begin - change: 93_DbRep: adjust behavior of writeToDB - write value at every begin

View File

@ -1,7 +1,7 @@
# $Id$ # $Id$
VERS=5.9 VERS=6.0
DATE=2018-10-07 DATE=2020-01-26
# used for nightly build # used for nightly build
DATEN=$(shell date +"%Y-%m-%d") DATEN=$(shell date +"%Y-%m-%d")

View File

@ -33,6 +33,7 @@ enable the old feature.
FLORRPLAN users FLORRPLAN users
- the default fhem.cfg does not contain a telnet definition - the default fhem.cfg does not contain a telnet definition
- XXXX-XX-XX (6.0) - 2020-01-26 (6.0)
- attribute names can only consist of the character A-Za-z/\d_\.- - attribute names can only consist of the character A-Za-z/\d_\.-
- the length of attribute and reading names must be 64 or less - 98_structure: propagateAttr defaults to empty and not to all => setting
attributes on structure wont be set automatically on the members.

View File

@ -307,7 +307,7 @@ my %fuuidHash; # for duplicate checking
$init_done = 0; $init_done = 0;
$lastDefChange = 0; $lastDefChange = 0;
$readytimeout = ($^O eq "MSWin32") ? 0.1 : 5.0; $readytimeout = ($^O eq "MSWin32") ? 0.1 : 5.0;
$featurelevel = 5.9; # see also GlobalAttr $featurelevel = 6.0; # see also GlobalAttr
$modules{Global}{ORDER} = -1; $modules{Global}{ORDER} = -1;
@ -2751,7 +2751,7 @@ GlobalAttr($$$$)
if($type eq "del") { if($type eq "del") {
my %noDel = ( modpath=>1, verbose=>1, logfile=>1, configfile=>1 ); my %noDel = ( modpath=>1, verbose=>1, logfile=>1, configfile=>1 );
return "The global attribute $name cannot be deleted" if($noDel{$name}); return "The global attribute $name cannot be deleted" if($noDel{$name});
$featurelevel = 5.9 if($name eq "featurelevel"); $featurelevel = 6.0 if($name eq "featurelevel");
$haveInet6 = 0 if($name eq "useInet6"); # IPv6 $haveInet6 = 0 if($name eq "useInet6"); # IPv6
delete($defs{global}{ignoreRegexpObj}) if($name eq "ignoreRegexp"); delete($defs{global}{ignoreRegexpObj}) if($name eq "ignoreRegexp");
return undef; return undef;