Compare commits

..

2 Commits

Author SHA1 Message Date
9dcaacf64a added versioning 2025-09-28 18:05:03 +02:00
b82a04e3bb update .gitignore 2025-09-28 18:04:11 +02:00
2 changed files with 6 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1,4 +1,5 @@
release release
version.py
# ---> Python # ---> Python
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files

View File

@@ -4,8 +4,12 @@ import sys
from modules.refit_logger import logger from modules.refit_logger import logger
from modules.refit_create import Refit_Create from modules.refit_create import Refit_Create
from version import GET_VERSION_NUMBER
current_version = GET_VERSION_NUMBER()
# Setting Global Variables # Setting Global Variables
REFIT_VERSION = "Refit Beta 0.1.0" REFIT_VERSION = f"Refit Beta {current_version}"
# ---------------------------ARGPARSE START--------------------------- # ---------------------------ARGPARSE START---------------------------
# Main Parser # Main Parser