You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I agree to follow the code of conduct that this project follows, as appropriate.
I have searched the issue tracker for a feature request that matches the one I want to file, without success.
Problem Description
Currently setting name or executableName in config will change both name of output file and the name displayed in the system (docker and toolbar on macOS, taskbar on Windows). We need to make the names in these two use cases different.
Proposed Solution
Add a displayName field to the config. On macOS this value will be set to CFBundleName and CFBundleDisplayName in info.plist. On Windows this value will be set to FileDescription field metadata of the executable. This field will fallback to the name field if not specified.
Alternatives Considered
Allow the extendInfo config field to override CFBundleName and CFBundleDisplayName on macOS, like the win32metadata config field on Windows. This is the solution described in #387.
Additional Information
I do not know how to set the display name on Linux. Need more info on this.
The text was updated successfully, but these errors were encountered:
👋 Thanks for opening your first issue here! If you have a question about using Electron Packager, read the support docs. If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. Development and issue triage is community-driven, so please be patient and we will get back to you as soon as we can.
To help make it easier for us to investigate your issue, please follow the contributing guidelines.
Preflight Checklist
Problem Description
Currently setting
name
orexecutableName
in config will change both name of output file and the name displayed in the system (docker and toolbar on macOS, taskbar on Windows). We need to make the names in these two use cases different.Proposed Solution
Add a
displayName
field to the config. On macOS this value will be set toCFBundleName
andCFBundleDisplayName
ininfo.plist
. On Windows this value will be set toFileDescription
field metadata of the executable. This field will fallback to thename
field if not specified.Alternatives Considered
Allow the
extendInfo
config field to overrideCFBundleName
andCFBundleDisplayName
on macOS, like thewin32metadata
config field on Windows. This is the solution described in #387.Additional Information
I do not know how to set the display name on Linux. Need more info on this.
The text was updated successfully, but these errors were encountered: