Starcraft marked "Remastered" although offered in game as "can be purchased"
Describe the bug Inside Starcraft it looks like this

The official launcher says:

GoG marks this as:

I would assume the game being only marked as Classic Starcraft without the remastered tag, unless i really bought it.
Looks impossible now: https://github.com/FriendsOfGalaxy/galaxy-integration-battlenet/issues/7
Need research, maybe listening Battlenet client or starcraft itself with Fiddler or stuff like that to discover endpoints that distinguish wheater you have remastered or not.
Then plugin may send to Galaxy 2 separate ids for those games.
This would be awesome. Is there a way to manually specify which one you want to have listed? I own the old anthology as well as remastered, but regular StarCraft is what gets linked. Ideally it would have both, but I understand why it is just pulling one. W3 and W3 Reforged shows both as installed, with the ability to launch both, but SC only shows normal SC and Remastered isn't showing as owned.
I think we could use the shop api
https://eu.shop.battle.net/api/product/starcraft-remastered has blocks like
"eligibility": { "eligible": true, **"owned": false,** "upgrade": false, "discounted": false },
Good finding! We need to ensure we have access with the plugin authorization cookies.
Maybe also #24 and #50 can be solved by checking this API. @yoshimo would you like to implement this? Some refactor will be needed probably.
I can supply samples but i'm not a coder I'm rather optimistic that the linked issues can be solved:
/api/product/call-of-duty-black-ops-4
/api/product/call-of-duty-modern-warfare-2-campaign-remastered
/api/product/crash-bandicoot-4
/api/product/diablo-ii
/api/product/diablo-ii-lord-of-destruction
/api/product/diablo_ii_resurrected
/api/product/hearthstone-battle-ready-decks
/api/product/hearthstone-tavern-pass
/api/product/starcraft-cartooned
/api/product/starcraft-ii-announcer-mengsk
/api/product/starcraft-ii-carbot-complete-bundle
/api/product/warcraft-iii-reforged
/api/product/world-of-warcraft-shadowlands
are in my log. Hardcoding products might not be the best idea ill have to dig a little deeper. https://eu.shop.battle.net/api/navigation Might help here with the destination tag.
Great, I will try to code it in a spare time.