2
0
mirror of https://github.com/fhem/fhem-mirror.git synced 2025-02-07 16:59:18 +00:00

70_WINCONNECT: bugfixes

git-svn-id: https://svn.fhem.de/fhem/trunk@14927 2b470e98-0d58-463d-a4d8-8e2adae1ed80
This commit is contained in:
michael.winkler 2017-08-19 21:24:04 +00:00
parent 22e385d5c1
commit befe744c32

View File

@ -1,8 +1,8 @@
# $Id$ # $Id$
############################################################################ ############################################################################
# 2017-08-19, v0.0.19 # 2017-08-19, v0.0.20
# #
# v0.0.19 # v0.0.20
# - BUFIX: [FEHMModul] - $_ ersetzt durch $uResult # - BUFIX: [FEHMModul] - $_ ersetzt durch $uResult
# [FEHMModul] - reading "memory_available" und "memory_total" ohne Zusatz MB # [FEHMModul] - reading "memory_available" und "memory_total" ohne Zusatz MB
# [WinWebGUI] - Exit Messagebox entfernt # [WinWebGUI] - Exit Messagebox entfernt
@ -155,8 +155,8 @@ sub WINCONNECT_Define($$);
sub WINCONNECT_Undefine($$); sub WINCONNECT_Undefine($$);
# Autoupdateinformationen # Autoupdateinformationen
my $DownloadURL = "https://gitlab.com/michael.winkler/winconnect/raw/master/WinControl_0.0.19.exe"; my $DownloadURL = "https://gitlab.com/michael.winkler/winconnect/raw/master/WinControl_0.0.20.exe";
my $DownloadVer = "0.0.19"; my $DownloadVer = "0.0.20";
################################### ###################################
sub WINCONNECT_Initialize($) { sub WINCONNECT_Initialize($) {
@ -867,7 +867,7 @@ sub WINCONNECT_ReceiveCommand($) {
my ($param, $err, $data) = @_; my ($param, $err, $data) = @_;
my $hash = $param->{hash}; my $hash = $param->{hash};
my $name = $hash->{NAME}; my $name = $hash->{NAME};
my $VerWin = substr(ReadingsVal( $name, "wincontrol", "0" ),4); my $VerWin = substr(ReadingsVal( $name, "wincontrol", "0.0.0.0" ),4);
my $VerGit = substr(ReadingsVal( $name, "wincontrol_gitlab", "0.0.0.0" ),4); my $VerGit = substr(ReadingsVal( $name, "wincontrol_gitlab", "0.0.0.0" ),4);
my $service = $param->{service}; my $service = $param->{service};