Skip to content

Commit

Permalink
Merge branch 'release/v0.7.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
frdteknikelektro committed Nov 21, 2017
2 parents b30d8b8 + c018d87 commit 7198e10
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions HTTP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -289,9 +289,9 @@ bool HTTP::action(const char method[], const char url[], const char data[]) {
if (!initialized) return false;
if (!getStatus().status == 0) return false;
if (strstr_P(url, (const char *)F("https://")) != NULL) {
if (!atSslHttp(true)) return false;
atSslHttp(true);
} else {
if (!atSslHttp(false)) return false;
atSslHttp(false);
}
if (!atSetHttpParametersValue(F("URL"), url)) return false;
if ((methodIndex(method) == 1) && strlen(data) > 0) {
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# GSM-library
GSM SIM900 Library for Arduino
GSM SIM900/SIM800 Library for Arduino
6 changes: 3 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "GSM Library",
"description": "SIM900 Library that using Flow Control for higher baudrate and minimum error rate.",
"keywords": "arduino, gsm, sim900",
"description": "SIM900/SIM800 Library that using Flow Control for higher baudrate and minimum error rate.",
"keywords": "arduino, gsm, sim900, sim800",
"authors": [{
"name": "Farid Inawan",
"email": "[email protected]",
Expand All @@ -20,7 +20,7 @@
"type": "git",
"url": "https://github.com/Atnic/GSM-library.git"
},
"version": "0.7.0-alpha",
"version": "0.7.1-alpha",
"license": "MIT",
"frameworks": ["arduino"],
"platforms": ["atmelavr"]
Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=GSM Library
version=0.7.0-alpha
version=0.7.1
author=Farid Inawan
maintainer=Farid Inawan <[email protected]>
sentence=Library for GSM module
paragraph=SIM900 Library that using Flow Control for higher baudrate and minimum error rate.
paragraph=SIM900/SIM800 Library that using Flow Control for higher baudrate and minimum error rate.
category=Communication
url=https://github.com/Atnic/GSM-library
architectures=avr

0 comments on commit 7198e10

Please sign in to comment.