From 9fa7b23507328d1cbab871a17e697b5fa03d1593 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Tue, 31 May 2016 12:37:17 -0400 Subject: [PATCH 1/3] Update CHANGELOG --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d6fb8667..ebbd9262 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## [3.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.1) + +### Bug Fixes + +- Remove need for "double tapping" masthead menu links on iOS devices. [#315](https://github.com/mmistakes/minimal-mistakes/issues/315) + +### Maintenance + +- Add `ISSUE_TEMPLATE.md` for improve issue submission process. + ## [3.2.0](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.0) ### Bug Fixes From b7185c81559594af62f88c57ab8f0ee152a0a3d9 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 1 Jun 2016 21:26:14 -0400 Subject: [PATCH 2/3] Add support for gallery image captions in Magnific Popup overlays - Apply optional `title` attribute to image anchors that trigger Magnific Popup overlays - Close #334 --- _includes/gallery | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/_includes/gallery b/_includes/gallery index 9e6f31ea..f1ef8c10 100644 --- a/_includes/gallery +++ b/_includes/gallery @@ -25,6 +25,7 @@ {% else %} "{{ img.url | prepend: "/images/" | prepend: base_path }}" {% endif %} + {% if img.title %}title="{{ img.title }}"{% endif %} > {% if img.alt %}{{ img.alt }}{% endif %} + alt="{% if img.alt %}{{ img.alt }}{% endif %}"> {% else %} {% if img.alt %}{{ img.alt }}{% endif %} + alt="{% if img.alt %}{{ img.alt }}{% endif %}"> {% endif %} {% endfor %} {% if include.caption %} From 34d2bdf049a8375a58aa2cb4489ad5cd21988938 Mon Sep 17 00:00:00 2001 From: Michael Rose Date: Wed, 1 Jun 2016 21:31:45 -0400 Subject: [PATCH 3/3] Update CHANGELOG --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ebbd9262..27164cc6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [3.2.2](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.2) + +### Enhancement + +- Add support for image captions in Magnific Popup overlays via the [`gallery` helper](https://github.com/mmistakes/minimal-mistakes/issues/334) + ## [3.2.1](https://github.com/mmistakes/minimal-mistakes/releases/tag/3.2.1) ### Bug Fixes