From f946a9102b2f70aede7cc63812a40e69e9acbb40 Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Thu, 23 Feb 2017 13:39:07 +0100 Subject: [PATCH 1/4] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d12a810..6c9a3c3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -**Codacy - static code analysis:** +## Bitte den beta-Branch auf Fehler testen - Neues Release steht bevor +**Der beta-Branch kann über den normalen Installer mittles dem Flag `-b beta` installiert werden** |branch|quality|CI-Build| |---|---|---| From 29ffd30391735d13d97f52768fa74d55f18af6be Mon Sep 17 00:00:00 2001 From: Bastian Schroll Date: Thu, 30 Mar 2017 21:36:56 +0200 Subject: [PATCH 2/4] edit vers nr --- includes/globalVars.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/globalVars.py b/includes/globalVars.py index bd0cd55..9be0fac 100644 --- a/includes/globalVars.py +++ b/includes/globalVars.py @@ -9,8 +9,8 @@ Global variables """ # version info -versionNr = "2.2-beta" -buildDate = "2016/02/23" +versionNr = "2.2" +buildDate = "2017/03/30" # Global variables config = 0 From 1a9e2a34d1370df93a5451f11fd37924a3632d66 Mon Sep 17 00:00:00 2001 From: Florian Date: Sun, 16 Apr 2017 13:04:13 +0200 Subject: [PATCH 3/4] Update Sms77.py Adapted API-URL due to changes caused by provider (see https://www.sms77.io/de/docs/gateway/http-api/sms-versand) --- plugins/Sms77/Sms77.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/Sms77/Sms77.py b/plugins/Sms77/Sms77.py index 61d9078..9fb4943 100644 --- a/plugins/Sms77/Sms77.py +++ b/plugins/Sms77/Sms77.py @@ -66,8 +66,8 @@ def run(typ,freq,data): # logging.debug("send Sms77 %s", typ) - conn = httplib.HTTPSConnection("gateway.sms77.de:443") - conn.request("POST", "", + conn = httplib.HTTPSConnection("gateway.sms77.io",443) + conn.request("POST", "/api/sms", urllib.urlencode({ "u": globalVars.config.get("Sms77", "user"), "p": globalVars.config.get("Sms77", "password"), From 3b9da8eb0eed2f9486c568d97f75cbfb35a986c9 Mon Sep 17 00:00:00 2001 From: Rumbel84 Date: Tue, 23 May 2017 20:46:01 +0200 Subject: [PATCH 4/4] Update regexFilter.py Wenn ein Filter nicht Matched (Regex) kommt False Wenn es gar keinen Filter gibt, kommt ein falsches True. Muss auch False sein. --- includes/regexFilter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/regexFilter.py b/includes/regexFilter.py index 20838c8..8f3ef2c 100644 --- a/includes/regexFilter.py +++ b/includes/regexFilter.py @@ -89,7 +89,7 @@ def checkFilters(typ, data, plugin, freq): return False else: logging.debug("no Filter found") - return True + return False except: logging.error("Error in filter checking")