diff --git a/CHANGELOG.md b/CHANGELOG.md index 451f742..a14c54d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## [0.15.5] - 2024-07-21 +### Added +- `target` option to the links in the menu [#23]. + +### Fixed +- Allow to translate the title of the Archive pages [#24]. +- TOC i18n is not used in the template [#22]. +- Color of the page titles. + ## [0.15.4] - 2024-06-22 ### Fixed - Copy the files uploaded by the CMS [#21]. @@ -220,7 +229,11 @@ First version [#17]: /~https://github.com/lumeland/theme-simple-blog/issues/17 [#19]: /~https://github.com/lumeland/theme-simple-blog/issues/19 [#21]: /~https://github.com/lumeland/theme-simple-blog/issues/21 +[#22]: /~https://github.com/lumeland/theme-simple-blog/issues/22 +[#23]: /~https://github.com/lumeland/theme-simple-blog/issues/23 +[#24]: /~https://github.com/lumeland/theme-simple-blog/issues/24 +[0.15.5]: /~https://github.com/lumeland/theme-simple-blog/compare/v0.15.4...v0.15.5 [0.15.4]: /~https://github.com/lumeland/theme-simple-blog/compare/v0.15.3...v0.15.4 [0.15.3]: /~https://github.com/lumeland/theme-simple-blog/compare/v0.15.2...v0.15.3 [0.15.2]: /~https://github.com/lumeland/theme-simple-blog/compare/v0.15.1...v0.15.2 diff --git a/src/archive.page.js b/src/archive.page.js index 4757a54..45546b1 100644 --- a/src/archive.page.js +++ b/src/archive.page.js @@ -16,7 +16,7 @@ export default function* ({ search, paginate, i18n }) { yield { ...data, - title: i18n.nav.archive_title + title: i18n.nav.archive_title, }; } }