File tree Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Expand file tree Collapse file tree 5 files changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
5
5
Generated by [ ` auto-changelog ` ] ( https://github.com/CookPete/auto-changelog ) .
6
6
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
+
7
12
#### [ 1.0.7] ( https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.6...1.0.7 )
8
13
14
+ > 11 April 2025
15
+
9
16
- RDKEMW-3359: HdmiCecSink RDK-V to RDK-E sync changes [ ` #48 ` ] ( https://github.com/rdkcentral/entservices-inputoutput/pull/48 )
10
17
- Update run_peru.sh by removing secrets [ ` #47 ` ] ( https://github.com/rdkcentral/entservices-inputoutput/pull/47 )
11
18
- RDK-55408: RDKE Services L2 Test Suite Development [ ` #30 ` ] ( https://github.com/rdkcentral/entservices-inputoutput/pull/30 )
12
19
- 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 )
13
21
- Enabling workflow for L1 and L2 [ ` 4049a2e ` ] ( https://github.com/rdkcentral/entservices-inputoutput/commit/4049a2eb188efede1c1547be50847d29ddcb9e03 )
14
22
- 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 )
16
23
17
24
#### [ 1.0.6] ( https://github.com/rdkcentral/entservices-inputoutput/compare/1.0.5...1.0.6 )
18
25
Original file line number Diff line number Diff line change @@ -933,7 +933,7 @@ namespace WPEFramework
933
933
}
934
934
}
935
935
936
- void HdmiCecSink::onPowerModeChanged (const PowerState & currentState, const PowerState & newState)
936
+ void HdmiCecSink::onPowerModeChanged (const PowerState currentState, const PowerState newState)
937
937
{
938
938
if (!HdmiCecSink::_instance)
939
939
return ;
Original file line number Diff line number Diff line change @@ -573,7 +573,8 @@ namespace WPEFramework {
573
573
void sendKeyReleaseEvent (const int logicalAddress);
574
574
void sendUserControlPressed (const int logicalAddress, int keyCode);
575
575
void sendUserControlReleased (const int logicalAddress);
576
- void onPowerModeChanged (const PowerState ¤tState, const PowerState &newState);
576
+ void sendGiveAudioStatusMsg ();
577
+ void onPowerModeChanged (const PowerState currentState, const PowerState newState);
577
578
void registerEventHandlers ();
578
579
void sendGiveAudioStatusMsg ();
579
580
void getHdmiArcPortID ();
@@ -599,7 +600,7 @@ namespace WPEFramework {
599
600
~PowerManagerNotification () override = default ;
600
601
601
602
public:
602
- void OnPowerModeChanged (const PowerState & currentState, const PowerState & newState) override
603
+ void OnPowerModeChanged (const PowerState currentState, const PowerState newState) override
603
604
{
604
605
_parent.onPowerModeChanged (currentState, newState);
605
606
}
Original file line number Diff line number Diff line change @@ -779,7 +779,7 @@ namespace WPEFramework
779
779
}
780
780
}
781
781
782
- void HdmiCecSourceImplementation::onPowerModeChanged (const PowerState & currentState, const PowerState & newState)
782
+ void HdmiCecSourceImplementation::onPowerModeChanged (const PowerState currentState, const PowerState newState)
783
783
{
784
784
if (!HdmiCecSourceImplementation::_instance)
785
785
return ;
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ namespace WPEFramework {
196
196
public:
197
197
HdmiCecSourceImplementation ();
198
198
virtual ~HdmiCecSourceImplementation ();
199
- void onPowerModeChanged (const PowerState & currentState, const PowerState & newState);
199
+ void onPowerModeChanged (const PowerState currentState, const PowerState newState);
200
200
void registerEventHandlers ();
201
201
static HdmiCecSourceImplementation* _instance;
202
202
CECDeviceInfo_2 deviceList[16 ];
@@ -239,7 +239,7 @@ namespace WPEFramework {
239
239
~PowerManagerNotification () override = default ;
240
240
241
241
public:
242
- void OnPowerModeChanged (const PowerState & currentState, const PowerState & newState) override
242
+ void OnPowerModeChanged (const PowerState currentState, const PowerState newState) override
243
243
{
244
244
_parent.onPowerModeChanged (currentState, newState);
245
245
}
You can’t perform that action at this time.
0 commit comments