modded
This commit is contained in:
@@ -349,7 +349,7 @@ class PfandCalculator:
|
||||
|
||||
label = tk.Label(about_window,
|
||||
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"
|
||||
"Eigene Module: Updater, TGTG_OC, Wiki, BuildUtil\n"
|
||||
"Großen Dank an SPAR, HOFER\n"
|
||||
|
||||
@@ -1,3 +1,5 @@
|
||||
# µScan
|
||||
|
||||
import tkinter as tk
|
||||
from tkinter import ttk, simpledialog, messagebox
|
||||
import cv2
|
||||
|
||||
@@ -10,7 +10,7 @@ import tempfile
|
||||
import traceback
|
||||
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"}
|
||||
|
||||
class GitHubUpdater(tk.Toplevel):
|
||||
|
||||
Binary file not shown.
@@ -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.
|
||||
|
||||
📦 **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.
|
||||
|
||||
---
|
||||
|
||||
11
run.py
11
run.py
@@ -1,4 +1,13 @@
|
||||
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__":
|
||||
main.PfandCalculator.launch(False) #Debug False
|
||||
main.PfandCalculator.launch(True) # By default True
|
||||
|
||||
Reference in New Issue
Block a user