Skip to content

Commit 3cea19b

Browse files
authored
Merge branch 'main' into development
2 parents 7f03bd0 + b6c8168 commit 3cea19b

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@
77
- **Remote Configs With JSON**: Remote Configs now support JSON values, allowing for more complex configurations.
88
- **Playtime Metrics API**: Introduced new API to get total playtime and playtime in the current session.
99

10+
## 4.1.1
11+
12+
### Added
13+
14+
- added `getUserId()` and `getExternalUserId()` functions.
15+
16+
### Fixed
17+
18+
- fixed linux compilations issues with clang 18.X version
19+
- fixed progression event will now correctly send value
20+
1021
## 4.1.0
1122

1223
### Added

include/GameAnalytics/GameAnalytics.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,10 @@ namespace gameanalytics
102102
static void startSession();
103103
static void endSession();
104104

105-
/*
106-
template<typename T>
107-
static T getRemoteConfigsValue(std::string const& key, T const& defaultValue);
108-
*/
109-
110105
static std::string getRemoteConfigsValueAsString(std::string const& key, std::string const& defaultValue = "");
111106
static std::string getRemoteConfigsValueAsJson(std::string const& key);
112107

108+
113109
static bool isRemoteConfigsReady();
114110
static void addRemoteConfigsListener(const std::shared_ptr<IRemoteConfigsListener> &listener);
115111
static void removeRemoteConfigsListener(const std::shared_ptr<IRemoteConfigsListener> &listener);

0 commit comments

Comments
 (0)