Skip to content

Instantly share code, notes, and snippets.

@Temetra
Created June 15, 2023 18:10
Show Gist options
  • Save Temetra/1dfb6b8d9ea2bce14608c9d473fba1b0 to your computer and use it in GitHub Desktop.
Save Temetra/1dfb6b8d9ea2bce14608c9d473fba1b0 to your computer and use it in GitHub Desktop.
Prevent Steam's "What's New" from showing
Search for these 181 characters in Steam\steamui\chunk~2dcc5aaf7.js
return{bEventsLoaded:this.m_bEventsLoaded,bInitialLoadPending:this.m_bInitialLoadPending,eventsToShow:this.GetLibraryHomeBestEventsForUser(),takeoverEvents:this.GetTakeOverEvents()}
Replace with these 181 characters. There's a lot of spaces, they are required to avoid triggering Steam re-downloading the file.
return { bEventsLoaded: false, bInitialLoadPending: false, eventsToShow: [], takeoverEvents: [] }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment