diff --git a/.gitignore b/.gitignore index 3696e04..bfa0da0 100644 --- a/.gitignore +++ b/.gitignore @@ -36,3 +36,6 @@ Thumbs.db # Custom: *kopie* gitcopy.bat + +# IDE +.vscode/ diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index efcd059..0000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "recommendations": [ - "ms-python.python", - "ms-python.vscode-pylance", - "ms-toolsai.jupyter" - ] - } diff --git a/.vscode/settings.jsonc b/.vscode/settings.jsonc deleted file mode 100644 index 8c46f9c..0000000 --- a/.vscode/settings.jsonc +++ /dev/null @@ -1,30 +0,0 @@ -{ // Bitte daran denken das Kommentare eigentlich nicht von json unterstützt werden :-) - // Das funktioniert hier nur in Microsofts jsonc im VS-Code! - "python.linting.enabled": true, - "python.linting.pylintEnabled": true, - "python.linting.mypyEnabled": true, - "python.linting.pylintArgs": ["--disable=C0114,C0115,C0116"], - "editor.formatOnSave": true, - "editor.codeActionsOnSave": { - "source.organizeImports": "explicit" - }, - "python.analysis.typeCheckingMode": "basic", - - // Abschliessende Leerzeichen entfernen: - "files.trimTrailingWhitespace": true, - "files.insertFinalNewline": true, - - // Markdown für das Entfernen von abschliessenden Leerzeichen rausnehmen: - "[markdown]": { - "files.trimTrailingWhitespace": false, - "editor.wordWrap": "off" - }, - - // Für Pythonfiles Tababstand definieren und Tabs durch Leerzeichen ersetzen - "[python]": { - "editor.tabSize": 4, - "editor.insertSpaces": true - }, - - - } diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 388da81..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,17 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "Linter (pylint)", - "type": "shell", - "command": "pylint beispiel.py", - "group": "build" - }, - { - "label": "Typprüfung (mypy)", - "type": "shell", - "command": "mypy beispiel.py", - "group": "build" - } - ] - } diff --git a/CHANGELOG.md b/CHANGELOG.md index bae3645..69db6e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## pyUpload (TKInter-Version 1.0) +- **2025-05-07 - v1.2.1** + - **Geändert:** + - [x] Logo angepasst und kleine belanglose Änderungen + - [X] (C) aus LICENSE entfernt + +--- + - **2025-05-07 - v1.2.1** - **Geändert:** - [x] `main.py` übergibt beim Neustart unter Linux jetzt einen **absoluten Pfad**, um Doppelpunkte wie `app/app/main.py` zu vermeiden. diff --git a/LICENSE b/LICENSE index 1989462..df0b89b 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License with Attribution Requirement -Copyright (c) 2025 Adam Skotarczak +Adam Skotarczak Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal diff --git a/README.md b/README.md index 80c2142..b4415eb 100644 --- a/README.md +++ b/README.md @@ -4,11 +4,16 @@ ## ⚠️ Projektstatus: Eingefroren – Nur noch Bugfixes -Diese Version von **pyUpload** wird **nicht weiterentwickelt** und erhält nur noch Fehlerbehebungen. -Die neue Version mit Flask-Backend wird **bald** verfügbar sein unter: +> Diese Version von **pyUpload** wird **nicht weiterentwickelt** und erhält nur noch Fehlerbehebungen. +> Die neue Version mit Flask-Backend wird **bald** verfügbar sein unter: 🔗 **** +**DIESE** Version ist aber voll funktionsfähig, sowohl die reine Python-Version wie auch die Windows `.exe` + +- () + Dem Programm liegen bootstrap Routinen bei die alle notwendigen Biblioteken nachinstallieren. + --- ## 📑 Inhalt der Readme diff --git a/VERSION b/VERSION index 6085e94..d2d61a7 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.2.1 +1.2.2 \ No newline at end of file diff --git a/assets/logo-1.0-alpha.png b/assets/logo-1.0-alpha.png index 9efafcb..469bf57 100644 Binary files a/assets/logo-1.0-alpha.png and b/assets/logo-1.0-alpha.png differ diff --git a/assets/logo-1.0-alpha_1024x1024.png b/assets/logo-1.0-alpha_1024x1024.png new file mode 100644 index 0000000..fded536 Binary files /dev/null and b/assets/logo-1.0-alpha_1024x1024.png differ diff --git a/assets/logo-1.0-alpha_512x512.png b/assets/logo-1.0-alpha_512x512.png new file mode 100644 index 0000000..469bf57 Binary files /dev/null and b/assets/logo-1.0-alpha_512x512.png differ