diff --git a/fhem/CHANGED b/fhem/CHANGED index 855ba6789..05ee2c798 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -532,7 +532,7 @@ - feature: javascripting support in FHEMWEB (Klaus/Axel) - feature: Module 09_BS.pm for brightness sensor added (Boris 2009-09-20) -- ==DATE== (4.8) +- 2009-11-28 (4.8) - bugfix: loosing data when sending FS20 messages in a group - bugfix: better handling of disconnected CUN - feature: softfhtbuffer added to CUL @@ -545,3 +545,6 @@ - feature: CUL_RFR (RF_ROUTING) added - feature: Command save retains now the order of the old config file - feature: List parameter added (list .* RFR_MSGCNT) + +- ==DATE== (4.9) + - bugfix: changed the fhem prompt from FHZ> to fhem> diff --git a/fhem/fhem.pl b/fhem/fhem.pl index bcf957a5c..6ae41a70f 100755 --- a/fhem/fhem.pl +++ b/fhem/fhem.pl @@ -155,7 +155,7 @@ my $nextat; # Time when next timer will be triggered. my $intAtCnt=0; my %duplicate; # Pool of received msg for multi-fhz/cul setups my $duplidx=0; # helper for the above pool -my $cvsid = '$Id: fhem.pl,v 1.88 2009-11-28 11:14:12 rudolfkoenig Exp $'; +my $cvsid = '$Id: fhem.pl,v 1.89 2009-12-01 22:41:17 rudolfkoenig Exp $'; my $namedef = "where is either:\n" . "- a single device name\n" . @@ -504,7 +504,7 @@ AnalyzeInput($) $client{$c}{prompt} = 1; # Empty return } - syswrite($client{$c}{fd}, $client{$c}{prevlines} ? "> " : "FHZ> ") + syswrite($client{$c}{fd}, $client{$c}{prevlines} ? "> " : "fhem> ") if($client{$c}{prompt} && !$rest); } }