Skip to content

Commit eb441df

Browse files
committed
Merge branch 'release/1.9.1' into main
2 parents b57e501 + 92fcc3f commit eb441df

File tree

2 files changed

+18
-10
lines changed

2 files changed

+18
-10
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.9.1](https://github.com/rdkcentral/entservices-apis/compare/1.9.0...1.9.1)
8+
9+
- RDKEMW-5166:Send unloaded event on receiving callback [`#307`](https://github.com/rdkcentral/entservices-apis/pull/307)
10+
- Merge tag '1.9.0' into develop [`9a21589`](https://github.com/rdkcentral/entservices-apis/commit/9a215891c7604de66ad744773b516de649311872)
11+
712
#### [1.9.0](https://github.com/rdkcentral/entservices-apis/compare/1.8.0...1.9.0)
813

14+
> 24 June 2025
15+
916
- Rdkemw 2865 device info guidelines [`#319`](https://github.com/rdkcentral/entservices-apis/pull/319)
17+
- RDKEMW-2865 - Changelog updates for 1.9.0 [`a523151`](https://github.com/rdkcentral/entservices-apis/commit/a5231513becc923031ddb53786d31d0748fff31b)
1018
- Merge tag '1.8.0' into develop [`1e2ba8e`](https://github.com/rdkcentral/entservices-apis/commit/1e2ba8eec4dc7b6de03815c7a086887b9fa1867e)
1119

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

apis/AppManager/IAppManager.h

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -62,16 +62,16 @@ struct EXTERNAL IAppManager : virtual public Core::IUnknown {
6262
enum { ID = ID_APPMANAGER };
6363

6464
enum AppLifecycleState : uint8_t {
65-
APP_STATE_UNKNOWN = 0 /* @text APP_STATE_UNKNOWN */,
66-
APP_STATE_UNLOADED = 1 /* @text APP_STATE_UNLOADED */,
67-
APP_STATE_LOADING = 2 /* @text APP_STATE_LOADING */,
68-
APP_STATE_INITIALIZING = 3 /* @text APP_STATE_INITIALIZING */,
69-
APP_STATE_PAUSED = 4 /* @text APP_STATE_PAUSED */,
70-
APP_STATE_RUNNING = 5 /* @text APP_STATE_RUNNING */,
71-
APP_STATE_ACTIVE = 6 /* @text APP_STATE_ACTIVE */,
72-
APP_STATE_SUSPENDED = 7 /* @text APP_STATE_SUSPENDED */,
73-
APP_STATE_HIBERNATED = 8 /* @text APP_STATE_HIBERNATED */,
74-
APP_STATE_TERMINATED = 9 /* @text APP_STATE_TERMINATED */
65+
APP_STATE_UNKNOWN = 0 /* @text APP_STATE_UNKNOWN */,
66+
APP_STATE_UNLOADED = 1 /* @text APP_STATE_UNLOADED */,
67+
APP_STATE_LOADING = 2 /* @text APP_STATE_LOADING */,
68+
APP_STATE_INITIALIZING = 3 /* @text APP_STATE_INITIALIZING */,
69+
APP_STATE_PAUSED = 4 /* @text APP_STATE_PAUSED */,
70+
APP_STATE_RUNNING = 5 /* @text APP_STATE_RUNNING */,
71+
APP_STATE_ACTIVE = 6 /* @text APP_STATE_ACTIVE */,
72+
APP_STATE_SUSPENDED = 7 /* @text APP_STATE_SUSPENDED */,
73+
APP_STATE_HIBERNATED = 8 /* @text APP_STATE_HIBERNATED */,
74+
APP_STATE_TERMINATING = 9 /* @text APP_STATE_TERMINATING */
7575
};
7676

7777
enum AppErrorReason : uint8_t {

0 commit comments

Comments
 (0)