diff --git a/fhem/CHANGED b/fhem/CHANGED index 13f95498c..60ce611a4 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -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. + - feature: version: version command shows also internal helper modules that + are loaded (HttpUtils, Blocking, ...) - feature: 70_VIERA: Using non blocking for status update. Added color button for remoteControl and SVG layout Some new SVG icons for remoteControl layout diff --git a/fhem/FHEM/98_version.pm b/fhem/FHEM/98_version.pm index 7af1a156b..41daca25d 100755 --- a/fhem/FHEM/98_version.pm +++ b/fhem/FHEM/98_version.pm @@ -54,8 +54,9 @@ CommandVersion($$) @ret = sort {version_sortModules($a, $b)} @ret; return "no loaded modules found that match: $param" if($param && !@ret); return sprintf("%-".$max."s %s","File","Rev Last Change\n\n"). - join("\n", grep (($_ =~ /^fhem.pl|\d\d_/), @ret)).(!$param ? "\n\n":""). - join("\n", grep (($_ !~ /^fhem.pl|\d\d_/), @ret)); + trim(join("\n", grep (($_ =~ /^fhem.pl|\d\d_/), @ret))."\n\n". + join("\n", grep (($_ !~ /^fhem.pl|\d\d_/), @ret)) + ); } #####################################