diff --git a/CHANGELOG.md b/CHANGELOG.md index 5dbf2e0..2ed56c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,38 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.4.2] - 2025-08-14 + +### Added + +- **Session Management for API Requests**: Enhanced API reliability with retry logic + - Implemented session management for tags functionality with automatic retry mechanisms + - Improved API request stability and error handling +- **Series Year Configuration**: New `series_year` option for title naming control + - Added configurable `series_year` option to control year inclusion in series titles + - Enhanced YAML configuration with series year handling options +- **Audio Language Override**: New audio language selection option + - Added `audio_language` option to override default language selection for audio tracks + - Provides more granular control over audio track selection +- **Vault Key Reception Control**: Enhanced vault security options + - Added `no_push` option to Vault and its subclasses to control key reception + - Improved key management security and flexibility + +### Changed + +- **HLS Segment Processing**: Enhanced segment retrieval and merging capabilities + - Enhanced segment retrieval to allow all file types for better compatibility + - Improved segment merging with recursive file search and fallback to binary concatenation + - Fixed issues with VTT files from HLS not being found correctly due to format changes + - Added cleanup of empty segment directories after processing +- **Documentation**: Updated README.md with latest information + +### Fixed + +- **Audio Track Selection**: Improved per-language logic for audio tracks + - Adjusted `per_language` logic to ensure correct audio track selection + - Fixed issue where all tracks for selected language were being downloaded instead of just the intended ones + ## [1.4.1] - 2025-08-08 ### Added diff --git a/pyproject.toml b/pyproject.toml index d5982e9..4c7b39c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "unshackle" -version = "1.4.1" +version = "1.4.2" description = "Modular Movie, TV, and Music Archival Software." authors = [{ name = "unshackle team" }] requires-python = ">=3.10,<3.13" diff --git a/unshackle/core/__init__.py b/unshackle/core/__init__.py index bf25615..daa50c7 100644 --- a/unshackle/core/__init__.py +++ b/unshackle/core/__init__.py @@ -1 +1 @@ -__version__ = "1.4.1" +__version__ = "1.4.2"