Update 3.5.23

New: Meta tags for adding web app to device home screens. If the file with the same name is found in the root then the corresponding meta tag is added.

  • <link rel="manifest" href="manifest.json" /> - for Google Android devices. May become W3C standard. See here for more info.
  • <meta name="msapplication-config" content="msapplication-config.xml" /> - for Microsoft Windows devices. See here for more info.
  • <link rel="apple-touch-icon" sizes="76x76" href="icon-76x76.png" /> - for Apple devices.
  • <link rel="apple-touch-icon" sizes="120x120" href="icon-120x120.png" /> - for Apple devices.
  • <link rel="apple-touch-icon" sizes="152x152" href="icon-152x152.png" /> - for Apple devices.
  • <link rel="apple-touch-icon" sizes="180x180" href="icon-180x180.png" /> - for Apple devices.

New: Meta tag for application name: <meta name="application-name" content="My Web Application" />

New: Meta tag for associating an image to an article. Uses open graph protocol developed by Facebook. <meta property="og:image" content="http://www.yoursite.com/myimage.jpg" />