Skip to content

Commit 960c8db

Browse files
committedNov 4, 2016
Merge branch 'release/4.0.5'
2 parents ee42347 + 90e7abc commit 960c8db

18 files changed

+57
-30
lines changed
 

‎CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
## [4.0.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5)
2+
3+
### Enhancements
4+
5+
- Update gems: `jekyll-sitemap` (0.12), `jekyll-feed` (0.8).
6+
- Improve next/previous pager links visibility by changing gray color to blue (`$link-color`).
7+
8+
### Bug Fixes
9+
10+
- Fix `.sidebar` flicker/jump when hovered. [#583](https://github.com/mmistakes/minimal-mistakes/issues/583)
11+
12+
### Maintenance
13+
14+
- Move contents of `gh-pages` branch to `master` inside of the `/docs` folder.
15+
116
## [4.0.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4)
217

318
### Enhancements

‎_includes/comments-providers/discourse.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{% if site.comments.discourse.server %}
2-
{% include base_path %}
3-
{% capture canonical %}{{ base_path }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
2+
{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
43
<script type="text/javascript">
54
DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
65
discourseEmbedUrl: '{{ canonical }}' };

‎_includes/paginator.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@
5454
{% if paginator.page == paginator.total_pages %}
5555
<li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
5656
{% else %}
57-
<li><a href="{{ base_path }}/page{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
57+
<li><a href="{{ '/page' | absolute_url }}{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
5858
{% endif %}
5959

6060
{% comment %} Link next page {% endcomment %}
6161
{% if paginator.next_page %}
62-
<li><a href="{{ base_path }}/page{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
62+
<li><a href="{{ '/page' | absolute_url }}{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
6363
{% else %}
6464
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
6565
{% endif %}

‎_layouts/home.html

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
layout: archive
33
---
44

5-
{% include base_path %}
6-
75
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
86

97
{% for post in paginator.posts %}

‎_sass/_navigation.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
font-weight: bold;
132132
text-align: center;
133133
text-decoration: none;
134-
color: mix(#fff, $gray, 50%);
134+
color: $link-color;
135135
border: 1px solid $light-gray;
136136
border-radius: $border-radius;
137137

‎_sass/_sidebar.scss

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
========================================================================== */
88

99
.sidebar {
10+
-webkit-transform: translate3d(0, 0 , 0);
11+
transform: translate3d(0, 0 , 0);
12+
1013
@include clearfix();
1114
margin-bottom: 1em;
1215

1316
@include breakpoint($large) {
1417
@include span(2 of 12);
1518
opacity: 0.75;
1619
-webkit-transition: opacity 0.2s ease-in-out;
17-
transition: opacity 0.2s ease-in-out;
20+
transition: opacity 0.2s ease-in-out;
1821

1922
&:hover {
2023
opacity: 1;

‎docs/_docs/18-history.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,24 @@ permalink: /docs/history/
44
excerpt: "Change log of enhancements and bug fixes made to the theme."
55
sidebar:
66
nav: docs
7-
modified: 2016-11-03T09:49:02-04:00
7+
modified: 2016-11-04T12:36:05-04:00
88
---
99

10+
## [4.0.5](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5)
11+
12+
### Enhancements
13+
14+
- Update gems: `jekyll-sitemap` (0.12), `jekyll-feed` (0.8).
15+
- Improve next/previous pager links visibility by changing gray color to blue (`$link-color`).
16+
17+
### Bug Fixes
18+
19+
- Fix `.sidebar` flicker/jump when hovered. [#583](https://github.com/mmistakes/minimal-mistakes/issues/583)
20+
21+
### Maintenance
22+
23+
- Move contents of `gh-pages` branch to `master` inside of the `/docs` folder.
24+
1025
## [4.0.4](https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4)
1126

1227
### Enhancements

‎docs/_includes/comments-providers/discourse.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{% if site.comments.discourse.server %}
2-
{% include base_path %}
3-
{% capture canonical %}{{ base_path }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
2+
{% capture canonical %}{% if site.permalink contains '.html' %}{{ page.url | absolute_url }}{% else %}{{ page.url | absolute_url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
43
<script type="text/javascript">
54
DiscourseEmbed = { discourseUrl: '//{{ site.comments.discourse.server }}/',
65
discourseEmbedUrl: '{{ canonical }}' };

‎docs/_includes/paginator.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,12 @@
5454
{% if paginator.page == paginator.total_pages %}
5555
<li><a href="#" class="disabled current">{{ paginator.page }}</a></li>
5656
{% else %}
57-
<li><a href="{{ base_path }}/page{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
57+
<li><a href="{{ '/page' | absolute_url }}{{ paginator.total_pages }}/">{{ paginator.total_pages }}</a></li>
5858
{% endif %}
5959

6060
{% comment %} Link next page {% endcomment %}
6161
{% if paginator.next_page %}
62-
<li><a href="{{ base_path }}/page{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
62+
<li><a href="{{ '/page' | absolute_url }}{{ paginator.next_page }}/">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</a></li>
6363
{% else %}
6464
<li><a href="#" class="disabled"><span aria-hidden="true">{{ site.data.ui-text[site.locale].pagination_next | default: "Next" }}</span></a></li>
6565
{% endif %}

‎docs/_layouts/home.html

-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,6 @@
22
layout: archive
33
---
44

5-
{% include base_path %}
6-
75
<h3 class="archive__subtitle">{{ site.data.ui-text[site.locale].recent_posts | default: "Recent Posts" }}</h3>
86

97
{% for post in paginator.posts %}

‎docs/_pages/archive-layout-with-content.md

-1
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,6 @@ Still sticking with science and Isaac Newton's E = MC<sup>2</sup>, which should
213213

214214
This allows you to denote <var>variables</var>.
215215

216-
{% include base_path %}
217216
{% for post in site.pages %}
218217
{% include archive-single.html %}
219218
{% endfor %}

‎docs/_pages/home.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ header:
77
cta_label: "<i class='fa fa-download'></i> Install Now"
88
cta_url: "/docs/quick-start-guide/"
99
caption:
10-
excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.<br /> <small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.4">Latest release v4.0.4</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
10+
excerpt: 'A flexible two-column Jekyll theme. Perfect for personal sites, blogs, and portfolios hosted on GitHub or your own server.<br /> <small><a href="https://github.com/mmistakes/minimal-mistakes/releases/tag/4.0.5">Latest release v4.0.5</a></small><br /><br /> {::nomarkdown}<iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe> <iframe style="display: inline-block;" src="https://ghbtns.com/github-btn.html?user=mmistakes&repo=minimal-mistakes&type=fork&count=true&size=large" frameborder="0" scrolling="0" width="158px" height="30px"></iframe>{:/nomarkdown}'
1111
feature_row:
1212
- image_path: /assets/images/mm-customizable-feature.png
1313
alt: "customizable"

‎docs/_pages/sitemap.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: /sitemap/
55
author_profile: false
66
---
77

8-
A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ base_path }}/sitemap.xml) available for digesting as well.
8+
A list of all the posts and pages found on the site. For you robots out there is an [XML version]({{ "sitemap.xml" | absolute_url }}) available for digesting as well.
99

1010
<h2>Pages</h2>
1111
{% for post in site.pages %}

‎docs/_posts/2010-08-07-post-image-caption.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ tags:
77
- Post Formats
88
---
99

10-
{% include base_path %}
11-
1210
{% capture fig_img %}
13-
![Foo]({{ basepath }}/assets/images/unsplash-gallery-image-3.jpg)
11+
![Foo]({{ "/assets/images/unsplash-gallery-image-3.jpg" | absolute_url }})
1412
{% endcapture %}
1513

1614
<figure>

‎docs/_sass/_navigation.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@
131131
font-weight: bold;
132132
text-align: center;
133133
text-decoration: none;
134-
color: mix(#fff, $gray, 50%);
134+
color: $link-color;
135135
border: 1px solid $light-gray;
136136
border-radius: $border-radius;
137137

@@ -236,9 +236,9 @@
236236
width: 100%;
237237
-webkit-transition: $global-transition;
238238
transition: $global-transition;
239-
-webkit-transform: scaleX(0);
240-
-ms-transform: scaleX(0);
241-
transform: scaleX(0); /* hide*/
239+
-webkit-transform: scaleX(0) translate3d(0, 0 , 0);
240+
-ms-transform: scaleX(0) translate3d(0, 0 , 0);
241+
transform: scaleX(0) translate3d(0, 0 , 0); /* hide*/
242242
}
243243

244244
&:hover:before {

‎docs/_sass/_sidebar.scss

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
========================================================================== */
88

99
.sidebar {
10+
-webkit-transform: translate3d(0, 0 , 0);
11+
transform: translate3d(0, 0 , 0);
12+
1013
@include clearfix();
1114
margin-bottom: 1em;
1215

1316
@include breakpoint($large) {
1417
@include span(2 of 12);
1518
opacity: 0.75;
1619
-webkit-transition: opacity 0.2s ease-in-out;
17-
transition: opacity 0.2s ease-in-out;
20+
transition: opacity 0.2s ease-in-out;
1821

1922
&:hover {
2023
opacity: 1;

‎minimal-mistakes-jekyll.gemspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Gem::Specification.new do |spec|
44
spec.name = "minimal-mistakes-jekyll"
5-
spec.version = "4.0.4"
5+
spec.version = "4.0.5"
66
spec.authors = ["Michael Rose"]
77

88
spec.summary = %q{A flexible two-column Jekyll theme.}
@@ -21,8 +21,8 @@ Gem::Specification.new do |spec|
2121
spec.add_development_dependency "rake", "~> 10.0"
2222

2323
spec.add_runtime_dependency "jekyll-paginate", "~> 1.1"
24-
spec.add_runtime_dependency "jekyll-sitemap", "~> 0.10"
24+
spec.add_runtime_dependency "jekyll-sitemap", "~> 0.12"
2525
spec.add_runtime_dependency "jekyll-gist", "~> 1.4"
26-
spec.add_runtime_dependency "jekyll-feed", "~> 0.5.1"
26+
spec.add_runtime_dependency "jekyll-feed", "~> 0.8"
2727
spec.add_runtime_dependency "jemoji", "~> 0.7"
2828
end

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "minimal-mistakes",
3-
"version": "4.0.4",
3+
"version": "4.0.5",
44
"description": "Minimal Mistakes Jekyll theme npm build scripts",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)
Please sign in to comment.