feat: Update version to 0.2.2, enhance installation guide, and improve help screen with dynamic versioning

This commit is contained in:
sHa
2025-12-26 23:46:46 +00:00
parent cec8bd9e96
commit d5e3661860
7 changed files with 180 additions and 11 deletions

View File

@@ -33,9 +33,14 @@ class OpenScreen(Screen):
class HelpScreen(Screen):
def compose(self):
from .app import VERSION
try:
from importlib.metadata import version
app_version = version("renamer")
except Exception:
app_version = "unknown"
help_text = f"""
Media File Renamer v{VERSION}
Media File Renamer v{app_version}
A powerful tool for analyzing and renaming media files with intelligent metadata extraction.