just-the-docs 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d446ba90f56256475c5081e27d1a5f344210001ae32a51b180946ce22a2981ae
4
- data.tar.gz: c77e78250f79451b833b4b5482069a978c92933e89079f0efcc67fa6f161fa38
3
+ metadata.gz: 6507efc104163887d74adfed2b3c3330bcce570098f47e4707f894df0a15d664
4
+ data.tar.gz: 193492b735c919ae4c34e3c3eb121f3f20f1a58047a7bc647f2be59e48afb01d
5
5
  SHA512:
6
- metadata.gz: 99744850f76f7660bc97b00d6fcbf2acd9f9495c466fc7c3f0a65474fcea05c94e5448f8b16be0d90f39a76e6e7f1c08bd8b64348924179421a46a40a9767c7f
7
- data.tar.gz: 9ea114f0cd183928b053e40ba2a6474fe2936b4bfcc34b2956643ff5e6ef1c11db0b2fcb9265f830467af1e697b076a53b0e90eb24699bbdc11182a9ce67d8fb
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.
@@ -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].disabled = true;
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.0
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-20 00:00:00.000000000 Z
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.3.7
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