Missing icon in Windows Terminal profile
Dear developers,
I installed Julia via Microsoft Store (Windows 11), and the package installed a profile for Windows Terminal. However, the Terminal profile is missing the Julia icon:

I checked the URI in the profile and apparently it's ok:
ms-appx://JuliaComputingInc.Julia/Public/Fragments/julia.ico
However, I read the Windows App Development docs and found that the The package name in the ms-appx URI scheme must be the name of one of the packages in the current running app's package dependency graph (i.e., Terminal dependencies).
According to that, it seems that it's not possible for Terminal to access the Julia icon through URI schemes. I have been thinking of another way that doesn't require the user to input a custom path, but nothing comes to my mind.
Yes, unfortunately that is an upstream problem, see here.
This is still an issue.
The temporary fix is to add
"icon":"path//to//julia.ico" to the Terminal's JSON file.
A new pull request in Terminal was just merged yesterday that falls back to the command line icon when no icon is set. Will that help, i.e. just unset the current URI?
https://github.com/microsoft/terminal/pull/15843