Skip to content

Commit 50a83b5

Browse files
authored
Merge branch 'develop' into feature/unified_apis_jan_27
2 parents fa033df + 9264df6 commit 50a83b5

File tree

5 files changed

+412
-284
lines changed

5 files changed

+412
-284
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,18 @@ 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-
#### [3.0.0](https://github.com/rdkcentral/entservices-apis/compare/2.12.0...3.0.0)
7+
#### [3.1.0](https://github.com/rdkcentral/entservices-apis/compare/3.0.0...3.1.0)
8+
9+
- RDKEMW-13322: App Managers 0.1.0.0 Release Integration [`#712`](https://github.com/rdkcentral/entservices-apis/pull/712)
10+
- Merge tag '3.0.0' into develop [`e5c9351`](https://github.com/rdkcentral/entservices-apis/commit/e5c9351da123fb10173f4f4471d0a142782fd4d4)
11+
12+
### [3.0.0](https://github.com/rdkcentral/entservices-apis/compare/2.12.0...3.0.0)
13+
14+
> 5 February 2026
815
916
- RDK-60638: Define interface for GoogleCast service [`#724`](https://github.com/rdkcentral/entservices-apis/pull/724)
1017
- Add IAppGatewayTelemetry interface for context-aware telemetry recording [`#699`](https://github.com/rdkcentral/entservices-apis/pull/699)
18+
- 3.0.0 release changelog updates [`dbfa279`](https://github.com/rdkcentral/entservices-apis/commit/dbfa279d34838751cbe90c5866ba20034f30f245)
1119
- Merge tag '2.12.0' into develop [`7499ad8`](https://github.com/rdkcentral/entservices-apis/commit/7499ad882f979377306e36f4e97724dd2f92e2a4)
1220

1321
#### [2.12.0](https://github.com/rdkcentral/entservices-apis/compare/2.11.0...2.12.0)

apis/PackageManager/IAppPackageManager.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ namespace Exchange {
272272
};
273273

274274

275-
// @json 1.0.0 @text:keep
276275
struct EXTERNAL IPackageHandler : virtual public Core::IUnknown {
277276
enum { ID = ID_PACKAGE_HANDLER };
278277

apis/RDKWindowManager/IRDKWindowManager.h

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,34 @@ struct EXTERNAL IRDKWindowManager : virtual public Core::IUnknown {
223223
// @retval Core::ERROR_NONE: Successfully retrieved the last key press information.
224224
// @retval Core::ERROR_UNAVAILABLE: No key press information is available.
225225
virtual Core::hresult GetLastKeyInfo(uint32_t &keyCode /* @out */, uint32_t &modifiers /* @out */, uint64_t &timestampInSeconds /* @out */) const = 0;
226+
227+
/** Sets the zOrder of the given client or appInstanceId */
228+
// @text setZOrder
229+
// @brief Sets the zOrder of the given client or appInstanceId
230+
// @param appInstanceId: client name or application instance ID
231+
// @param zOrder: integer value indicating the zOrder
232+
// @retval Core::ERROR_NONE on success
233+
virtual Core::hresult SetZOrder(const string& appInstanceId, const int32_t zOrder) = 0;
234+
235+
/** Gets the zOrder of the given client or appInstanceId */
236+
// @text getZOrder
237+
// @brief Gets the zOrder of the given client or appInstanceId
238+
// @param appInstanceId: client name or application instance ID
239+
// @param zOrder: integer value indicating the zOrder of the client
240+
// @retval Core::ERROR_NONE on success
241+
virtual Core::hresult GetZOrder(const string& appInstanceId, int32_t &zOrder /* @out */) = 0;
242+
243+
/** Starts the VNC server */
244+
// @text startVncServer
245+
// @brief Starts the VNC server
246+
// @retval Core::ERROR_NONE on success
247+
virtual Core::hresult StartVncServer() = 0;
248+
249+
/** Stops the VNC server */
250+
// @text stopVncServer
251+
// @brief Stops the VNC server
252+
// @retval Core::ERROR_NONE on success
253+
virtual Core::hresult StopVncServer() = 0;
226254
};
227255
} // namespace Exchange
228256
} // namespace WPEFramework

0 commit comments

Comments
 (0)