2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-03-03 04:36:36 +00:00

fhem.pl: Release 6.3

git-svn-id: https://svn.fhem.de/fhem/trunk@28437 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
rudolfkoenig 2024-01-28 09:11:36 +00:00
parent 4819fc337f
commit fa13612081
5 changed files with 16 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.2 released
- 2024-01-28 (6.2)
- feature: 76_SolarForecast: Setter writeHistory replaced by operatingMemory
save, backup and recover in-memory operating data
- feature: 76_SolarForecast: generate plant backup files

View File

@ -1,7 +1,7 @@
# $Id$
VERS=6.2
DATE=2023-01-14
VERS=6.3
DATE=2024-01-28
# used for nightly build
DATEN=$(shell date +"%Y-%m-%d")

View File

@ -55,3 +55,6 @@ enable the old feature.
- 2023-01-14 (6.2)
- MQTT2_SERVER: respectRetain is 0 (i.e. false) by default from now on.
- 2024-01-28 (6.3)
- no known changes

View File

@ -233,10 +233,10 @@
<a name="Download"></a>
<h3>Download</h3>
<ul>
Last released version: (as of 2023-01-14):
<a href="https://fhem.de/fhem-6.2.tar.gz">fhem-6.2.tar.gz</a>,
<a href="https://fhem.de/fhem-6.2.zip">fhem-6.2.zip</a>,
<a href="https://fhem.de/fhem-6.2.deb">fhem-6.2.deb</a>,
Last released version: (as of 2024-01-28):
<a href="https://fhem.de/fhem-6.3.tar.gz">fhem-6.3.tar.gz</a>,
<a href="https://fhem.de/fhem-6.3.zip">fhem-6.3.zip</a>,
<a href="https://fhem.de/fhem-6.3.deb">fhem-6.3.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>
@ -263,7 +263,7 @@
<ul>
<h4>Debian/Ubuntu/Raspbian</h4>
<ul>
<li>Install <a href="https://fhem.de/fhem-6.2.deb">this</a> package.
<li>Install <a href="https://fhem.de/fhem-6.3.deb">this</a> package.
For a better integration check out <a
href="https://debian.fhem.de/">debian.fhem.de</a>
</ul>
@ -274,7 +274,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="https://fhem.de/fhem-6.2.tar.gz">
<li>Download the <a href="https://fhem.de/fhem-6.3.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

@ -314,7 +314,7 @@ my $readytimeout = ($^O eq "MSWin32") ? 0.1 : 5.0;
$init_done = 0;
$lastDefChange = 0;
$featurelevel = 6.2; # see also GlobalAttr
$featurelevel = 6.3; # see also GlobalAttr
$numCPUs = `grep -c ^processor /proc/cpuinfo 2>&1` if($^O eq "linux");
$numCPUs = ($numCPUs && $numCPUs =~ m/(\d+)/ ? $1 : 1);
@ -2925,7 +2925,7 @@ GlobalAttr($$$$)
if($type eq "del") {
my %noDel = ( modpath=>1, verbose=>1, logfile=>1, configfile=>1, encoding=>1 );
return "The global attribute $name cannot be deleted" if($noDel{$name});
$featurelevel = 6.2 if($name eq "featurelevel");
$featurelevel = 6.3 if($name eq "featurelevel");
$haveInet6 = 0 if($name eq "useInet6"); # IPv6
delete($defs{global}{ignoreRegexpObj}) if($name eq "ignoreRegexp");
return undef;