diff --git a/fhem/CHANGED b/fhem/CHANGED index 8b86581b2..126f48dfc 100644 --- a/fhem/CHANGED +++ b/fhem/CHANGED @@ -1,5 +1,6 @@ # 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. + - bugfix: 73_AMADCommBridge: fix $version bug - update: 95_Astro: v2.0.0 device attributes for language, timezone and locale settings new set command "update" diff --git a/fhem/FHEM/73_AMADCommBridge.pm b/fhem/FHEM/73_AMADCommBridge.pm index c5b515cbe..48966ac96 100644 --- a/fhem/FHEM/73_AMADCommBridge.pm +++ b/fhem/FHEM/73_AMADCommBridge.pm @@ -68,8 +68,8 @@ use GPUtils qw(GP_Import) ; # wird für den Import der FHEM Funktionen aus der fhem.pl benötigt use HttpUtils; use TcpServerUtils; -our $MODULVERSION = 'v4.4.2'; -our $FLOWSETVERSION = 'v4.4.1'; +our $MODULVERSION = '4.4.2'; +our $FLOWSETVERSION = '4.4.1'; my $missingModul = ''; eval "use Encode qw(encode encode_utf8);1" or $missingModul .= 'Encode '; diff --git a/fhem/FHEM/74_AMADDevice.pm b/fhem/FHEM/74_AMADDevice.pm index 17fb899dd..2d507ef96 100644 --- a/fhem/FHEM/74_AMADDevice.pm +++ b/fhem/FHEM/74_AMADDevice.pm @@ -55,8 +55,8 @@ use FHEM::Meta; use Data::Dumper; #only for Debugging use GPUtils qw(GP_Import) ; # wird für den Import der FHEM Funktionen aus der fhem.pl benötigt -our $MODULVERSION = 'v4.4.2'; -our $FLOWSETVERSION = 'v4.4.1'; +our $MODULVERSION = '4.4.2'; +our $FLOWSETVERSION = '4.4.1'; my $missingModul = ''; eval "use Encode qw(encode encode_utf8);1" or $missingModul .= 'Encode ';