From 2465db623b258dc38e6cdb11fd9a17c409557a29 Mon Sep 17 00:00:00 2001 From: dorian Date: Sat, 6 Apr 2019 20:16:16 +0200 Subject: [PATCH] applied license --- SpeedClimbingReactionTrainer.pro.user | 8 ++++---- headers/appsettings.h | 18 ++++++++++++++++++ headers/apptheme.h | 18 ++++++++++++++++++ qml/Components/FadeAnimation.qml | 9 +++++---- qml/Components/FancyButton.qml | 18 ++++++++++++++++++ qml/main.qml | 18 ++++++++++++++++++ sources/appsettings.cpp | 9 +++++---- sources/apptheme.cpp | 18 ++++++++++++++++++ sources/main.cpp | 18 ++++++++++++++++++ 9 files changed, 122 insertions(+), 12 deletions(-) diff --git a/SpeedClimbingReactionTrainer.pro.user b/SpeedClimbingReactionTrainer.pro.user index ee61a9c..427f069 100644 --- a/SpeedClimbingReactionTrainer.pro.user +++ b/SpeedClimbingReactionTrainer.pro.user @@ -1,6 +1,6 @@ - + EnvironmentId @@ -355,8 +355,8 @@ 0 SpeedClimbingReactionTrainer - SpeedClimbingReactionTrainer - Qt4ProjectManager.AndroidRunConfiguration:/home/dorian/Documents/git/SpeedClimbingReactionTrainer/SpeedClimbingReactionTrainer.pro + + Qt4ProjectManager.AndroidRunConfiguration:/home/dorian/Documents/git/spped-climbing-reaction-timer/SpeedClimbingReactionTrainer.pro 3768 false @@ -605,7 +605,7 @@ SpeedClimbingReactionTrainer Qt4ProjectManager.Qt4RunConfiguration:/home/dorian/Documents/git/SpeedClimbingReactionTrainer/SpeedClimbingReactionTrainer.pro - SpeedClimbingReactionTrainer.pro + ../SpeedClimbingReactionTrainer/SpeedClimbingReactionTrainer.pro 3768 false diff --git a/headers/appsettings.h b/headers/appsettings.h index 7101f29..2878d0f 100644 --- a/headers/appsettings.h +++ b/headers/appsettings.h @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + #ifndef APPSETTINGS_H #define APPSETTINGS_H diff --git a/headers/apptheme.h b/headers/apptheme.h index 60afe2f..6908ad2 100644 --- a/headers/apptheme.h +++ b/headers/apptheme.h @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + #ifndef APPTHEME_H #define APPTHEME_H diff --git a/qml/Components/FadeAnimation.qml b/qml/Components/FadeAnimation.qml index bb05356..e73f35f 100644 --- a/qml/Components/FadeAnimation.qml +++ b/qml/Components/FadeAnimation.qml @@ -1,10 +1,11 @@ /* - Speed Climbing Stopwatch - Simple Stopwatch for Climbers - Copyright (C) 2018 Itsblue Development - Dorian Zeder + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, version 3 of the License. + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,7 +13,7 @@ GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . + along with this program. If not, see . */ import QtQuick 2.0 diff --git a/qml/Components/FancyButton.qml b/qml/Components/FancyButton.qml index 2ec7623..e4f3f2f 100644 --- a/qml/Components/FancyButton.qml +++ b/qml/Components/FancyButton.qml @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import QtQuick 2.9 import QtQuick.Controls 2.4 import QtGraphicalEffects 1.0 diff --git a/qml/main.qml b/qml/main.qml index a4fc2fc..310268e 100644 --- a/qml/main.qml +++ b/qml/main.qml @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + import QtQuick 2.9 import QtQuick.Window 2.2 import QtQuick.Controls 2.4 diff --git a/sources/appsettings.cpp b/sources/appsettings.cpp index 61e636d..f4b4e82 100644 --- a/sources/appsettings.cpp +++ b/sources/appsettings.cpp @@ -1,10 +1,11 @@ /* - Speed Climbing Stopwatch - Simple Stopwatch for Climbers - Copyright (C) 2018 Itsblue Development - Dorian Zeder + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published - by the Free Software Foundation, version 3 of the License. + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -12,7 +13,7 @@ GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License - along with this program. If not, see . + along with this program. If not, see . */ #include "headers/appsettings.h" diff --git a/sources/apptheme.cpp b/sources/apptheme.cpp index 22e36f6..6c713c1 100644 --- a/sources/apptheme.cpp +++ b/sources/apptheme.cpp @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + #include "headers/apptheme.h" AppTheme::AppTheme(QObject *parent) : QObject(parent) diff --git a/sources/main.cpp b/sources/main.cpp index c6f1c9d..1f40642 100644 --- a/sources/main.cpp +++ b/sources/main.cpp @@ -1,3 +1,21 @@ +/* + Speed climbing reaction timer + Copyright (C) 2019 Itsblue Development | Dorian Zedler + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU Affero General Public License as published + by the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU Affero General Public License for more details. + + You should have received a copy of the GNU Affero General Public License + along with this program. If not, see . +*/ + #include #include