From bf5ac71380bf208d9a89629758192ec463aafba4 Mon Sep 17 00:00:00 2001 From: Blue Fox Date: Sun, 9 Jul 2023 10:02:50 +0200 Subject: [PATCH] Added license notes at the top of the programs --- main.py | 18 +++++++++++++++++- utils.py | 19 ++++++++++++++++++- 2 files changed, 35 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 03f1583..90480c3 100644 --- a/main.py +++ b/main.py @@ -1,4 +1,20 @@ -# This Python file uses the following encoding: utf-8 +""" +Main application +Copyright (C) 2023 Benjamin Burkhardt + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +""" import sys from PySide6.QtWidgets import QApplication diff --git a/utils.py b/utils.py index 35c0548..816bb54 100644 --- a/utils.py +++ b/utils.py @@ -1,4 +1,21 @@ -# This Python file uses the following encoding: utf-8 +""" +Utility classes and functions +Copyright (C) 2023 Benjamin Burkhardt + +This program is free software: you can redistribute it and/or modify +it under the terms of the GNU 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 General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program. If not, see . +""" + # Logger class that has 7 log levels: trace/all (6), debug (5), info(4), warning (3), error (2), fatal (1), off (0) # log "level" -1 is always printed out ("On")