release: version 1.0.1

Features:
- Windows Registry detection for standard install path
- Linux support for Steam installations
- Multiple cache sources (Standard + Steam)
- Report Bug link to GitHub issues
- Give it a star on GitHub message
- Cross-platform CI/CD builds
This commit is contained in:
LemonNexus 2026-02-12 16:20:13 +00:00
parent 026339ecef
commit 4f64839947
1 changed files with 4 additions and 1 deletions

View File

@ -10,6 +10,9 @@ Discord: impulsivefps
GitHub: https://github.com/ImpulsiveFPS/EU-Icon-Extractor GitHub: https://github.com/ImpulsiveFPS/EU-Icon-Extractor
""" """
# Application version
__version__ = "1.0.1"
import sys import sys
import os import os
import subprocess import subprocess
@ -42,7 +45,7 @@ except ImportError:
# Application metadata # Application metadata
APP_NAME = "Entropia Universe Icon Extractor" APP_NAME = f"Entropia Universe Icon Extractor v{__version__}"
def get_steam_paths() -> List[Path]: def get_steam_paths() -> List[Path]: