just-the-docs 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/assets/js/just-the-docs.js +3 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6507efc104163887d74adfed2b3c3330bcce570098f47e4707f894df0a15d664
|
|
4
|
+
data.tar.gz: 193492b735c919ae4c34e3c3eb121f3f20f1a58047a7bc647f2be59e48afb01d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 346c16ca05900cf3dc22a14e0168df56ae5ff613f7cf8bb3504eec4923e9c6c7a1676302f843f72d39e8279fefbb74d505b46de0d1b28af0798b47280df1ab55
|
|
7
|
+
data.tar.gz: 2deebd301d3a0f303dd8c9836da460011fe590d5995bd422b1c443954e74502bb44ecc5c0f31cb9f373904e3b41fb70e1f7173dae5c26e61a26143128ccf384f
|
data/CHANGELOG.md
CHANGED
|
@@ -19,6 +19,16 @@ Code changes to `main` that are *not* in the latest release:
|
|
|
19
19
|
|
|
20
20
|
- N/A
|
|
21
21
|
|
|
22
|
+
## Release v0.6.1
|
|
23
|
+
|
|
24
|
+
Hi all, this is a small patch release that only includes one change: resolving a bug introduced in 0.6.0 that causes a JS error for pages excluded from navigation.
|
|
25
|
+
|
|
26
|
+
### Bugfixes
|
|
27
|
+
|
|
28
|
+
- Fixed: JS error for pages excluded from navigation by [@pdmosses] in [#1332]
|
|
29
|
+
|
|
30
|
+
[#332]: https://github.com/just-the-docs/just-the-docs/pull/1332
|
|
31
|
+
|
|
22
32
|
## Release v0.6.0
|
|
23
33
|
|
|
24
34
|
Hi all, this is a minor release that introduces performance improvements for build times on large sites, correctly sets the `color-scheme` property, and fixes invalid HTML. However, it introduces some potentially-breaking *internal* changes to undocumented features of the theme.
|
data/assets/js/just-the-docs.js
CHANGED
|
@@ -76,7 +76,9 @@ function initNav() {
|
|
|
76
76
|
// The page-specific stylesheet is assumed to have index 1 in the list of stylesheets.
|
|
77
77
|
|
|
78
78
|
function disableHeadStyleSheet() {
|
|
79
|
-
document.styleSheets[1]
|
|
79
|
+
if (document.styleSheets[1]) {
|
|
80
|
+
document.styleSheets[1].disabled = true;
|
|
81
|
+
}
|
|
80
82
|
}
|
|
81
83
|
|
|
82
84
|
{%- if site.search_enabled != false %}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: just-the-docs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.6.
|
|
4
|
+
version: 0.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Marsceill
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-08-
|
|
12
|
+
date: 2023-08-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: bundler
|
|
@@ -209,7 +209,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
209
209
|
- !ruby/object:Gem::Version
|
|
210
210
|
version: '0'
|
|
211
211
|
requirements: []
|
|
212
|
-
rubygems_version: 3.
|
|
212
|
+
rubygems_version: 3.4.10
|
|
213
213
|
signing_key:
|
|
214
214
|
specification_version: 4
|
|
215
215
|
summary: A modern, highly customizable, and responsive Jekyll theme for documentation
|