Skip to content

Releases: Creatiwity/gatsby-plugin-favicon

Minor fixes and documentation

03 Apr 09:42
2d987d4
Compare
Choose a tag to compare
  • Remove opengraph and twitter from documentation because they weren't used (thank you @tdharmon)
  • Update dependencies and peer dependencies - fixes #48 (thank you @mikelax for the report and @RomanGotsiy for the reminder)

WebApp Manifest Configuration - 3.1.0

24 Jul 22:18
Compare
Choose a tag to compare

This version adds support of WebApp manifest configuration. You just have to add these parameters to the plugin options:

{
    // WebApp Manifest Configuration
    appName: 'Gatsby site',
    appDescription: null,
    developerName: null,
    developerURL: null,
    dir: 'auto',
    lang: 'en-US',
    background: '#fff',
    theme_color: '#fff',
    display: 'standalone',
    orientation: 'any',
    start_url: '/?homescreen=1',
    version: '1.0'
}

title is now deprecated in favor of appName.

Gatsby v2 - 3.0.0

24 Jul 08:47
8e85b8b
Compare
Choose a tag to compare

Welcome to Gatsby v2!

This version is a full rewrite of the HTML generator. It uses the markup generated by favicons-webpack-plugin and inserts it in the Gatsby workflow. For now, I removed the option to disable HTML generation from the previous version.

Feel free to report any bug or feature.