Update install paths and copyright license headers

This commit is contained in:
Simon Stürz 2021-07-27 11:49:46 +02:00
parent 4c0f6b6401
commit a1da55b92f
10 changed files with 86 additions and 67 deletions

View File

@ -11,7 +11,7 @@ LIBS += -L$$top_builddir/libnymea-remoteproxyclient/ -lnymea-remoteproxyclient
SOURCES += main.cpp \ SOURCES += main.cpp \
proxyclient.cpp proxyclient.cpp
target.path = /usr/bin target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target INSTALLS += target
HEADERS += \ HEADERS += \

View File

@ -98,7 +98,7 @@ int main(int argc, char *argv[])
"a server application as client perspective.\n\n" "a server application as client perspective.\n\n"
"Version: %1\n" "Version: %1\n"
"API version: %2\n\n" "API version: %2\n\n"
"Copyright %3 2018 Simon Stürz <simon.stuerz@guh.io>\n") "Copyright %3 2021 nymea GmbH <developer@nymea.io>\n")
.arg(SERVER_VERSION_STRING) .arg(SERVER_VERSION_STRING)
.arg(API_VERSION_STRING) .arg(API_VERSION_STRING)
.arg(QChar(0xA9))); .arg(QChar(0xA9)));

View File

@ -1,23 +1,29 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * *
* Copyright (C) 2019 Simon Stürz <simon.stuerz@guh.io> * * Copyright 2013 - 2020, nymea GmbH
* * * Contact: contact@nymea.io
* This file is part of nymea-remoteproxy. * *
* * * This file is part of nymea.
* This program is free software: you can redistribute it and/or modify * * This project including source code and documentation is protected by copyright law, and
* it under the terms of the GNU General Public License as published by * * remains the property of nymea GmbH. All rights, including reproduction, publication,
* the Free Software Foundation, either version 3 of the License, or * * editing and translation, are reserved. The use of this project is subject to the terms of a
* (at your option) any later version. * * license agreement to be concluded with nymea GmbH in accordance with the terms
* * * of use of nymea GmbH, available under https://nymea.io/license
* This program is distributed in the hope that it will be useful, * *
* but WITHOUT ANY WARRANTY; without even the implied warranty of * * GNU General Public License Usage
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * Alternatively, this project may be redistributed and/or modified under
* GNU General Public License for more details. * * the terms of the GNU General Public License as published by the Free Software Foundation,
* * * GNU version 3. this project is distributed in the hope that it will be useful, but WITHOUT ANY
* You should have received a copy of the GNU General Public License * * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * PURPOSE. See the GNU General Public License for more details.
* * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * You should have received a copy of the GNU General Public License along with this project.
* If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under contact@nymea.io
* or see our FAQ/Licensing Information on https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef TCPSOCKETSERVER_H #ifndef TCPSOCKETSERVER_H
#define TCPSOCKETSERVER_H #define TCPSOCKETSERVER_H

View File

