mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-09-16 14:23:31 -06:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e92afffb9c | ||
|
e434f916ce | ||
|
328893dd30 | ||
|
7de5f7abe5 | ||
|
930a0e0c36 | ||
|
880f4dc8b0 | ||
|
15a0b6e91b |
31
CHANGELOG.md
31
CHANGELOG.md
@@ -23,6 +23,37 @@ Docs changes made since the latest release:
|
|||||||
|
|
||||||
- N/A
|
- N/A
|
||||||
|
|
||||||
|
## Release v0.8.2
|
||||||
|
|
||||||
|
Hi everyone! This patch release fixes a bug where a default layout with unrestricted `scope` (`path: ""`) breaks JavaScript functionality. Users who do not use a default layout with unrestricted `scope` should not be affected. This should be a straightforward upgrade for all users. Thank you to [@pdmosses] for triaging and fixing the bug!
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- Fixed: Protect theme JS file from front matter default for layout by [@pdmosses] in [#1447]
|
||||||
|
|
||||||
|
[#1447]: https://github.com/just-the-docs/just-the-docs/pull/1447
|
||||||
|
|
||||||
|
## Release v0.8.1
|
||||||
|
|
||||||
|
Hi folks! This patch release fixes a bug introduced in `0.8.0` that affects users who build their sites in strict mode. It is a straightforward upgrade that should require no manual migration changes. Thank you to [@Zarthus] for quickly catching and fixing this bug!
|
||||||
|
|
||||||
|
### Bugfixes
|
||||||
|
|
||||||
|
- Fixed: Liquid filter typo in breadcrumb component (`strip` instead of `trim`) by [@Zarthus] in [#1434]
|
||||||
|
|
||||||
|
### Documentation
|
||||||
|
|
||||||
|
- Build docs site using strict mode and `strict_filters` by [@Zarthus] in [#1435]
|
||||||
|
|
||||||
|
### New Contributors
|
||||||
|
|
||||||
|
- [@Zarthus] made their first contribution in [#1434]
|
||||||
|
|
||||||
|
[@Zarthus]: https://github.com/Zarthus
|
||||||
|
|
||||||
|
[#1434]: https://github.com/just-the-docs/just-the-docs/pull/1434
|
||||||
|
[#1435]: https://github.com/just-the-docs/just-the-docs/pull/1435
|
||||||
|
|
||||||
## Release v0.8.0
|
## Release v0.8.0
|
||||||
|
|
||||||
Hi folks! This first minor release of 2024 has a short number of changes: a large improvement of build times for large sites, a new keyboard shortcut to focus the search bar, and sidebar navigation bugfixes for "pretty" URLs (with `.html` omitted) and the clickable area on Safari. This release has no explicit breaking changes and should be a straightforward upgrade for most (if not all) users.
|
Hi folks! This first minor release of 2024 has a short number of changes: a large improvement of build times for large sites, a new keyboard shortcut to focus the search bar, and sidebar navigation bugfixes for "pretty" URLs (with `.html` omitted) and the clickable area on Safari. This release has no explicit breaking changes and should be a straightforward upgrade for most (if not all) users.
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
just-the-docs (0.8.0)
|
just-the-docs (0.8.2)
|
||||||
jekyll (>= 3.8.5)
|
jekyll (>= 3.8.5)
|
||||||
jekyll-include-cache
|
jekyll-include-cache
|
||||||
jekyll-seo-tag (>= 2.0)
|
jekyll-seo-tag (>= 2.0)
|
||||||
|
@@ -118,6 +118,10 @@ nav_external_links:
|
|||||||
- title: Just the Docs on GitHub
|
- title: Just the Docs on GitHub
|
||||||
url: https://github.com/just-the-docs/just-the-docs
|
url: https://github.com/just-the-docs/just-the-docs
|
||||||
|
|
||||||
|
liquid:
|
||||||
|
error_mode: strict
|
||||||
|
strict_filters: true
|
||||||
|
|
||||||
# Footer content
|
# Footer content
|
||||||
# appears at the bottom of every page's main content
|
# appears at the bottom of every page's main content
|
||||||
|
|
||||||
|
@@ -56,7 +56,7 @@
|
|||||||
{%- for nav_split in nav_anchor_splits -%}
|
{%- for nav_split in nav_anchor_splits -%}
|
||||||
{%- unless forloop.last -%}
|
{%- unless forloop.last -%}
|
||||||
|
|
||||||
{%- assign nav_split_next = nav_anchor_splits[forloop.index] | trim -%}
|
{%- assign nav_split_next = nav_anchor_splits[forloop.index] | strip -%}
|
||||||
|
|
||||||
{%- assign nav_split_test =
|
{%- assign nav_split_test =
|
||||||
nav_split_next | remove_first: nav_list_simple | prepend: nav_list_simple -%}
|
nav_split_next | remove_first: nav_list_simple | prepend: nav_list_simple -%}
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
---
|
---
|
||||||
|
layout: null
|
||||||
---
|
---
|
||||||
(function (jtd, undefined) {
|
(function (jtd, undefined) {
|
||||||
|
|
||||||
|
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
Gem::Specification.new do |spec|
|
Gem::Specification.new do |spec|
|
||||||
spec.name = "just-the-docs"
|
spec.name = "just-the-docs"
|
||||||
spec.version = "0.8.0"
|
spec.version = "0.8.2"
|
||||||
spec.authors = ["Patrick Marsceill", "Matthew Wang"]
|
spec.authors = ["Patrick Marsceill", "Matthew Wang"]
|
||||||
spec.email = ["patrick.marsceill@gmail.com", "matt@matthewwang.me"]
|
spec.email = ["patrick.marsceill@gmail.com", "matt@matthewwang.me"]
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user