File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
16
16
17
17
* For more details, refer to [ versioning] ( https://github.com/rdkcentral/rdkservices#versioning ) section under Main README.
18
18
19
+ ## [ 1.0.9] - 2024-11-29
20
+ ### Added
21
+ - Fixed sharp FP issue
22
+
19
23
## [ 1.0.8] - 2024-09-30
20
24
### Added
21
25
- Fixed getFrontPanelIndicatorInfo API
Original file line number Diff line number Diff line change 65
65
66
66
#define API_VERSION_NUMBER_MAJOR 1
67
67
#define API_VERSION_NUMBER_MINOR 0
68
- #define API_VERSION_NUMBER_PATCH 8
68
+ #define API_VERSION_NUMBER_PATCH 9
69
69
70
70
namespace
71
71
{
Original file line number Diff line number Diff line change @@ -170,7 +170,7 @@ namespace WPEFramework
170
170
{
171
171
LOGWARN (" Initializing light %s" , fpIndicators.at (i).getName ().c_str ());
172
172
if (powerStatus)
173
- device::FrontPanelIndicator::getInstance (fpIndicators.at (i).getName ()).setBrightness (globalLedBrightness);
173
+ device::FrontPanelIndicator::getInstance (fpIndicators.at (i).getName ()).setBrightness (globalLedBrightness, false );
174
174
175
175
device::FrontPanelIndicator::getInstance (fpIndicators.at (i).getName ()).setState (false );
176
176
}
You can’t perform that action at this time.
0 commit comments