Skip to content

Commit

Permalink
Bump version to 2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelYochpaz committed Dec 16, 2023
1 parent 485f3fe commit a58a34f
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,21 @@
# Changelog
## 2.5.0 [2023-12-16]
### Added:
* Added logs. See the new [Logs section in the README](https://github.com/MichaelYochpaz/iSubRip#logs) for more information.
* Added a new `subtitles.webvtt.subrip-alignment-conversion` config setting (which is off by default), which if set to true, will add the `{\an8}` tag at the start of lines that are annotated at the top (with the `line:0.00%` WebVTT setting) when converting to SubRip. ([Issue #35](https://github.com/MichaelYochpaz/iSubRip/issues/35))
* Implemented caching for AppleTV's storefront configuration data, which should reduce the amount of requests used when scraping multiple AppleTV URLs from the same storefront.

### Changes:
* Big backend changes to the structure of the code, mostly to improve modularity and allow for easier development in the future, and improve performance.
* Updated the CLI output to utilize logs and print with colors according to log-level.
* Improved error handling in some cases where an invalid URL is used.

### Bug Fixes
* Fixed an issue where if a movie is a pre-order with a set release date, a message with availability date wouldn't be printed in some cases.
---
## 2.4.3 [2023-06-18]
### Bug Fixes:
* Fixed an issue where some AppleTV URLs (or iTunes links that refer to such URLs) would not be matched in some cases, resulting in a `No matching scraper was found...` Error. ([Issue #46](https://github.com/MichaelYochpaz/iSubRip/issues/46))
* Fixed an issue where some AppleTV URLs (or iTunes links that refer to such URLs) would not be matched in some cases, resulting in a "No matching scraper was found..." error. ([Issue #46](https://github.com/MichaelYochpaz/iSubRip/issues/46))
---
## 2.4.2 [2023-06-02]
### Changes:
Expand All @@ -12,7 +26,7 @@
---
## 2.4.1 [2023-05-25]
### Bug Fixes:
* Fixed an issue where saving subtitles to a different drive than the OS drive would fail. ([Issue #41](https://github.com/MichaelYochpaz/iSubRip/issues/41)
* Fixed an issue where saving subtitles to a different drive than the OS drive would fail. ([Issue #41](https://github.com/MichaelYochpaz/iSubRip/issues/41))
* Fixed AppleTV URLs with multiple iTunes playlists causing an error. ([Issue #42](https://github.com/MichaelYochpaz/iSubRip/issues/42))
---
## 2.4.0 [2023-05-23]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# iSubRip
A Python package for scraping and downloading subtitles from AppleTV / iTunes movie pages.
Latest version: 2.4.3 ([changelog](https://github.com/MichaelYochpaz/iSubRip/blob/main/CHANGELOG.md))
Latest version: 2.5.0 ([changelog](https://github.com/MichaelYochpaz/iSubRip/blob/main/CHANGELOG.md))

<br/>

Expand Down
2 changes: 1 addition & 1 deletion isubrip/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# General
PACKAGE_NAME = "isubrip"
PACKAGE_VERSION = "2.4.3"
PACKAGE_VERSION = "2.5.0"

# Logging
PREORDER_MESSAGE = ("'{movie_name}' is currently unavailable on {scraper_name}, "
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# --- Poetry ---
[tool.poetry]
name = "isubrip"
version = "2.4.3"
version = "2.5.0"
description = "A Python package for scraping and downloading subtitles from AppleTV / iTunes movie pages."
license = "MIT"
authors = ["Michael Yochpaz"]
Expand Down

0 comments on commit a58a34f

Please sign in to comment.