NexT 6.0.4 Released

Breaking Changes

Busuanzi Count (#129)

Old configuration:

-# Show PV/UV of the website/page with busuanzi.
# Get more information on http://ibruce.info/2015/04/04/busuanzi/
busuanzi_count:
- # count values only if the other configs are false
enable: false
- # custom uv span for the whole site
- site_uv: true
- site_uv_header: <i class="fa fa-user"></i>
- site_uv_footer:
- # custom pv span for the whole site
- site_pv: true
- site_pv_header: <i class="fa fa-eye"></i>
- site_pv_footer:
- # custom pv span for one page only
- page_pv: true
- page_pv_header: <i class="fa fa-file-o"></i>
- page_pv_footer:

New configuration:

+# Show Views/Visitors of the website/page with busuanzi.
# Get more information on http://ibruce.info/2015/04/04/busuanzi/
busuanzi_count:
enable: false
+ total_visitors: true
+ total_visitors_icon: user
+ total_views: true
+ total_views_icon: eye
+ post_views: true
+ post_views_icon: eye

Remove signature option and stay only description for exclude users confused when seo: true (#125)

Features

  • Added extlinks on sidebar author links. (#99)
    social_icons:
    ...
    exturl: false
  • Added Turkish translation by https://crowdin.com/profile/intelligencer (#95)
  • Added vendor config for bookmark (#106) and reading_progress (#107)
    vendors:
    ...
    bookmark:
    reading_progress:
  • Added max_content_width config for Gemini Scheme (#103)
    # Manual define the max content width
    # !Only available for Gemini Scheme currently
    # Leave it empty for the default 75% (suggest not less than 1000px)
    max_content_width: 1000px # or 90% for more wide, etc.
  • Added sidebar_width config for Gemini Scheme (#111)
    # Manual define the sidebar width
    # !!Only available for Gemini Scheme currently
    # Leave it empty for the default 240
    sidebar_width:
  • Added Related Posts (#109)
    # Related popular posts
    # Dependencies: https://github.com/tea3/hexo-related-popular-posts
    related_posts:
    enable: false
    title: # custom header, leave empty to use the default one
    display_in_home: false
    params:
    maxCount: 5
    #PPMixingRate: 0.0
    #isDate: false
    #isImage: false
    #isExcerpt: false

Optimizations

  • Update translations for core languages.
  • Update Math and related docs:
    1. Add bootcdn as optional CDN of math engine (#98)
    2. Use jsDelivr as the default math engine CDN (#101)
    3. Add docs about CDNJS blocked by some parts of China.
  • Update: exturl tag — If no arguments exists as title, set title as url (#122)
  • Update: Change default font size to 14px for Code Block (#123)
  • Update algolia search docs with vendors (#119)
  • Update creative commons license (#116)
  • Update description for fonts and highlight_theme (470f026 82ac7af)

Bug Fixes

  • Fixed needmoreshare2 vendors (#104)
  • Fixed: Add missing data-fancybox attribute for fancybox (#126)
  • Fixed justify TOC items in sidebar (#131)
  • Fixed unworked transition in sidebar author links on Mist & Muse (#99)
  • Fixed: Use .length instead of .size() to make it work with jquery 3.1 (#120)

For full changes, see the comparison between 6.0.3 and 6.0.4

Detailed changes for NexT v6.0.4