KosalaHerath / macos-installer-builder

Generate macOS installers for your applications and products from one command
Apache License 2.0
320 stars 92 forks source link

Banner image does not display on dark theme (fix included) #16

Closed meverett closed 3 years ago

meverett commented 3 years ago

Banner images will not display as part of installer packages for macOS using dark theme. The Distribution file needs to have an additional line added:

This:

<background mime-type="image/png" file="banner.png" scaling="proportional"/>

Should become this:

<background mime-type="image/png" file="banner.png" scaling="proportional"/>
<background-darkAqua mime-type="image/png" file="banner.png" scaling="proportional"/>

Cheers

KosalaHerath commented 3 years ago

Fixed. Thank you for your contribution.