NexT

Theme for Hexo

⭐ Features

  • Support reprint statement (#89)
  • Refactor vendors (#72)
    vendors:
    + # The default CDN provider of third-party plugins.
    + # Available values: local, jsdelivr, unpkg, cdnjs
    + # Dependencies for `plugins: local`: https://github.com/next-theme/plugins
    + plugins: jsdelivr
  • Image thumbnails in archive page (7b91f8e)
  • Rename per_page to every_page (a3dcac5)
    math:
    - per_page: true
    + every_page: false

🐞 Bug Fixes

  • Fix pjax scroll restoration (#74)
  • Fix .post-title-link position (#76)
  • Fix darkmode post-gallery image opacity (04ced15)
  • Fix id conflict with markdown headerlink (523e39e)
  • Fix .tabs-comment style (8d57b6d)
  • Fix mermaid background color (376d718)
  • Fix search result position (bc89931)

🛠 Improvements

  • Optimize prism: support copy_button (04da779)
  • Refactor layout (f76c0d8)
  • Optimize canonical URL (219adff)
  • Optimize Algolia Search (92bdb32)
  • Refactor Gemini style (19160b8)
  • Separate the styles of different schemes (bdf59f1)
  • Refactor post-footer using flex layout (23d9163)
  • Optimize figcaption style (90d0a5f)
  • Optimize box-shadow of .site-brand-container (402c34e)
  • Optimize the path setting of LiveRe & Valine (5e1b0d0)
  • Update ICP link (#96)
  • Uniform hexadecimal color (#93)

🌀 External Changes

  • Use @next-theme/eslint-config (a96d112)
  • CDN settings for Firebase (ee5b41f)
  • Update MathJax CDN URL (09f0f7b)
  • Update dependency hexo-renderer-marked to v3.1.0 (#94)
  • Update dependency hexo to v5.1.1 (#85)
  • Update dependency mocha to v8.1.3 (#82)
  • Update dependency eslint to v7.7.0 (#69)
  • Update _vendors.yml (7e8458f)

📖 Documentation

  • Update docs (7cd83a4)
  • Update docs (1bbe8f4)

🌍 Localization

  • New Crowdin updates (#91)

For full changes, see the comparison between v8.0.0-rc.5 and v8.0.0

Detailed changes for NexT v8.0.0

💥 Breaking Changes

  • Replace Velocity.js with Animate.css (#41)

🌟 New Features

  • Unit testing using Mocha and Chai (#59)

⭐ Features

  • Remove console reminder (533fea7)
    -# Console reminder if new version released.
    -reminder: false
  • Include additional themes for prism (2e4e1bc)
  • Extract hexo-next-three to plugins (31298d0)
    -# JavaScript 3D library.
    -# Dependencies: https://github.com/next-theme/theme-next-three
    -three:
    - enable: false
    - three_waves: false
    - canvas_lines: false
    - canvas_sphere: false

    vendors:
    ...
    - # JavaScript 3D library
    - # three: //unpkg.com/three@0/build/three.min.js
    - # three_waves: //cdn.jsdelivr.net/gh/next-theme/theme-next-three@1/three-waves.min.js
    - # canvas_lines: //cdn.jsdelivr.net/gh/next-theme/theme-next-three@1/canvas_lines.min.js
    - # canvas_sphere: //cdn.jsdelivr.net/gh/next-theme/theme-next-three@1/canvas_sphere.min.js
    - three:
    - three_waves:
    - canvas_lines:
    - canvas_sphere:
  • New plugin @next-theme/plugins (cb05848)
  • Support event.description in schedule page (e1beb71)

🐞 Bug Fixes

  • The search button is invisible when search service was enabled but menu was empty (#42)
  • Fix id conflict with markdown headerlink (7f3e4b1)
  • Fix sidebar animation issue (79bb4c9)
  • Fix null value of .search-input selector (dca900a)
  • Disable cache when language_switcher is enabled (5d521ca)
  • Reset animation-fill-mode (582ce74)
  • Use @require instead of @import (33723be)
  • Fix mermaid tag (10b577c)

🛠 Improvements

  • Optimize language selector (#52)
  • Update CDN URL (#61)
  • Optimize local search (#64)
  • Rename json to safedump (1905443)
  • Refactor site-nav animation: drop Velocity (659347c)
  • Optimize sidebar-panel animation (1b00414)
  • Use classList.replace (e9addc9)
  • Use Math.hypot & destructure (96406e7)
  • Run lebab (924318a)
  • Update changyan comments (bfa9a75)
  • Refactor next_font helper & NexT.utils.loadComments (e953cbf)
  • Optimize toggle-line (c954bc2)
  • Refactor tags (b6c1aba)
  • Optimize post-gallery style (5883e29)
  • Refactor group-pictures using flex layout (fc68fbe)

🌀 External Changes

  • Update dependency eslint to v7.5.0 (#43)
  • Update dependency eslint-config-theme-next to v1.2.1 (#53)
  • Update dependency mocha to v8.1.0 (#68)
  • Install husky (78da9ab)

📖 Documentation

  • Update for Hexo 5.0 (#58)
  • New Valine options (#62)
  • Update README.md (b8b3f17)
  • Remove Required Node version (f148857)

For full changes, see the comparison between v8.0.0-rc.4 and v8.0.0-rc.5

Detailed changes for NexT v8.0.0-rc.5

💥 Breaking Changes

  • Add prism highlight support (#23)
    codeblock:
    ...
    + # See: https://github.com/PrismJS/prism/tree/master/themes
    + prism:
    + light: prism
    + dark: prism-dark

    vendors:
    ...
    + # Prism
    + # prism: //cdn.jsdelivr.net/npm/prismjs@1/prism.min.js
    + # prism: //cdnjs.cloudflare.com/ajax/libs/prism/1.20.0/prism.min.js
    + prism:
  • Refactor layout (#31)

🌟 New Features

  • Add noscript-warning (6159874)
  • Refactor next_js to support jsdelivr & unpkg (ae21b8b)
    vendors:
    - # Internal path prefix.
    - _internal: lib
    + # Available values: local, jsdelivr, unpkg
    + internal: local

⭐ Features

  • Optimize copy-btn: always provide feedback (c7ea1ab)
    codeblock:
    copy_button:
    - # Show text copy result.
    - show_result: false
  • Remove sidebar.onmobile option (5d2f92e)
    sidebar:
    - # Enable sidebar on narrow view (only for Muse | Mist).
    - onmobile: false
  • Refactor motion (b39ba18)

🐞 Bug Fixes

  • Some minor fixes (5f6271d)
  • Fix invalid selector (b0d92b7)
  • Fix footer & pagination size (413e975)
  • Fix the missing url_for (52111f7)
  • Fix code highlight when copycode disabled (3e8b35a)
  • Some minor fixes (b01a4ed)
  • Fix link-grid overflow & darkmode note color (44ba30e)
  • Fix Pisces sidebar width (b2ae986)
  • Fix compatibility issue with iOS 10-12 (6e60221)

🛠 Improvements

  • Optimize the behavior of post_meta when use_date_for_updated is enabled (241fe98)
  • Optimize pagination style (420095b)
  • Optimize darkmode code color (f055e38)
  • Optimize darkmode kbd color (6d5d471)
  • Optimize the style of custom-logo and sidebar-inner (d194052)
  • Optimize the style of label tag (8e080e7)
  • Optimize darkmode medium-zoom style (e57bf45)
  • Refactor sidebar motion (45d6e04)
  • Optimize algolia-pagination style (701f628)
  • Optimize header-anchor style (6bd195a)
  • Optimize logo-line animation (b34b8e5)
  • Optimize back-to-top style (b8e2ce8)
  • Optimize sidebar-dimmer & search-popup animation (8a5643b)
  • Optimize Gemini & highlight style (e01a204)
  • Optimize post-reward style (3535527)
  • Optimize blockquote-center & post-tags style (0259b95)
  • Optimize sidebar-panel animation (327d8bf)
  • Optimize header animation (5b72a1d)

🌀 External Changes

  • Update dependency eslint to v7.3.1 (#21)
  • Update dependency eslint-config-theme-next to v1.2.0 (#32)
  • Update CDN URL (b9a822c)
  • Update pjax version (ee3be0a)

📖 Documentation

  • Update README.md (073ddc0)
  • Update docs in _config.yml (ee7d13e)
  • Update docs (3aa2a21)
  • Update ISSUE_TEMPLATE (40e32d1)
  • Update README.md (7d25c16)

🌍 Localization

  • New Crowdin translations (#22)

For full changes, see the comparison between v8.0.0-rc.3 and v8.0.0-rc.4

Detailed changes for NexT v8.0.0-rc.4

💥 Breaking Changes

  • Fix darkmode tag-cloud color (cbcd3f0)
    # TagCloud settings for tags page.
    tagcloud:
    - # All values below are same as default, change them by yourself.
    min: 12 # Minimum font size in px
    max: 30 # Maximum font size in px
    - start: "#ccc" # Start color (hex, rgba, hsla or color keywords)
    - end: "#111" # End color (hex, rgba, hsla or color keywords)
    - amount: 200 # Amount of tags, change it if you have more than 200 tags
    + amount: 200 # Total amount of tags
    + orderby: name # Order of tags
    + order: 1 # Sort order
  • Update Valine CDN URL (390058e)
    valine:
    ...
    - notify: false # Mail notifier
    - verify: false # Verification code

🐞 Bug Fixes

  • Some minor fixes (bf3666f)
  • Fix darkmode pagination & badge style (721e5b9)
  • Fix figcaption text overflow (4be820a)
  • Fix pandoc rendering error (17502da)
  • Fix json filter (4013450)
  • Decode TOC link (0d2b3af)

🛠 Improvements

  • Optimize copy-btn & post-edit icon (73dff7c)
  • Run lebab (74fa9ec)
  • Optimize link-grid (ade4f44)

🌀 External Changes

  • Update dependency eslint to v7.1.0 (#11)
  • Update dependency js-yaml to v3.14.0 (#10)

📖 Documentation

  • Update docs for i18n (36808b9)

🌍 Localization

  • New Crowdin translations (#8)

For full changes, see the comparison between v8.0.0-rc.2 and v8.0.0-rc.3

Detailed changes for NexT v8.0.0-rc.3

0%