mirror of
https://github.com/fhem/fhem-mirror.git
synced 2025-03-03 16:56:54 +00:00
update: Fixing update check (first try)
git-svn-id: https://svn.fhem.de/fhem/trunk@4070 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
parent
7e35d7dbd6
commit
ff4253ba79
@ -1,6 +1,6 @@
|
|||||||
# 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.
|
||||||
- 2013-xx-xx (SVN)
|
- SVN
|
||||||
- feature: endPlotNow attribute for SVG-Plots (ChrisD)
|
- feature: endPlotNow attribute for SVG-Plots (ChrisD)
|
||||||
- feature: new module 51_BBB_BMP180.pm added (betateilchen)
|
- feature: new module 51_BBB_BMP180.pm added (betateilchen)
|
||||||
- feature: readingsGroup: allow devStateIcon to be displayed
|
- feature: readingsGroup: allow devStateIcon to be displayed
|
||||||
|
@ -922,7 +922,8 @@ update_ListChanges($$$)
|
|||||||
} else {
|
} else {
|
||||||
my @lines = split(/\015\012|\012|\015/,$changed);
|
my @lines = split(/\015\012|\012|\015/,$changed);
|
||||||
foreach my $line (@lines) {
|
foreach my $line (@lines) {
|
||||||
last if ($line eq "");
|
next if($line =~ m/^#/);
|
||||||
|
last if($line eq "");
|
||||||
$ret .= $line."\n";
|
$ret .= $line."\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user