File tree Expand file tree Collapse file tree 3 files changed +32
-15
lines changed Expand file tree Collapse file tree 3 files changed +32
-15
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,25 @@ 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.15.9] ( https://github.com/rdkcentral/entservices-apis/compare/1.15.8...1.15.9 )
8
+
9
+ - RDKEMW-7984 : Add SharedStorage to the api documentation [ ` #505 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/505 )
10
+ - Merge tag '1.15.8' into develop [ ` e3906c7 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/e3906c73c9e0e503f55654ad6d35024878c02435 )
11
+
12
+ #### [ 1.15.8] ( https://github.com/rdkcentral/entservices-apis/compare/1.15.7...1.15.8 )
13
+
14
+ > 10 September 2025
15
+
16
+ - RDKEMW-6515: Scan and Fix coverity issues of Entservices and rdkservices-cpc [ ` #462 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/462 )
17
+ - 1.15.8 release changelog updates [ ` 2578e2b ` ] ( https://github.com/rdkcentral/entservices-apis/commit/2578e2b021526017f3815f777f20bd80479ee4f6 )
18
+ - Merge tag '1.15.7' into develop [ ` 232b903 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/232b903c12233e4c8e780d38c4153d9955f87e75 )
19
+
7
20
#### [ 1.15.7] ( https://github.com/rdkcentral/entservices-apis/compare/1.15.6...1.15.7 )
8
21
22
+ > 10 September 2025
23
+
9
24
- RDKEMW-6921: Create documentation for OCIContainer [ ` #502 ` ] ( https://github.com/rdkcentral/entservices-apis/pull/502 )
25
+ - 1.15.7 release changelog updates [ ` d1cb4fa ` ] ( https://github.com/rdkcentral/entservices-apis/commit/d1cb4fa76663ee85345db6ad743276f2a6ab1778 )
10
26
- Merge tag '1.15.6' into develop [ ` c369a94 ` ] ( https://github.com/rdkcentral/entservices-apis/commit/c369a94dc5824e3f3a25e8af334863087002f4e0 )
11
27
12
28
#### [ 1.15.6] ( https://github.com/rdkcentral/entservices-apis/compare/1.15.5...1.15.6 )
Original file line number Diff line number Diff line change @@ -27,32 +27,32 @@ namespace Exchange {
27
27
#ifndef RUNTIME_CONFIG
28
28
struct RuntimeConfig
29
29
{
30
- bool dial;
31
- bool wanLanAccess;
32
- bool thunder;
33
- int32_t systemMemoryLimit;
34
- int32_t gpuMemoryLimit;
35
- std::string envVariables;
36
- uint32_t userId;
37
- uint32_t groupId;
38
- uint32_t dataImageSize;
39
-
40
- bool resourceManagerClientEnabled;
30
+ bool dial{ false } ;
31
+ bool wanLanAccess{ false } ;
32
+ bool thunder{ false } ;
33
+ int32_t systemMemoryLimit{ 0 } ;
34
+ int32_t gpuMemoryLimit{ 0 } ;
35
+ std::string envVariables{} ;
36
+ uint32_t userId{ 0 } ;
37
+ uint32_t groupId{ 0 } ;
38
+ uint32_t dataImageSize{ 0 } ;
39
+
40
+ bool resourceManagerClientEnabled{ false } ;
41
41
std::string dialId;
42
42
std::string command;
43
43
std::string appType;
44
44
std::string appPath;
45
45
std::string runtimePath;
46
46
47
47
std::string logFilePath;
48
- uint32_t logFileMaxSize;
48
+ uint32_t logFileMaxSize{ 0 } ;
49
49
std::string logLevels; // json array of strings
50
- bool mapi;
50
+ bool mapi { false } ;
51
51
std::string fkpsFiles; // json array of strings
52
52
53
53
std::string fireboltVersion;
54
- bool enableDebugger;
55
- string unpackedPath;
54
+ bool enableDebugger{ false } ;
55
+ std:: string unpackedPath;
56
56
};
57
57
#define RUNTIME_CONFIG
58
58
#endif
Original file line number Diff line number Diff line change 36
36
- [ RemoteControl] ( apis/RemoteControlPlugin.md )
37
37
- [ ResourceManager] ( apis/ResourceManagerPlugin.md )
38
38
- [ ScreenCapture] ( apis/ScreenCapturePlugin.md )
39
+ - [ SharedStorage] ( apis/SharedStoragePlugin.md )
39
40
- [ SystemAudioPlayer] ( apis/SystemAudioPlayerPlugin.md )
40
41
- [ SystemServices] ( apis/SystemPlugin.md )
41
42
- [ Telemetry] ( apis/TelemetryPlugin.md )
You can’t perform that action at this time.
0 commit comments