Skip to content

Commit

Permalink
Push up an actual release starting with version 1.3.0 since it's been…
Browse files Browse the repository at this point in the history
… 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.
  • Loading branch information
JourneyOver committed Dec 23, 2024
1 parent 6b8788e commit 1df12e0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
"""
Expand Down Expand Up @@ -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()
Expand Down

0 comments on commit 1df12e0

Please sign in to comment.