@ -1,25 +1,32 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * *
* Copyright (C) 2019 Simon Stürz <simon.stuerz@guh.io> * * Copyright 2013 - 2020, nymea GmbH
* * * Contact: contact@nymea.io
* This file is part of nymea-remoteproxy. * *
* * * This file is part of nymea.
* This program is free software: you can redistribute it and/or modify * * This project including source code and documentation is protected by copyright law, and
* it under the terms of the GNU General Public License as published by * * remains the property of nymea GmbH. All rights, including reproduction, publication,
* the Free Software Foundation, either version 3 of the License, or * * editing and translation, are reserved. The use of this project is subject to the terms of a
* (at your option) any later version. * * license agreement to be concluded with nymea GmbH in accordance with the terms
* * * of use of nymea GmbH, available under https://nymea.io/license
* This program is distributed in the hope that it will be useful, * *
* but WITHOUT ANY WARRANTY; without even the implied warranty of * * GNU General Public License Usage
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * Alternatively, this project may be redistributed and/or modified under
* GNU General Public License for more details. * * the terms of the GNU General Public License as published by the Free Software Foundation,
* * * GNU version 3. this project is distributed in the hope that it will be useful, but WITHOUT ANY
* You should have received a copy of the GNU General Public License * * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * PURPOSE. See the GNU General Public License for more details.
* * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * You should have received a copy of the GNU General Public License along with this project.
* If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under contact@nymea.io
* or see our FAQ/Licensing Information on https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#include "tcpsocketconnection.h" #include "tcpsocketconnection.h"
Q_LOGGING_CATEGORY(dcRemoteProxyClientTcpSocket, "RemoteProxyClientTcpSocket") Q_LOGGING_CATEGORY(dcRemoteProxyClientTcpSocket, "RemoteProxyClientTcpSocket")
namespace remoteproxyclient { namespace remoteproxyclient {

View File

@ -1,23 +1,29 @@
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* * *
* Copyright (C) 2019 Simon Stürz <simon.stuerz@guh.io> * * Copyright 2013 - 2020, nymea GmbH
* * * Contact: contact@nymea.io
* This file is part of nymea-remoteproxy. * *
* * * This file is part of nymea.
* This program is free software: you can redistribute it and/or modify * * This project including source code and documentation is protected by copyright law, and
* it under the terms of the GNU General Public License as published by * * remains the property of nymea GmbH. All rights, including reproduction, publication,
* the Free Software Foundation, either version 3 of the License, or * * editing and translation, are reserved. The use of this project is subject to the terms of a
* (at your option) any later version. * * license agreement to be concluded with nymea GmbH in accordance with the terms
* * * of use of nymea GmbH, available under https://nymea.io/license
* This program is distributed in the hope that it will be useful, * *
* but WITHOUT ANY WARRANTY; without even the implied warranty of * * GNU General Public License Usage
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * Alternatively, this project may be redistributed and/or modified under
* GNU General Public License for more details. * * the terms of the GNU General Public License as published by the Free Software Foundation,
* * * GNU version 3. this project is distributed in the hope that it will be useful, but WITHOUT ANY
* You should have received a copy of the GNU General Public License * * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* along with this program. If not, see <http://www.gnu.org/licenses/>. * * PURPOSE. See the GNU General Public License for more details.
* * *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ * You should have received a copy of the GNU General Public License along with this project.
* If not, see <https://www.gnu.org/licenses/>.
*
* For any further details and any questions please contact us under contact@nymea.io
* or see our FAQ/Licensing Information on https://nymea.io/license/faq
*
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
#ifndef TCPSOCKETCONNECTION_H #ifndef TCPSOCKETCONNECTION_H
#define TCPSOCKETCONNECTION_H #define TCPSOCKETCONNECTION_H

View File

@ -15,5 +15,5 @@ SOURCES += main.cpp \
LIBS += -lncurses LIBS += -lncurses
target.path = /usr/bin target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target INSTALLS += target

View File

@ -116,7 +116,7 @@ int main(int argc, char *argv[])
"registered nymea deamons to establish a tunnel connection.\n\n" "registered nymea deamons to establish a tunnel connection.\n\n"
"Version: %1\n" "Version: %1\n"
"API version: %2\n\n" "API version: %2\n\n"
"Copyright %3 2018 Simon Stürz <simon.stuerz@guh.io>\n") "Copyright %3 2021 nymea GmbH <developer@nymea.io>\n")
.arg(SERVER_VERSION_STRING) .arg(SERVER_VERSION_STRING)
.arg(API_VERSION_STRING) .arg(API_VERSION_STRING)
.arg(QChar(0xA9))); .arg(QChar(0xA9)));

View File

@ -10,7 +10,7 @@ LIBS += -L$$top_builddir/libnymea-remoteproxy/ -lnymea-remoteproxy
SOURCES += main.cpp \ SOURCES += main.cpp \
remoteproxyserverapplication.cpp remoteproxyserverapplication.cpp
target.path = /usr/bin target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target INSTALLS += target
HEADERS += \ HEADERS += \

View File

@ -10,5 +10,5 @@ HEADERS += nymea-remoteproxy-tests-offline.h
SOURCES += nymea-remoteproxy-tests-offline.cpp SOURCES += nymea-remoteproxy-tests-offline.cpp
target.path = /usr/bin target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target INSTALLS += target

View File

@ -7,5 +7,5 @@ HEADERS += nymea-remoteproxy-tests-online.h
SOURCES += nymea-remoteproxy-tests-online.cpp SOURCES += nymea-remoteproxy-tests-online.cpp
target.path = /usr/bin target.path = $$[QT_INSTALL_PREFIX]/bin
INSTALLS += target INSTALLS += target