diff --git a/CHANGELOG.md b/CHANGELOG.md index f5db3ac..90e2d6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. Changes are grouped by the date they are merged to the main branch of the repository and are ordered from newest to oldest. Dates use the ISO 8601 extended calendar date format, i.e. YYYY-MM-DD. +## 2025-02-21 + +- Update to Handbrake harness to version 1.9.1 + ## 2025-02-17 - 3 new harnesses for testing: Ashes of the Singularity: Escalation, Forza Motorsport, Horizon Zero Dawn: Remastered diff --git a/handbrake/handbrake.py b/handbrake/handbrake.py index 4349ddb..d44e1f9 100644 --- a/handbrake/handbrake.py +++ b/handbrake/handbrake.py @@ -136,7 +136,7 @@ def main(): "test": f"HandBrake Encoding BBB {args.encoder.upper()}", "score": score, "unit": "frames per second", - "version": "1.8.1", + "version": "1.9.1", "start_time": start_time, "end_time": end_time } diff --git a/handbrake/handbrake_utils.py b/handbrake/handbrake_utils.py index cb9e42e..0169612 100644 --- a/handbrake/handbrake_utils.py +++ b/handbrake/handbrake_utils.py @@ -17,7 +17,7 @@ def handbrake_present() -> bool: def copy_handbrake_from_network_drive(): """copy handbrake cli from network drive""" - source = Path("\\\\Labs\\labs\\01_Installers_Utilities\\Handbrake\\X86\\HandBrakeCLI-1.8.1-win-x86_64\\") + source = Path("\\\\Labs\\labs\\01_Installers_Utilities\\Handbrake\\X86\\HandBrakeCLI-1.9.1-win-x86_64\\") copy_souce = source / HANDBRAKE_EXECUTABLE destination = SCRIPT_DIR / HANDBRAKE_EXECUTABLE shutil.copyfile(copy_souce, destination)