The app icon appeared correctly at runtime (window/taskbar), since that is set programmatically via QApplication::setWindowIcon(). orbithub.exe itself showed the generic default Windows icon in Explorer, because that requires an icon resource baked into the PE file at build time -- unrelated to the runtime call.
Fixed in commit ac1deac: added packaging/windows/orbithub.ico, rendered directly from the same createOrbitHubAppIcon() logic used at runtime so the file icon matches what the app actually looks like, embedded via a minimal .rc resource file compiled in for WIN32 builds only. Confirmed fixed.
The app icon appeared correctly at runtime (window/taskbar), since that is set programmatically via `QApplication::setWindowIcon()`. `orbithub.exe` itself showed the generic default Windows icon in Explorer, because that requires an icon resource baked into the PE file at build time -- unrelated to the runtime call.
Fixed in commit ac1deac: added `packaging/windows/orbithub.ico`, rendered directly from the same `createOrbitHubAppIcon()` logic used at runtime so the file icon matches what the app actually looks like, embedded via a minimal `.rc` resource file compiled in for WIN32 builds only. Confirmed fixed.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
The app icon appeared correctly at runtime (window/taskbar), since that is set programmatically via
QApplication::setWindowIcon().orbithub.exeitself showed the generic default Windows icon in Explorer, because that requires an icon resource baked into the PE file at build time -- unrelated to the runtime call.Fixed in commit
ac1deac: addedpackaging/windows/orbithub.ico, rendered directly from the samecreateOrbitHubAppIcon()logic used at runtime so the file icon matches what the app actually looks like, embedded via a minimal.rcresource file compiled in for WIN32 builds only. Confirmed fixed.