diff --git a/.gitignore b/.gitignore index 8a524b4..ca37839 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -.idea -.virt_env +.idea/* +.virt_env/* todo.db commands.sql diff --git a/LICENSE b/LICENSE index c22f39b..482a1c9 100644 --- a/LICENSE +++ b/LICENSE @@ -220,7 +220,7 @@ If you develop a new program, and you want it to be of the greatest possible use To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Ion-Todo-Planner - Copyright (C) 2024 Ione_15 + Copyright (C) 2024 Ione 15 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. diff --git a/create_db.sql b/create_db.sql index d2b2d19..4d7a61c 100644 --- a/create_db.sql +++ b/create_db.sql @@ -4,7 +4,6 @@ CREATE TABLE "todo" ( "CREATION_DATE" INTEGER NOT NULL, "DUE_DATE" INTEGER NOT NULL, "PRIO" INTEGER NOT NULL, -"IMP" INTEGER NOT NULL, - + "IMP" INTEGER NOT NULL, PRIMARY KEY("ID") ); diff --git a/main.py b/main.py index 9058809..c9cfca2 100644 --- a/main.py +++ b/main.py @@ -1,3 +1,12 @@ +Ion-Todo-Planner +Copyright (C) 2024 Ione 15 + +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 sqlite3 from datetime import datetime import time