Chrome now only supports 192x192 icon as max size

https://code.google.com/p/chromium/issues/detail?id=298446#c14
This commit is contained in:
Paul Kinlan 2014-08-25 21:02:25 +01:00
Родитель 6aad59e228
Коммит f25b323a53
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -67,13 +67,13 @@ however, they integrate with the Android environment in the following ways.</p>
<p>The icon that is used to install to the homescreen is determined by using the largest icon found in one of the following <code>&lt;link&gt;</code> tags:</p>
<ul>
<li><code>&lt;link rel="icon" sizes="196x196" href="nice-highres.png"&gt;</code> (recommended)</li>
<li><code>&lt;link rel="icon" sizes="192x192" href="nice-highres.png"&gt;</code> (recommended)</li>
<li><code>&lt;link rel="icon" sizes="128x128" href="niceicon.png"&gt;</code></li>
<li><code>&lt;link rel="apple-touch-icon" sizes="128x128" href="niceicon.png"&gt;</code></li>
<li><code>&lt;link rel="apple-touch-icon-precomposed" sizes="128x128" href="niceicon.png"&gt;</code></li>
</ul>
<aside class="caution"><strong>Caution:</strong>The 196px image format is recommended. The last two formats (<code>apple-touch-*</code>) are deprecated, and will be supported only for a short time.</aside>
<aside class="caution"><strong>Caution:</strong>The 192px image format is recommended. The last two formats (<code>apple-touch-*</code>) are deprecated, and will be supported only for a short time.</aside>
<h3 id="icon-label">Icon label</h3>
@ -90,7 +90,7 @@ however, they integrate with the Android environment in the following ways.</p>
&lt;title&gt;Awesome app &lt;/title&gt;
&lt;meta name="viewport" content="width=device-width"&gt;
&lt;meta name="mobile-web-app-capable" content="yes"&gt;
&lt;link rel="icon" sizes="196x196" href="/icon.png"&gt;
&lt;link rel="icon" sizes="192x192" href="/icon.png"&gt;
&lt;/head&gt;
&lt;body&gt;&lt;/body&gt;
&lt;/html&gt;
@ -135,7 +135,7 @@ however, they integrate with the Android environment in the following ways.</p>
<ul>
<li>Do not prompt the user to add your app to the homescreen. There is no way to detect if the app is running installed or not.</li>
<li>Use the large 196px icon format, as in <code>&lt;link rel="icon" sizes="196x196" href="nice-highres.png"&gt;</code> for the highest quality homescreen icons.</li>
<li>Use the large 192px icon format, as in <code>&lt;link rel="icon" sizes="192x192" href="nice-highres.png"&gt;</code> for the highest quality homescreen icons.</li>
<li>Use a noun in your documents title. Make sure the title doesn't contain any information that may change.
For example, for a Calendar app, don't include the current date or time in the app title.<li>
<li>Use <a href="http://docs.webplatform.org/wiki/apis/appcache/ApplicationCache">AppCache</a> to ensure that your app works or presents the user with an experience when they are offline.</li>