Skip to content

Commit

Permalink
Update changelog, fix changelog not showing up
Browse files Browse the repository at this point in the history
  • Loading branch information
tfedor committed Nov 29, 2024
1 parent 8c25359 commit f70d9a6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions changelog.yml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/js/Core/Update/ChangelogHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down

0 comments on commit f70d9a6

Please sign in to comment.