launcher: libpng dialog popups interference
Hi,
In Linux, when running launch-doomsday, libpng repeatedly issues warnings about "iCCP: Not recognizing known sRGB profile that has been edited" each time it accesses the PNG images present in the launcher gui. The warnings then have to be dismissed before any other action can be performed in the launcher, but frequently a repeat warning is immediately issued.
This can be circumvented by using imagemagick to strip out the colour profiles from the images:
libpng 1.6.10
Cheers.
In Linux, when running launch-doomsday, libpng repeatedly issues warnings about "iCCP: Not recognizing known sRGB profile that has been edited" each time it accesses the PNG images present in the launcher gui. The warnings then have to be dismissed before any other action can be performed in the launcher, but frequently a repeat warning is immediately issued.
This can be circumvented by using imagemagick to strip out the colour profiles from the images:
sudo sh -c 'for i in `find /usr/share/doomsday/snowberry/graphics/ -name "*.png"`; do convert "$i" -strip "$i"; done'
libpng 1.6.10
Cheers.