Modernization & Discovery Overhaul (v7.0.42 - .NET 8 WPF)#595
Open
DarksAces wants to merge 3 commits intogibbed:masterfrom
Open
Modernization & Discovery Overhaul (v7.0.42 - .NET 8 WPF)#595DarksAces wants to merge 3 commits intogibbed:masterfrom
DarksAces wants to merge 3 commits intogibbed:masterfrom
Conversation
Contributor
|
Great job! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📌 Overview
This Pull Request bumps the Steam Achievement Manager (SAM) to v7.0.42, bringing a massive modernization effort by transitioning the Picker from legacy WinForms to a modern, high-fidelity WPF interface. Alongside the UI revamp, it completely fixes critical issues with game discovery that occurred due to deprecated Steam API endpoints, restoring the classic SAM exact library detection.
✨ Key Features & UI Changes
GamePicker.cswindow with a fully responsive, dark-themedMainWindow.xamlWPF interface..csprojfile to utilize.NET 8, taking advantage of better runtime performance while strictly maintainingx86output (essential forsteamclient.dllinterop).v7.0.42.🐛 Bug Fixes & Engine Restorations
The official
ISteamApps/GetAppListweb endpoints are heavily rate-limited and deprecated.Re-implemented the battle-tested, classic Gibbed discovery engine: This application now properly downloads the master
games.xmllist again and directly queries the local client API usingSteamApps008.IsSubscribedApp(...). This restores 100% discovery precision and eliminates generic "App 1000" fallbacks.Images reliant on generic static store CDN locations (
capsule_184x69.jpg) failed frequently because retired/delisted games return HTTP 404s. Reverted the image resolver to safely request cached metadata properties (small_capsule,logo) from the local client API (SteamApps001). Now, all graphics load gracefully and asynchronously.Resolved an issue where users clicking on a game from
SAM.Picker.exeencountered an error because it couldn't locateSAM.Game.exein local debug/dev environments. The startup info now traverses the solution properly to gracefully link with the\bin\execution directory.🛠️ Technical Details
GameInfoViewModel.csfor clean XAML databinding (INotifyPropertyChanged).DispatcherUnhandledExceptionhandlers to capture and diagnose rendering/API execution exceptions silently rather than crash-to-desktop.steam_api.dlland original Gibbed API hooks.