Skip to content

Commit 64d9205

Browse files
committed
Merge branch 'release/1.0.8' into main
2 parents 043e26c + 2a859d3 commit 64d9205

File tree

5 files changed

+15
-7
lines changed

5 files changed

+15
-7
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d
44

55
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
66

7+
#### [1.0.8](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.7...1.0.8)
8+
9+
- RDK-57093: Update Plugin Clients to use update Power manager interface [`#39`](https://github.com/rdkcentral/entservices-inputoutput/pull/39)
10+
- Merge tag '1.0.7' into develop [`ac5ef43`](https://github.com/rdkcentral/entservices-inputoutput/commit/ac5ef4349be7cb05477dfbe9785aa1a60d1293a1)
11+
712
#### [1.0.7](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.6...1.0.7)
813

14+
> 11 April 2025
15+
916
- RDKEMW-3359:HdmiCecSink RDK-V to RDK-E sync changes [`#48`](https://github.com/rdkcentral/entservices-inputoutput/pull/48)
1017
- Update run_peru.sh by removing secrets [`#47`](https://github.com/rdkcentral/entservices-inputoutput/pull/47)
1118
- RDK-55408: RDKE Services L2 Test Suite Development [`#30`](https://github.com/rdkcentral/entservices-inputoutput/pull/30)
1219
- RDKEMW-2208 and RDKEMW-2209 Enabling L1 and L2 tests for entservices-inputoutput repo [`#25`](https://github.com/rdkcentral/entservices-inputoutput/pull/25)
20+
- 1.0.7 release change log updates [`65465ee`](https://github.com/rdkcentral/entservices-inputoutput/commit/65465ee6c7cc800f3639a616209560ba800a3173)
1321
- Enabling workflow for L1 and L2 [`4049a2e`](https://github.com/rdkcentral/entservices-inputoutput/commit/4049a2eb188efede1c1547be50847d29ddcb9e03)
1422
- Merge tag '1.0.6' into develop [`f46b084`](https://github.com/rdkcentral/entservices-inputoutput/commit/f46b084ed21e61d89e20868eacdea4ba8198266d)
15-
- Added L2-test.yml [`a199266`](https://github.com/rdkcentral/entservices-inputoutput/commit/a1992664c3dfc807fbb7bceb32b30e8dbe78f305)
1623

1724
#### [1.0.6](https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.5...1.0.6)
1825

HdmiCecSink/HdmiCecSink.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -933,7 +933,7 @@ namespace WPEFramework
933933
}
934934
}
935935

936-
void HdmiCecSink::onPowerModeChanged(const PowerState &currentState, const PowerState &newState)
936+
void HdmiCecSink::onPowerModeChanged(const PowerState currentState, const PowerState newState)
937937
{
938938
if(!HdmiCecSink::_instance)
939939
return;

HdmiCecSink/HdmiCecSink.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,8 @@ namespace WPEFramework {
573573
void sendKeyReleaseEvent(const int logicalAddress);
574574
void sendUserControlPressed(const int logicalAddress, int keyCode);
575575
void sendUserControlReleased(const int logicalAddress);
576-
void onPowerModeChanged(const PowerState &currentState, const PowerState &newState);
576+
void sendGiveAudioStatusMsg();
577+
void onPowerModeChanged(const PowerState currentState, const PowerState newState);
577578
void registerEventHandlers();
578579
void sendGiveAudioStatusMsg();
579580
void getHdmiArcPortID();
@@ -599,7 +600,7 @@ namespace WPEFramework {
599600
~PowerManagerNotification() override = default;
600601

601602
public:
602-
void OnPowerModeChanged(const PowerState &currentState, const PowerState &newState) override
603+
void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override
603604
{
604605
_parent.onPowerModeChanged(currentState, newState);
605606
}

HdmiCecSource/HdmiCecSourceImplementation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -779,7 +779,7 @@ namespace WPEFramework
779779
}
780780
}
781781

782-
void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState &currentState, const PowerState &newState)
782+
void HdmiCecSourceImplementation::onPowerModeChanged(const PowerState currentState, const PowerState newState)
783783
{
784784
if(!HdmiCecSourceImplementation::_instance)
785785
return;

HdmiCecSource/HdmiCecSourceImplementation.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ namespace WPEFramework {
196196
public:
197197
HdmiCecSourceImplementation();
198198
virtual ~HdmiCecSourceImplementation();
199-
void onPowerModeChanged(const PowerState &currentState, const PowerState &newState);
199+
void onPowerModeChanged(const PowerState currentState, const PowerState newState);
200200
void registerEventHandlers();
201201
static HdmiCecSourceImplementation* _instance;
202202
CECDeviceInfo_2 deviceList[16];
@@ -239,7 +239,7 @@ namespace WPEFramework {
239239
~PowerManagerNotification() override = default;
240240

241241
public:
242-
void OnPowerModeChanged(const PowerState &currentState, const PowerState &newState) override
242+
void OnPowerModeChanged(const PowerState currentState, const PowerState newState) override
243243
{
244244
_parent.onPowerModeChanged(currentState, newState);
245245
}

0 commit comments

Comments
 (0)