This commit is contained in:
Ione 15 2024-03-26 16:13:09 +01:00
parent f523aaaaf9
commit 8efebfd666
4 changed files with 13 additions and 5 deletions

4
.gitignore vendored
View file

@ -1,4 +1,4 @@
.idea
.virt_env
.idea/*
.virt_env/*
todo.db
commands.sql

View file

@ -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.

View file

@ -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")
);

View file

@ -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 <http://www.gnu.org/licenses/>.
import sqlite3
from datetime import datetime
import time