From 564bccbe79d3b7c8ae99e1af31470b78b190f516 Mon Sep 17 00:00:00 2001 From: Dennis Keil Date: Sat, 16 Nov 2024 13:15:33 +0100 Subject: [PATCH] v117 --- app/src/changelog.ts | 4 ++++ app2.config.ts | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/app/src/changelog.ts b/app/src/changelog.ts index c4436e89..d6f54d76 100644 --- a/app/src/changelog.ts +++ b/app/src/changelog.ts @@ -184,6 +184,10 @@ export const changelog: IChangelog = { type: 'minor', title: 'Implemented [AoE II DE Update 128442](https://www.ageofempires.com/news/age-of-empires-ii-definitive-edition-update-128442/)', }, + { + type: 'minor', + title: 'Internal Framework Update (SDK 52)', + }, { type: 'bugfix', title: 'Fix header on profile page showing wrong icons', diff --git a/app2.config.ts b/app2.config.ts index 65a1d379..2a17476b 100644 --- a/app2.config.ts +++ b/app2.config.ts @@ -9,7 +9,7 @@ const sentryConfigPlugin = [ } ]; -const version = '116.0.0'; +const version = '117.0.0'; const versionParts = version.split('.'); const runtimeVersion = versionParts[0] + '.' + versionParts[1] + '.0';