release for Linux

This commit is contained in:
Dorian Zedler 2020-02-19 21:05:48 +01:00
parent 89169bc061
commit 73389f0792
3 changed files with 2 additions and 1 deletions

View File

@ -8,6 +8,7 @@ VERSION = 1.0.2
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
CONFIG(release, debug|release):DEFINES += QT_NO_DEBUG_OUTPUT
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.

Binary file not shown.

View File

@ -72,7 +72,7 @@ int ServerConn::login(QString username, QString password, bool permanent)
QString url =
"https://www.fanny-leicht.de/j34/index.php/component/fannysubstitutionplan?task=api_login&username=" +
usernameByteArray.toBase64() + "&password=" + passwordByteArray.toBase64() + "&loginIsBase64=true";
qDebug() << url;
// send the request
QVariantMap ret = this->senddata(QUrl(url));