made todo section look way nicer and fixed some stuff up!

This commit is contained in:
2025-09-13 20:05:19 +02:00
parent 5b51c67069
commit 22f0798f81
2 changed files with 148 additions and 22 deletions

View File

@@ -6,22 +6,32 @@ class todo:
# ------------------------------------------------------------------------------------------------------------------#
self.todo: str = """
TODO:
[] main.py@GENERAL - refactor to make the ChatGPT Code actually readable.
[] main.py@TODO - Refactor and make it look nicer! PRIO: HIGH
[] @Project_Structure - Fix this shit
[ ] main.py@GENERAL - refactor to make the ChatGPT Code actually readable.
[x] main.py@TODO - Refactor and make it look nicer! PRIO: HIGH
[ ] @Project_Structure - Fix this shit
- Isnt too bad , we can work with the structure.
[x] @ImportStructure - Fix the Import structure, it currently looks like ass. At least the local ImportStructure.
- @LocalImportStructure => Fix by end of next week. (KW25)
"""
# ------------------------------------------------------------------------------------------------------------------#
self.archived_todo: str = """
archived_todo list:
[X] main.py@433 - {FINISHED: 12.JUN.25@21:20} - fix this to actually load the Todo List cause currently its dumb as fuck.
- Do this tmrw 11.JUN.25! easy task. at least it should be.
[X] main.py@433 - {FINISHED: 12.JUN.25@21:20} - fix this to actually load the Todo List cause currently its dumb as fuck.
- Do this tmrw 11.JUN.25! easy task. at least it should be.
[X] @ImportStructure - {FINISHED: 13.SEP.25@18:47} - Fix the Import structure, it currently looks like ass. At least the local ImportStructure.
- @LocalImportStructure => Fix by end of next week. (KW25)
"""
# ------------------------------------------------------------------------------------------------------------------#
self.changelog: str = """
Changelog:
13.SEP.25@18:49 => Fixed µScan.
- Fixed the UI, made it look better and made the Scanner run better.
- Mainly OpenCV as a C extern
- Tkinter pulls it together.
- Its Threaded, so it runs better.
Fixed Todo Widget to look better. You can see @main:PfandCalculator/create_todo_list()
- Now has a progressbar which counts the elements in the Todo variable, if you check one off [x]. then it counts as finished and the
progressbar advances! main.py@PfandCalculator/create_todo_list/return_elements(str) -> tuple[int, int, int]
Third returned Element being The percent out of 100, which is done.
12.JUN.25@21:23 => Changed the Todo List to be much more readable.
12.JUN.25@21:20 => Fixed Todo List Load Bug. Now loads properly. It was a import issue.
"""
@@ -33,8 +43,8 @@ Quick TLDR:
This is refering to the todo list with element of X
This can be for other things too, such as other Methods in Classes.
example: ref@tgtg_orderchecker/main.py@12:32
This is refering to the tgtg oc at main 12:32.
example: ref@tgtg_orderchecker/main.py@method/class/variable
This is refering to some object.
if you see any "@" , you are probably seeing a reference to the todo list.
for example element 3 in todo (@LocalImportStructure)