Win32 app icon #4
Loading…
Reference in New Issue
No description provided.
Delete Branch "%!s(<nil>)"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
When bundling an orca app for win32, change the name of the runtime executable to the name of the app and sets its icon according to the file passed to the
--icon
option.(Alternatively we could just create a shortcut to the runtime executable in the app's directory, and set the icon of that shortcut?)
I think it would be best to bundle the app icon into the executable itself so that Orca apps have more identity. Plus I don't know what would show up in the taskbar otherwise?
Yeah agreed. Problem is we don't want to compile the runtime for every application just to pass the correct resource file for the icon. But I don't know if we can add resources to the executable after the fact without using an external tool like resource hacker?
Well ideally I think I would want Orca apps on Windows to be a single executable with the wasm data bundled in, and in that case we'd be in the business of making executables anyway. But I'm not sure how easy that is or if it's reasonable for our MVP.
I though about this but I don't think it's going to work great for three reasons:
Additionally my guess is that it also wouldn't play very well with dynamic linking and applications embedding when we tackle that later on, but that one is more hypothetical.