EmbarkStudios / discord-sdk

An open implementation of the Discord Game SDK in Rust
Apache License 2.0
150 stars 10 forks source link

Fix discord app registration on Windows #22

Closed Nehliin closed 1 year ago

Nehliin commented 1 year ago

Checklist

Description of Changes

Discord app registration was broken on at Win 11 (unclear if it worked on previous versions) due to the verbatim prefix (\\?\) that was added to the exe path. Apparently this isn't supported when the path with the prefix is saved in the registry as the shell open command. It would simply fail to open the registered app.

I also compared to some other games I had registered and tweaked the DefaultIcon location (+ path to strip the prefix) as well as some other register key values to more closely mimic how the "official" registration is done. Code for the official version can be found here.

Tested on Win 11 and could confirm the app launched correctly