specified icon not being used when generating osx build
See original GitHub issuespecifying a build to use a specific icon when building like this:
"build": {
"osx": {
"icon": "./images/myIcon.icns"
}
},
the icon is only being used in the .dmg installation title bar and for the mounted dmg on the desktop, but the default electron icon is being used everywhere else (app tray icon, etc.). Is there anything that I need to do besides what I have shown here to get this behavior?
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (5 by maintainers)
Top Results From Across the Web
How do I specify a Mac App Icon for a Catalyst App?
Under the "App Icons and Launch Images" section of the General project settings there is just 1 drop down menu to select the...
Read more >App Icons not included in build from Xcode
You are not alone. In my project, I found that a previous AppIcon resource that was working fine no longer resulted in an...
Read more >Using Spec Files
PyInstaller analyzes myscript.py and: Writes myscript.spec in the same folder as the script. Creates a folder build in the same folder as the...
Read more >Change a .NET MAUI app icon
Learn how to change the.NET MAUI app icon. The icon is the logo that represents your app in multiple places, such as the...
Read more >User and Workspace Settings - Visual Studio Code
The error can be as simple as a missing comma or incorrect setting value. Open the settings.json file with the Preferences: Open Settings...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Enough. We got enough feedback.
osx
dmg
. useosx
if present and warn that it is deprecated. all appdmg options goes here.mac
— all mac platform options goes here. To not break existing behaviour, useosx
as base and warn that it is deprecated.mac.icon
.D’oh. Okay, placing icon.icns in the right place causes the expected behavior. Thanks for your clarification!