From 1df12e08f18dc00f78e030d5b98a38487284a622 Mon Sep 17 00:00:00 2001 From: Journey Date: Sun, 22 Dec 2024 23:42:05 -0600 Subject: [PATCH] Push up an actual release starting with version 1.3.0 since it's been 3 months since the last "release" Not to many changes between the last "latest" and this one, I just think it was about time to get an actual new release out. I will now be including versioning in the console log as the beginning to help differentiate versioning a tiny bit to help with debugging some stuff. Also I have added a fix to now differentiate between SDH and regular Subtitles, mainly thanks to @dekaidekai for both the code and for testing it out for me. --- main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 0502c4e..97b3851 100644 --- a/main.py +++ b/main.py @@ -11,7 +11,7 @@ from plex_auto_languages.utils.healthcheck import HealthcheckServer # Version information -__version__ = "1.3.0-dev1" +__version__ = "1.3.0" class PlexAutoLanguages: """ @@ -178,7 +178,7 @@ def scheduler_callback(self): logger = init_logger() # Log the version information. - logger.info(f"Starting Plex Auto Languages, version {__version__}") + logger.info(f"Starting Plex Auto Languages - Version {__version__}") # Parse command-line arguments. parser = argparse.ArgumentParser()