Favicon business got complicated during last years. New kinds of devices (re)invented, like tablets and smart smartphones. They use favicons in new ways (e.g. as application icons on homescreens) and require vendor-specific ways of linking them. In similar way, browsers now allow creating desktop-shortcuts for web-apps (which also use favicons for icons). Worse, we now have high-resolution ("retina") displays in both portable devices and laptops, which require higher-resolution images for icons. Even worse, different browsers (and versions) support different image-formats for icons and different sizes. Starting with 16x16-only .ico-only IE6 and ending with Opera, which now supports .svg icons.
What should I do in order to support crisp icons on most devices and browsers of today?
So far the best resource I could find was html5boilerplate, which recommends having the following files:
apple-touch-icon-114x114-precomposed.png
apple-touch-icon-144x144-precomposed.png
apple-touch-icon-57x57-precomposed.png
apple-touch-icon-72x72-precomposed.png
apple-touch-icon-precomposed.png
apple-touch-icon.png
favicon.ico # 32x32
while not putting any links to them in <head> tag.
Edit: another consideration is that .ico files can store several images with different resolution in them. Is this useful or supported?