From 38fb0b7e920a93bc892fcec7403416bc1274f374 Mon Sep 17 00:00:00 2001 From: chros73 Date: Sat, 29 Oct 2022 21:02:35 +0100 Subject: [PATCH] Update change log --- CHANGELOG.md | 14 ++++++++++++++ bscpylgtv/_version.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d9e254a..2aa60cb 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Change Log +## [v0.4.1](https://github.com/chros73/bscpylgtv/tree/v0.4.1) (2022-10-29) +**Implemented enhancements:** + +- Add `set_1d_lut_en` and `set_3by3_gamut_en` calibration methods +- Speed up most of the calibration commands by removing checking for calibration support from them: + - only 3D LUT and Dolby Vision config related commands require `-s` (states) flag +- Modify `calibration_support_info` method to use chip type instead of model name +- Add optional `-c` command line parameter for overriding calibration_info for unsupported chip types +- Update readme + +**Fixed bugs:** + +- Fix truncated large arrays with get calibration commands during printing + ## [v0.4.0](https://github.com/chros73/bscpylgtv/tree/v0.4.0) (2022-10-23) **Implemented enhancements:** diff --git a/bscpylgtv/_version.py b/bscpylgtv/_version.py index d48f983..ebf8903 100755 --- a/bscpylgtv/_version.py +++ b/bscpylgtv/_version.py @@ -1,2 +1,2 @@ -__version_info__ = (0, 4, 0) +__version_info__ = (0, 4, 1) __version__ = '.'.join(map(str, __version_info__))