Skip to content

Commit 7d212bc

Browse files
committed
Update CHANGELOG
1 parent 96149ca commit 7d212bc

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
- Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886)
88
- Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890)
99
- Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
10+
- Remove unnecessary "type" attribute (#4956)
11+
- The "if" means the default is never used (#4955)
12+
- For pages without a title, show the site title only once (#4959)
1013

1114
### Bug Fixes
1215

Rakefile

+4-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ file "docs/_docs/18-history.md" => "CHANGELOG.md" do |t|
107107
f.puts ""
108108
f.puts "{% raw %}"
109109
# Remove H1
110-
changelog = File.read(t.prerequisites.first).gsub(/^# [^\n]*$/m, "").strip
110+
changelog = File.read(t.prerequisites.first)
111+
.gsub(/^# [^\n]*$/m, "")
112+
.gsub(/\(#(\d+)\)$/m, "[#\\1](https://github.com/mmistakes/minimal-mistakes/issues/\\1)")
113+
.strip
111114
f.write changelog
112115
f.puts ""
113116
f.puts "{% endraw %}"

docs/_docs/18-history.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ permalink: "/docs/history/"
55
excerpt: Change log of enhancements and bug fixes made to the theme.
66
sidebar:
77
nav: docs
8-
last_modified_at: '2024-06-27T21:13:13+08:00'
8+
last_modified_at: '2024-08-20T17:04:07+08:00'
99
toc: false
1010
---
1111

@@ -22,6 +22,9 @@ toc: false
2222
- Add RTL Support. [#4886](https://github.com/mmistakes/minimal-mistakes/pull/4886)
2323
- Add missing Polish translation. [#4890](https://github.com/mmistakes/minimal-mistakes/pull/4890)
2424
- Rewrite most directions with [CSS logical properties](https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_logical_properties_and_values).
25+
- Remove unnecessary "type" attribute [#4956](https://github.com/mmistakes/minimal-mistakes/issues/4956)
26+
- The "if" means the default is never used [#4955](https://github.com/mmistakes/minimal-mistakes/issues/4955)
27+
- For pages without a title, show the site title only once [#4959](https://github.com/mmistakes/minimal-mistakes/issues/4959)
2528

2629
### Bug Fixes
2730

0 commit comments

Comments
 (0)