From 1c6bd0d9e2243ac0b13d228bc46aefac8fa1bcb1 Mon Sep 17 00:00:00 2001 From: Pablo Alonso Date: Fri, 31 Jan 2025 20:48:53 +0100 Subject: [PATCH 01/30] Fix typo in docs/_docs/05-configuration.md (#5106) --- docs/_docs/05-configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_docs/05-configuration.md b/docs/_docs/05-configuration.md index 04b97b1e1a5e..09272ec6f554 100644 --- a/docs/_docs/05-configuration.md +++ b/docs/_docs/05-configuration.md @@ -1232,7 +1232,7 @@ If you care at all about performance (and really who doesn't) compressing the HT If you're hosting with GitHub Pages there aren't many options afforded to you for optimizing the HTML Jekyll generates. Thankfully there is some Liquid wizardry you can use to strip whitespace and comments to reduce file size. -There's a variety of configurations and caveats to using the `compress` layout, so be sure to read through the [documentation](http://jch.penibelst.de/) if you decide to make change the defaults set in the theme's `_config.yml`. +There's a variety of configurations and caveats to using the `compress` layout, so be sure to read through the [documentation](http://jch.penibelst.de/) if you decide to change the defaults set in the theme's `_config.yml`. ```yaml compress_html: From cb140fc5e648c6d808d444a34b6126c43f87d8bd Mon Sep 17 00:00:00 2001 From: Jan De Luyck <5451787+jdeluyck@users.noreply.github.com> Date: Sat, 8 Feb 2025 14:29:29 +0100 Subject: [PATCH 02/30] Mastodon button color (#5109) --- _sass/minimal-mistakes/_buttons.scss | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/_sass/minimal-mistakes/_buttons.scss b/_sass/minimal-mistakes/_buttons.scss index 87e705cd6572..d30050bf3c2c 100644 --- a/_sass/minimal-mistakes/_buttons.scss +++ b/_sass/minimal-mistakes/_buttons.scss @@ -39,7 +39,8 @@ (info, $info-color), (facebook, $facebook-color), (twitter, $twitter-color), - (linkedin, $linkedin-color); + (linkedin, $linkedin-color), + (mastodon, $mastodon-color); @each $buttoncolor, $color in $buttoncolors { &--#{$buttoncolor} { From af81ee840f2c146447cc2aceacc119ae4f5027c6 Mon Sep 17 00:00:00 2001 From: Lukas Vermeer Date: Fri, 14 Feb 2025 15:46:03 +0100 Subject: [PATCH 03/30] Tweak contrast skin $primary-color to adhere to WCAG guidelines (#5126) --- _sass/minimal-mistakes/skins/_contrast.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_sass/minimal-mistakes/skins/_contrast.scss b/_sass/minimal-mistakes/skins/_contrast.scss index 38283b8f6fe4..a8237878c181 100644 --- a/_sass/minimal-mistakes/skins/_contrast.scss +++ b/_sass/minimal-mistakes/skins/_contrast.scss @@ -5,7 +5,7 @@ /* Colors */ $text-color: #000 !default; $muted-text-color: $text-color !default; -$primary-color: #ff0000 !default; +$primary-color: #b60000 !default; $border-color: mix(#fff, $text-color, 75%) !default; $footer-background-color: #000 !default; $link-color: #0000ff !default; From d90b7e5b3ede1884de1c38236fe433ca03e88a85 Mon Sep 17 00:00:00 2001 From: iBug Date: Fri, 14 Feb 2025 22:47:26 +0800 Subject: [PATCH 04/30] Update CHANGELOG and history --- CHANGELOG.md | 2 ++ docs/_docs/18-history.md | 4 +++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18d1d307ea31..fff61828b3fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ - Use `documents-collection.html` partial in `home` layout. - Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003) - Add provider and comments info to `single.html` layout for non-production. (#5068) +- Tweak contrast skin $primary-color to adhere to WCAG guidelines. (#5126) ### Bug Fixes @@ -23,6 +24,7 @@ - Fix bad <figure> HTML if "alt" contains quotes. - Fix extra newline generated in `_includes/post_pagination.html`. - Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042) +- Fix typo in "Configuration" (#5106) ### Documentation & Maintenance diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index 2e881ff50bdc..f9da68e7bc08 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -5,7 +5,7 @@ permalink: "/docs/history/" excerpt: Change log of enhancements and bug fixes made to the theme. sidebar: nav: docs -last_modified_at: '2025-01-02T02:21:49+08:00' +last_modified_at: '2025-02-14T22:47:24+08:00' toc: false --- @@ -28,6 +28,7 @@ toc: false - Use `documents-collection.html` partial in `home` layout. - Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003) - Add provider and comments info to `single.html` layout for non-production. [#5068](https://github.com/mmistakes/minimal-mistakes/issues/5068) +- Tweak contrast skin $primary-color to adhere to WCAG guidelines. [#5126](https://github.com/mmistakes/minimal-mistakes/issues/5126) ### Bug Fixes @@ -38,6 +39,7 @@ toc: false - Fix bad <figure> HTML if "alt" contains quotes. - Fix extra newline generated in `_includes/post_pagination.html`. - Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042) +- Fix typo in "Configuration" [#5106](https://github.com/mmistakes/minimal-mistakes/issues/5106) ### Documentation & Maintenance From 90ab9d28b90f4abf63f12dd570ef2c428ca569a2 Mon Sep 17 00:00:00 2001 From: iBug Date: Wed, 2 Apr 2025 23:07:46 +0800 Subject: [PATCH 05/30] _config.yml: Add minimal-mistakes-jekyll.gemspec to exclude, fix #5193 --- CHANGELOG.md | 1 + _config.yml | 1 + docs/_docs/18-history.md | 3 ++- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fff61828b3fa..f7aa43225a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,6 +25,7 @@ - Fix extra newline generated in `_includes/post_pagination.html`. - Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042) - Fix typo in "Configuration" (#5106) +- bundle exec jekyll serve will fail if more than once (#5193) ### Documentation & Maintenance diff --git a/_config.yml b/_config.yml index af7d57221b02..85149179e6cd 100644 --- a/_config.yml +++ b/_config.yml @@ -184,6 +184,7 @@ exclude: - gulpfile.js - LICENSE - log + - minimal-mistakes-jekyll.gemspec - node_modules - package.json - package-lock.json diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index f9da68e7bc08..a1ebc1b1e8dd 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -5,7 +5,7 @@ permalink: "/docs/history/" excerpt: Change log of enhancements and bug fixes made to the theme. sidebar: nav: docs -last_modified_at: '2025-02-14T22:47:24+08:00' +last_modified_at: '2025-04-02T23:07:42+08:00' toc: false --- @@ -40,6 +40,7 @@ toc: false - Fix extra newline generated in `_includes/post_pagination.html`. - Hide hidden links & remove the overlay when one is clicked. [#5042](https://github.com/mmistakes/minimal-mistakes/pull/5042) - Fix typo in "Configuration" [#5106](https://github.com/mmistakes/minimal-mistakes/issues/5106) +- bundle exec jekyll serve will fail if more than once [#5193](https://github.com/mmistakes/minimal-mistakes/issues/5193) ### Documentation & Maintenance From 903ad6596c586d1764ef5d984f0a00f4b6cc3027 Mon Sep 17 00:00:00 2001 From: vyshnaviJammi <162717438+vyshnaviJammi@users.noreply.github.com> Date: Fri, 18 Apr 2025 08:21:01 +0530 Subject: [PATCH 06/30] Update Social Share Buttons to Reflect Twitter Rebranding to X (#5210) --- _includes/social-share.html | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/_includes/social-share.html b/_includes/social-share.html index 847baa32d5da..b690b5d98429 100644 --- a/_includes/social-share.html +++ b/_includes/social-share.html @@ -1,9 +1,15 @@ From 8193f6071e4cb9b5862efeec307a0c273646470b Mon Sep 17 00:00:00 2001 From: iBug Date: Fri, 18 Apr 2025 10:52:20 +0800 Subject: [PATCH 07/30] Update CHANGELOG and history --- CHANGELOG.md | 1 + docs/_docs/18-history.md | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f7aa43225a35..1b7f6b2c45a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003) - Add provider and comments info to `single.html` layout for non-production. (#5068) - Tweak contrast skin $primary-color to adhere to WCAG guidelines. (#5126) +- Update social share buttons to reflect Twitter rebranding to X (#5210) ### Bug Fixes diff --git a/docs/_docs/18-history.md b/docs/_docs/18-history.md index a1ebc1b1e8dd..8d0459f1f775 100644 --- a/docs/_docs/18-history.md +++ b/docs/_docs/18-history.md @@ -5,7 +5,7 @@ permalink: "/docs/history/" excerpt: Change log of enhancements and bug fixes made to the theme. sidebar: nav: docs -last_modified_at: '2025-04-02T23:07:42+08:00' +last_modified_at: '2025-04-18T10:52:16+08:00' toc: false --- @@ -29,6 +29,7 @@ toc: false - Add Bulgarian translation. [#5003](https://github.com/mmistakes/minimal-mistakes/pull/5003) - Add provider and comments info to `single.html` layout for non-production. [#5068](https://github.com/mmistakes/minimal-mistakes/issues/5068) - Tweak contrast skin $primary-color to adhere to WCAG guidelines. [#5126](https://github.com/mmistakes/minimal-mistakes/issues/5126) +- Update social share buttons to reflect Twitter rebranding to X [#5210](https://github.com/mmistakes/minimal-mistakes/issues/5210) ### Bug Fixes From 126f71694f23a992c599082b4a4c3e332f6d41e8 Mon Sep 17 00:00:00 2001 From: Paul Gross Date: Tue, 22 Apr 2025 20:54:28 -0700 Subject: [PATCH 08/30] Add a "Share on Bluesky" button (#5179) --- _includes/social-share.html | 4 ++++ _sass/minimal-mistakes/_buttons.scss | 3 ++- _sass/minimal-mistakes/_variables.scss | 1 + 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/_includes/social-share.html b/_includes/social-share.html index b690b5d98429..2a4c699059b5 100644 --- a/_includes/social-share.html +++ b/_includes/social-share.html @@ -12,4 +12,8 @@