diff --git a/CHANGELOG.md b/CHANGELOG.md index 0a6373fe..d86e146b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,15 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +#### [1.0.8](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.7...1.0.8) + +- RDK-57093: Update Plugin Clients to use update Power manager interface [`#39`](https://github.com/rdkcentral/entservices-inputoutput/pull/39) +- Merge tag '1.0.7' into develop [`ac5ef43`](https://github.com/rdkcentral/entservices-inputoutput/commit/ac5ef4349be7cb05477dfbe9785aa1a60d1293a1) + #### [1.0.7](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.6...1.0.7) +> 11 April 2025 + - RDKEMW-3359:HdmiCecSink RDK-V to RDK-E sync changes [`#48`](https://github.com/rdkcentral/entservices-inputoutput/pull/48) - Update run_peru.sh by removing secrets [`#47`](https://github.com/rdkcentral/entservices-inputoutput/pull/47) - RDK-55408: RDKE Services L2 Test Suite Development [`#30`](https://github.com/rdkcentral/entservices-inputoutput/pull/30) - RDKEMW-2208 and RDKEMW-2209 Enabling L1 and L2 tests for entservices-inputoutput repo [`#25`](https://github.com/rdkcentral/entservices-inputoutput/pull/25) +- 1.0.7 release change log updates [`65465ee`](https://github.com/rdkcentral/entservices-inputoutput/commit/65465ee6c7cc800f3639a616209560ba800a3173) - Enabling workflow for L1 and L2 [`4049a2e`](https://github.com/rdkcentral/entservices-inputoutput/commit/4049a2eb188efede1c1547be50847d29ddcb9e03) - Merge tag '1.0.6' into develop [`f46b084`](https://github.com/rdkcentral/entservices-inputoutput/commit/f46b084ed21e61d89e20868eacdea4ba8198266d) -- Added L2-test.yml [`a199266`](https://github.com/rdkcentral/entservices-inputoutput/commit/a1992664c3dfc807fbb7bceb32b30e8dbe78f305) #### [1.0.6](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.5...1.0.6) diff --git a/HdmiCecSink/HdmiCecSink.cpp b/HdmiCecSink/HdmiCecSink.cpp index 63b67d79..79d53a8d 100644 --- a/HdmiCecSink/HdmiCecSink.cpp +++ b/HdmiCecSink/HdmiCecSink.cpp @@ -933,7 +933,7 @@ namespace WPEFramework } } - void HdmiCecSink::onPowerModeChanged(const PowerState ¤tState, const PowerState &newState) + void HdmiCecSink::onPowerModeChanged(const PowerState currentState, const PowerState newState) { if(!HdmiCecSink::_instance) return; diff --git a/HdmiCecSink/HdmiCecSink.h b/HdmiCecSink/HdmiCecSink.h index 5c186da5..4fabda9a 100644 --- a/HdmiCecSink/HdmiCecSink.h +++ b/HdmiCecSink/HdmiCecSink.h @@ -573,7 +573,8 @@ namespace WPEFramework { void sendKeyReleaseEvent(const int logicalAddress); void sendUserControlPressed(const int logicalAddress, int keyCode); void sendUserControlReleased(const int logicalAddress); - void onPowerModeChanged(const PowerState ¤tState, const PowerState &newState); + void sendGiveAudioStatusMsg(); + void onPowerModeChanged(const PowerState currentState, const PowerState newState); void registerEventHandlers(); void sendGiveAudioStatusMsg(); void getHdmiArcPortID(); @@ -599,7 +600,7 @@ namespace WPEFramework { ~PowerManagerNotification() override = default; public: - void OnPowerModeChanged(const PowerState ¤tState, const PowerState &newState) override + void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override { _parent.onPowerModeChanged(currentState, newState); } diff --git a/HdmiCecSource/HdmiCecSourceImplementation.cpp b/HdmiCecSource/HdmiCecSourceImplementation.cpp index a244e2ac..d31b4df1 100644 --- a/HdmiCecSource/HdmiCecSourceImplementation.cpp +++ b/HdmiCecSource/HdmiCecSourceImplementation.cpp @@ -779,7 +779,7 @@ namespace WPEFramework } } - void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState ¤tState, const PowerState &newState) + void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState currentState, const PowerState newState) { if(!HdmiCecSourceImplementation::_instance) return; diff --git a/HdmiCecSource/HdmiCecSourceImplementation.h b/HdmiCecSource/HdmiCecSourceImplementation.h index c4832014..5c10511c 100644 --- a/HdmiCecSource/HdmiCecSourceImplementation.h +++ b/HdmiCecSource/HdmiCecSourceImplementation.h @@ -196,7 +196,7 @@ namespace WPEFramework { public: HdmiCecSourceImplementation(); virtual ~HdmiCecSourceImplementation(); - void onPowerModeChanged(const PowerState ¤tState, const PowerState &newState); + void onPowerModeChanged(const PowerState currentState, const PowerState newState); void registerEventHandlers(); static HdmiCecSourceImplementation* _instance; CECDeviceInfo_2 deviceList[16]; @@ -239,7 +239,7 @@ namespace WPEFramework { ~PowerManagerNotification() override = default; public: - void OnPowerModeChanged(const PowerState ¤tState, const PowerState &newState) override + void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override { _parent.onPowerModeChanged(currentState, newState); }