From 70ce6f7488e0c81819a86c1b4729e5f478189f00 Mon Sep 17 00:00:00 2001 From: okraska-kropidlowski Date: Tue, 26 Dec 2023 22:04:18 +0100 Subject: [PATCH] Add "about" window --- about.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/about.py b/about.py index 4e29f01..269f18b 100644 --- a/about.py +++ b/about.py @@ -8,4 +8,8 @@ about.iconbitmap("data/images/edredon.ico") about.resizable(False, False) +info = tkinter.Label(about, text="edredon version 1.0\n\nFirst release with basic functionality:\n- Profile management\n- Entry adding/viewing\n\nCreated using:\n- TkinterMapView by Tom Schimansky\n- sqlite3 by Gerhard Häring\n\nList of bird species taken from:\nhttp://komisjafaunistyczna.pl/lista/\n") +info.config(justify=tkinter.LEFT, padx=20, pady=10, font=("Arial", 10)) +info.pack() + about.mainloop() \ No newline at end of file