Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kakawait/hugo-tranquilpeak-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-12-04 13:28:39 +0300
committerThibaud LeprĂȘtre <thibaud.lepretre@gmail.com>2016-12-04 13:28:39 +0300
commit8d0833dc6d84b765a5f5a0520ca08b883ee7477f (patch)
treec97e11172dd1d3b41083461ed43f14c1b02a65cd /CHANGELOG.md
parentdfb55b0f22f5dfd631655a137754e8fd288585c2 (diff)
Uniformise config key case
Use camelCase over snake_case to be more consistant with Hugo Style and fontmatter closes #25
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md78
1 files changed, 74 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index afa100f..8253b7a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,6 +2,76 @@
All notable changes to this project will be documented in this file.
+## [0.2.0-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/2) - TBD
+
+### Breaking changes
+
+Replace
+
+```toml
+[author]
+ gravatar_email = "your@email.com"
+ google_plus = "+YourGooglePlus"
+```
+
+to
+
+```toml
+[author]
+ gravatarEmail = "your@email.com"
+ googlePlus = "+YourGooglePlus"
+```
+
+Replace
+
+```toml
+[params]
+ clear_reading = ...
+ hierarchical_categories = ...
+ sidebar_behavior = ...
+ cover_image = ...
+ image_gallery = ...
+ thumbnail_image = ...
+ thumbnail_image_position = ...
+ auto_thumbnail_image = ...
+ fb_admin_ids = ...
+ fb_app_id = ...
+ category_pagination = ...
+ archive_pagination = ...
+ tag_pagination = ...
+```
+
+to
+
+```toml
+[params]
+ clearReading = ...
+ hierarchicalCategories = ...
+ sidebarBehavior = ...
+ coverImage = ...
+ imageGallery = ...
+ thumbnailImage = ...
+ thumbnailImagePosition = ...
+ autoThumbnailImage = ...
+ fbAdminIds = ...
+ fbAppId = ...
+ categoryPagination = ...
+ archivePagination = ...
+ tagPagination = ...
+```
+
+Replace
+
+```
+[params.header.right_link]
+```
+
+to
+
+```
+[params.header.rightLink]
+```
+
## [0.1.4-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/9) - 16 nov 2016
- Remove migration scripts ([#45](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/45))
@@ -15,7 +85,7 @@ All notable changes to this project will be documented in this file.
- Fix *archives* pages generation by creating `archive` taxonomy ([#31](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31))
- Use `slug` instead of `title` for *permalink* urls ([#33](https://github.com/kakawait/hugo-tranquilpeak-theme/pull/33))
-### Migration
+### Breaking changes
- [archive page return 404](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/31)
@@ -23,7 +93,7 @@ Add
```toml
[taxonomies]
- archive = "archives"
+ archive = "archives"
```
## [0.1.1-ALPHA](https://github.com/kakawait/hugo-tranquilpeak-theme/milestone/6) - 13 nov 2016
@@ -32,7 +102,7 @@ Add
- **[Breaking changes]** Changes *Google Analytics* config key from `params.google_analytics_id` to official `googleAnalytics` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
- Add parameter to choose between sync/async loading of *Google Analytics* `params.ga.async` ([#21](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21))
-### Migration
+### Breaking changes
- [Migrate google analytics](https://github.com/kakawait/hugo-tranquilpeak-theme/issues/21)
@@ -40,7 +110,7 @@ Replace
```toml
[params]
- google_analytics_id = "UA-XXX-X"
+ google_analytics_id = "UA-XXX-X"
```
to (top level)