From f70d9a6ff0e1f531854c30af83fc43d8b91dd9f3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Fedor?= Date: Fri, 29 Nov 2024 21:50:51 +0100 Subject: [PATCH] Update changelog, fix changelog not showing up --- changelog.yml | 17 +++++++++++++++++ src/js/Core/Update/ChangelogHandler.ts | 2 +- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/changelog.yml b/changelog.yml index 9ab32a42d..fccdf9158 100644 --- a/changelog.yml +++ b/changelog.yml @@ -1,3 +1,20 @@ +4.2.0: | + Valve continues to update Steam and fully rebuild it in React. The recent wishlist update they did was just that. + Even though it looks the same as the old version, everything has changed and works in a very different way. + That provides some new challenges for us, and we expect them to continue page by page in a similar fashion. + + That said, this update brings the most of the Wishlist functionality back, hopefully Steam won't break it again too quickly. + + Some of the site-wide common features were not yet ported over (the removal of trademarks from names, for example), + and some of the things may no longer be possible. A known issue is that if you change your rank in any of the sorting + other than "Your rank", and then go back to that one, Steam won't update your ranking automatically, + becase we can no longer easily attach to Steam's code and tell it that something has changed (the other way works fine). + + Some other non-wishlist changes: + - fixed custom links that contained & + - fixed store assets, using new CDN + - fixed missing FKeepSSACheckboxState in register key context + 4.1.2: | Bugfix release diff --git a/src/js/Core/Update/ChangelogHandler.ts b/src/js/Core/Update/ChangelogHandler.ts index 74f66ea41..72d13489b 100644 --- a/src/js/Core/Update/ChangelogHandler.ts +++ b/src/js/Core/Update/ChangelogHandler.ts @@ -9,7 +9,7 @@ export default class ChangelogHandler { const lastVersion = Version.fromString(Settings.version); const currentVersion = Version.fromString(Info.version); - if (currentVersion.isAfter(lastVersion) && !Settings.version_show) { + if (currentVersion.isAfter(lastVersion) && Settings.version_show) { const changelog = new Changelog({ target: document.body, props: {lastVersion}