2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 16:56:54 +00:00

CHANGED: preparing 6.1

git-svn-id: https://svn.fhem.de/fhem/trunk@25193 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2021-11-07 13:29:44 +00:00
parent c5a70e3e36
commit f8a63a3082
5 changed files with 13 additions and 10 deletions

View File

@ -1,5 +1,8 @@
# 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.
- feature: 6.1 released
- 2021-11-07 (6.1)
- change: 20_OWFS: Move to deprecated
- change: 21_OWTEMP: Move to deprecated
- change: 49_SSCam: set compability to SVS 8.2.10

View File

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

View File

@ -38,7 +38,7 @@ enable the old feature.
- 98_structure: propagateAttr defaults to empty and not to all => setting
attributes on structure wont be set automatically on the members.
- ????-??-?? (6.1)
- 2021-11-07 (6.1)
- 98_RandomTimer: evaluate state reading instead of STATE (Value()).
NOTE: In 6.0 version this can be forced by new attribute offState
- 96_allowed: the default for allowedIfAuthenticatedByMe is now 1 (relevant

View File

@ -228,10 +228,10 @@
<a name="Download"></a>
<h3>Download</h3>
<ul>
Last released version: (as of 2018-10-07):
<a href="http://fhem.de/fhem-5.9.tar.gz">fhem-5.9.tar.gz</a>,
<a href="http://fhem.de/fhem-5.9.zip">fhem-5.9.zip</a>,
<a href="http://fhem.de/fhem-5.9.deb">fhem-5.9.deb</a>,
Last released version: (as of 2021-11-07):
<a href="http://fhem.de/fhem-6.1.tar.gz">fhem-6.1.tar.gz</a>,
<a href="http://fhem.de/fhem-6.1.zip">fhem-6.1.zip</a>,
<a href="http://fhem.de/fhem-6.1.deb">fhem-6.1.deb</a>,
<br>
See the <a href="CHANGED">CHANGED</a> file for the change history or the
<a href="SVNLOG">svn log</a> for a more detailed log.<br><br>
@ -258,7 +258,7 @@
<ul>
<h4>Debian/Ubuntu/Raspbian</h4>
<ul>
<li>Install <a href="http://fhem.de/fhem-5.9.deb">this</a> package.
<li>Install <a href="http://fhem.de/fhem-6.1.deb">this</a> package.
For a better integration check out <a
href="http://debian.fhem.de/">debian.fhem.de</a>
</ul>
@ -269,7 +269,7 @@
Device::SerialPort perl module, install it with "sudo cpan
Device::SerialPort" or "apt-get install libdevice-serialport-perl".
</li>
<li>Download the <a href="http://fhem.de/fhem-5.9.tar.gz">
<li>Download the <a href="http://fhem.de/fhem-6.1.tar.gz">
.tar.gz</a> package, unpack it, and change to the unpacked directory.
<li>start FHEM directly from this directory (perl fhem.pl fhem.cfg).
</ul>

View File

@ -305,7 +305,7 @@ my $readytimeout = ($^O eq "MSWin32") ? 0.1 : 5.0;
$init_done = 0;
$lastDefChange = 0;
$featurelevel = 6.0; # see also GlobalAttr
$featurelevel = 6.1; # see also GlobalAttr
$numCPUs = `grep -c ^processor /proc/cpuinfo 2>&1` if($^O eq "linux");
$numCPUs = ($numCPUs && $numCPUs =~ m/(\d+)/ ? $1 : 1);