jekyll_patternbot 0.18.0 → 0.19.0
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 +8 -0
- data/_layouts/patternbot_pattern_lib.html +2 -2
- data/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b114596e8b055787866a9ffdafe8373e6bfc42d2d947b9537e76a10f1c5e383
|
4
|
+
data.tar.gz: 75464c6f93a5490db5a88d8e2a377e67e7a54e1c5cd3bcddfd0226b1090c15af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8ab013e732eec6dd3193dee69fc8629a209aff0cc42d9e6fe4bfab73e8b0e45d434add2377c123c5c62af6fb5256537d5df14e4f97ecf5f942deeeabbc3c2fc
|
7
|
+
data.tar.gz: 315bdd7c670e7d2cb61c248e52d2b46eccadd0b18decef035684ac75eff47e8b8caf5205f65745f62ddef8493f46aa45b5e42aa052839032aef1e3041c775879
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ Jekyll Patternbot adheres to [Semantic Versioning](http://semver.org/).
|
|
5
5
|
|
6
6
|
---
|
7
7
|
|
8
|
+
## [0.19.0] — 2019-01-16
|
9
|
+
|
10
|
+
### Fixed
|
11
|
+
|
12
|
+
- The “Utilities” section was showing when there was no theme file.
|
13
|
+
|
14
|
+
---
|
15
|
+
|
8
16
|
## [0.18.0] — 2019-01-16
|
9
17
|
|
10
18
|
### Changed
|
@@ -124,7 +124,7 @@
|
|
124
124
|
</a>
|
125
125
|
</li>
|
126
126
|
{% endif %}
|
127
|
-
{%
|
127
|
+
{% if page._PatternbotData.css.theme.utilities and page._PatternbotData.css.theme.utilities != empty %}
|
128
128
|
<li role="presentation">
|
129
129
|
<a class="gutter pad-t-1-4 pad-b-1-4 block" role="tab" aria-controls="utilities" href="#utilities">
|
130
130
|
<div class="relative">
|
@@ -135,7 +135,7 @@
|
|
135
135
|
</div>
|
136
136
|
</a>
|
137
137
|
</li>
|
138
|
-
{%
|
138
|
+
{% endif %}
|
139
139
|
{% unless page._PatternbotData.icons == empty %}
|
140
140
|
<li role="presentation">
|
141
141
|
<a class="gutter pad-t-1-4 pad-b-1-4 block" role="tab" aria-controls="icons" href="#icons">
|
data/version.rb
CHANGED