From: <dom...@us...> - 2013-04-03 07:44:36
|
Revision: 146 http://sourceforge.net/p/fvwm-crystal/code/146 Author: dominique_libre Date: 2013-04-03 07:44:34 +0000 (Wed, 03 Apr 2013) Log Message: ----------- INSTALL: add section about png files and libpng gAMA warnings Modified Paths: -------------- ChangeLog INSTALL Modified: ChangeLog =================================================================== --- ChangeLog 2013-04-03 07:17:28 UTC (rev 145) +++ ChangeLog 2013-04-03 07:44:34 UTC (rev 146) @@ -3,6 +3,7 @@ Mercredi 3 Avril 2013 Dominique Michel fvwm-crystal.generate-menu: run convert on the generated icon to remove the libpng gAMA warnings. + INSTALL: added a section about this issue. Mardi 2 Avril 2013 Dominique Michel recipes/*: Add support for nested X session Modified: INSTALL =================================================================== --- INSTALL 2013-04-03 07:17:28 UTC (rev 145) +++ INSTALL 2013-04-03 07:44:34 UTC (rev 146) @@ -91,7 +91,24 @@ FC_ICONBASEROOT="path_to_FVWM-Crystal_icons", usualy "/usr/share/fvwm-crystal/fvwm/icons/Default". +Libpng warnings +............... +The current version of fvwm-crystal.generate-menu include a fix to get ride +of warnings like the following: + libpng warning: Ignoring incorrect gAMA value .55 when sRGB is also present. +Howeher, it will not fix already present icon files. For that, you may want +to run the following commands: + cd ${HOME}/.fvwm-crystal/icons/Default + find -name "*.png* -exex convert "{}" "{}" \; + +When inside individual directory, you may prefer: + for i in $(ls); do convert "$i" "$i"; done + +In order to get ride of all the warnings, it can be necessary to run convert +several times (up to 3 times) on some files. This is important becuuse +Fvwm-Crystal feel faster without this kind of warning. + General installation tips ------------------------- If you don't have your own ~/.Xresources, copy one from 'addons/' directory. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |