Skip to content

v6.0.6

Compare
Choose a tag to compare
@LEAFERx LEAFERx released this 15 Mar 13:12
· 910 commits to master since this release

Breaking Changes

Removed duplicated meta tag keywords (#115, #168)

Since Hexo v3.3.5 has already keywords meta tags, NexT decided not to generate keywords meta tags to avoid duplication. This change means if you are still using Hexo < 3.3.5, your site will not generate keywords meta tags for you.

So, from this release minimal requirements for NexT is Hexo v3.3.5 or highter.

Old configuration:

hexo_dir/themes/next/_config.yml

-# Set default keywords (Use a comma to separate)
-keywords: "Hexo, NexT"

New configuration:

hexo_dir/_config.yml

# Set default keywords (Use a comma to separate)
keywords: "Hexo, NexT"

And this keywords will be for homepage only.

For other posts there are no breaking changes and tags/keywords can be setted in old style:

...
tags: [Sidebar, TOC, test]
...

OR

...
tags:
  - Sidebar
  - TOC
  - test
...

Features

  • Added sub-menu feature (#156)
    menu:
      News: / || info-circle
      Docs:
        default: /docs/ || book
        Getting Started: /getting-started/ || flag
        Theme Settings: /theme-settings/ || star
        Third Party Services:
          default: /third-party-services/ || plug
          Algolia Search: /algolia-search/ || adn
        Tag Plugins: /tag-plugins/ || rocket
        Advanced Settings: /advanced-settings/ || rocket
        FAQ's: /faqs/ || life-ring
        Platforms: /platforms/ || retweet

Optimizations

  • Updated translations (#167)
  • Updated README (#166)
  • Updated issue temple (#160)
  • Imporved accessibility (#130)

Bug Fixes

  • Fixed svg confict in Algolia (#173)
  • Fixed margin between img and text (#161)
  • Removed style table-layout: fixed; (#155)
  • Fixed GitHub banner performance (#153)
  • Fixed missing margin for H1 (#149)
  • Fixed Mist margin settings consistence and a small typo (#148)
  • Fixed a security bug in Leancloud Counter (#137, #171)
    Related plugin: hexo-leancloud-counter-security

For full changes, see the comparison between 6.0.5 and 6.0.6