From b65e2591e56944c684b407b13ed1db8ccad8df20 Mon Sep 17 00:00:00 2001 From: LeonGaultier Date: Wed, 19 Jun 2019 10:39:00 +0000 Subject: [PATCH] 73_AMADCommBridge: fix bug git-svn-id: https://svn.fhem.de/fhem/trunk@19646 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- fhem/CHANGED | 1 + fhem/FHEM/73_AMADCommBridge.pm | 4 ++-- fhem/FHEM/74_AMADDevice.pm | 4 ++-- 3 files changed, 5 insertions(+), 4 deletions(-) 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 ';