Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
2 changes: 1 addition & 1 deletion HdmiCecSink/HdmiCecSink.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ namespace WPEFramework
}
}

void HdmiCecSink::onPowerModeChanged(const PowerState &currentState, const PowerState &newState)
void HdmiCecSink::onPowerModeChanged(const PowerState currentState, const PowerState newState)
{
if(!HdmiCecSink::_instance)
return;
Expand Down
5 changes: 3 additions & 2 deletions HdmiCecSink/HdmiCecSink.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 &currentState, const PowerState &newState);
void sendGiveAudioStatusMsg();
void onPowerModeChanged(const PowerState currentState, const PowerState newState);
void registerEventHandlers();
void sendGiveAudioStatusMsg();
void getHdmiArcPortID();
Expand All @@ -599,7 +600,7 @@ namespace WPEFramework {
~PowerManagerNotification() override = default;

public:
void OnPowerModeChanged(const PowerState &currentState, const PowerState &newState) override
void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override
{
_parent.onPowerModeChanged(currentState, newState);
}
Expand Down
2 changes: 1 addition & 1 deletion HdmiCecSource/HdmiCecSourceImplementation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -779,7 +779,7 @@ namespace WPEFramework
}
}

void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState &currentState, const PowerState &newState)
void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState currentState, const PowerState newState)
{
if(!HdmiCecSourceImplementation::_instance)
return;
Expand Down
4 changes: 2 additions & 2 deletions HdmiCecSource/HdmiCecSourceImplementation.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ namespace WPEFramework {
public:
HdmiCecSourceImplementation();
virtual ~HdmiCecSourceImplementation();
void onPowerModeChanged(const PowerState &currentState, const PowerState &newState);
void onPowerModeChanged(const PowerState currentState, const PowerState newState);
void registerEventHandlers();
static HdmiCecSourceImplementation* _instance;
CECDeviceInfo_2 deviceList[16];
Expand Down Expand Up @@ -239,7 +239,7 @@ namespace WPEFramework {
~PowerManagerNotification() override = default;

public:
void OnPowerModeChanged(const PowerState &currentState, const PowerState &newState) override
void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override
{
_parent.onPowerModeChanged(currentState, newState);
}
Expand Down
Loading