This commit is contained in:
rattatwinko
2025-04-15 18:52:08 +02:00
parent ea80ed32fa
commit 6fa8b4bfc8
7 changed files with 14 additions and 5 deletions

View File

@@ -349,7 +349,7 @@ class PfandCalculator:
label = tk.Label(about_window, label = tk.Label(about_window,
text=( text=(
"PfandApp V.7.04.301\n" "PfandApp V.7.04.301 ; Könnte einige Versionen hinten sein!\n"
"Erstellt mit TKinter, CV2, Numpy, PyZbar, TGTG-API, TKCalendar, Datetime\n" "Erstellt mit TKinter, CV2, Numpy, PyZbar, TGTG-API, TKCalendar, Datetime\n"
"Eigene Module: Updater, TGTG_OC, Wiki, BuildUtil\n" "Eigene Module: Updater, TGTG_OC, Wiki, BuildUtil\n"
"Großen Dank an SPAR, HOFER\n" "Großen Dank an SPAR, HOFER\n"

View File

@@ -1,3 +1,5 @@
# µScan
import tkinter as tk import tkinter as tk
from tkinter import ttk, simpledialog, messagebox from tkinter import ttk, simpledialog, messagebox
import cv2 import cv2

View File

@@ -10,7 +10,7 @@ import tempfile
import traceback import traceback
import threading import threading
GITHUB_REPO_ZIP = "https://github.com/ZockerKatze/pfand/archive/refs/heads/main.zip" GITHUB_REPO_ZIP = "https://github.com/ZockerKatze/pfand_PKG/archive/refs/heads/main.zip"
IGNORED_FILES = {"key.py"} IGNORED_FILES = {"key.py"}
class GitHubUpdater(tk.Toplevel): class GitHubUpdater(tk.Toplevel):

View File

@@ -17,8 +17,6 @@ This is a copy of [Pfand](https://github.com/ZockerKatze/pfand), but this is in
📜 **History & Exports** View your past returns and export the data for safekeeping or bragging rights. 📜 **History & Exports** View your past returns and export the data for safekeeping or bragging rights.
📦 **TGTG Integration** Check on your "Too Good To Go" orders directly within the app. ( You need to setup your API Key first! )
⚙️ **Smart Updater** Keeps the app fresh with the latest features and fixes. ⚙️ **Smart Updater** Keeps the app fresh with the latest features and fixes.
--- ---

BIN
iex.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

11
run.py
View File

@@ -1,4 +1,13 @@
from PfandApplication import main from PfandApplication import main
"""
If the function launch gets called with
False -> No autoupdates will be run
True -> Autoupdates will be run
"""
if __name__ == "__main__": if __name__ == "__main__":
main.PfandCalculator.launch(False) #Debug False main.PfandCalculator.launch(True) # By default True