Skip to content

Commit 4595341

Browse files
committed
Merge branch 'release/1.16.3'
2 parents 4e3c695 + c504aa2 commit 4595341

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,17 @@ 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.16.3](https://github.com/rdkcentral/entservices-apis/compare/1.16.2...1.16.3)
8+
9+
- RDKEMW-7499: onAppInstallationStatus Event missing failReason [`#508`](https://github.com/rdkcentral/entservices-apis/pull/508)
10+
- Merge tag '1.16.2' into develop [`b1e394c`](https://github.com/rdkcentral/entservices-apis/commit/b1e394c558d02490cfab7ce24c2848bd4d0b8e55)
11+
712
#### [1.16.2](https://github.com/rdkcentral/entservices-apis/compare/1.16.1...1.16.2)
813

14+
> 19 September 2025
15+
916
- RDKEMW-7966 : The event "shortAudiodescriptorEvent" on the API docs is wrongly spelled [`#501`](https://github.com/rdkcentral/entservices-apis/pull/501)
17+
- 1.16.2 release changelog updates [`6ec87bc`](https://github.com/rdkcentral/entservices-apis/commit/6ec87bca4eb6d571e18701a5b81b493858a9dd30)
1018
- Merge tag '1.16.1' into develop [`65fb823`](https://github.com/rdkcentral/entservices-apis/commit/65fb823de9decd4bf362c1795ccd147e4f273af3)
1119

1220
#### [1.16.1](https://github.com/rdkcentral/entservices-apis/compare/1.16.0...1.16.1)

apis/PackageManager/IAppPackageManager.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -124,22 +124,22 @@ namespace Exchange {
124124
// @param fileLocator: FileLocator
125125
virtual Core::hresult Delete(const string &fileLocator) = 0;
126126

127-
struct Percent {
128-
uint8_t percent;
127+
struct ProgressInfo {
128+
uint8_t progress;
129129
};
130130

131-
// @brief Delete
131+
// @brief Progress
132132
// @text progress
133133
// @param downloadId: Download id
134134
virtual Core::hresult Progress(
135135
const string &downloadId,
136-
Percent &percent /* @out */) = 0;
136+
ProgressInfo &progress /* @out */) = 0;
137137

138138
// @brief GetStorageDetails
139139
// @text getStorageDetails
140140
virtual Core::hresult GetStorageDetails(
141-
uint32_t &quotaKb /* @out */,
142-
uint32_t &usedKb /* @out */) = 0;
141+
string &quotaKb /* @out */,
142+
string &usedKb /* @out */) = 0;
143143

144144
// @brief RateLimit
145145
// @text rateLimit

0 commit comments

Comments
 (0)