Releases: kakawait/hugo-tranquilpeak-theme
0.4.2-BETA
Notables changes
- Support prism.js syntax highlighter in addition to highlight.js (#24)
- Upgrade external JS dependencies
- Fix issue where link to every posts is display inside archive (#203)
- Fix issue on global property
thumbnailimageposition
which was ignored (#179) - Add global property to allow swapping pagination (#202)
Breaking changes
Since new syntax highlighter prism.js, you have to configure which syntax highlighter you want to use between highlight.js and prism.js. However if you don't configure it, no syntax highligh will be apply (where previously highlight.js was forced by default).
Please upgrade you're config.toml
(you can checkout exampleSite/config.toml
to see sample) to re-add highlight.js as syntax highlighter (except if you don't need it):
0.4.1-BETA
Notable changes
- Fix regression on sharing options link generation bug, that break shares (#196)
0.4.0-BETA
WARNING
Please upgrade to >= 0.4.1-BETA
due to regression on sharing options link generation
Notable changes
- Fix menu ordering (#149, #150)
- Synch from Hexo Tranquilpeak theme 1.10 (#147, #132)
- Italian translation
showMeta
&showActions
(see user doc for more details)- Extensible Sharing options (see user doc for more details)
- XLG side bar bug on Edge
- OLDER POSTS Button Overlaps Sidebar
- Print media queries
- Load external resources using SRI (#159)
- revamp HLjs usage to fix highligthing bugs (#154, #160)
- Improve
customJS
andcustomCSS
- Add theme version on meta tag (#140)
0.3.1-BETA
0.3.0-BETA
0.2.3-ALPHA
Notable changes
- CSS and JS imports customization (#120) (thank you yamila-moreno)
two news settings:
customCSS = ["css/foo.css"]
customJS = ["js/foo.js"]
That allow you to inject your own CSS
or JS
Breaking changes
Related to new Next and Previous behavior #118, nav is now working like following
Next -> Newer post
Previous -> Older post
0.2.2-ALPHA
0.2.1-ALPHA
Notable changes
- Easy customization of head and foot via
/layouts/partials/(head|foot)_(start|end).html
(#80) (thank you @blaubaer) - New front matters to hide/show pagination, social buttons and tags (#81) (thank you @blaubaer)
- Sidebar author avatar link modifiable (#81) (thank you @blaubaer)
[params.sidebar.profile]
url = ...
- Alert shortcode support markdown content (#91)
{{< alert info >}}
Praesent diam elit, **interdum** ut [pulvinar](http://foo.bar) placerat, imperdiet at magna.
{{< /alert >}}
- Add basic post archetype (#76)
- Remove
en.yaml
symlink (#84) - Fix gravatar integration that was broken (#87)
- Fix missing css for post meta (#89)
- Fix front matters
coverSize
(#93)
Breaking changes
Related to #84, language code en
does not exist anymore.
Replace if relevant
languageCode = "en"
defaultContentLanguage = "en"
to
languageCode = "en-us"
defaultContentLanguage = "en-us"
0.2.0-ALPHA
Notable changes
- De-bundlize every external scripts/css (#66) for many reasons:
- To use browser cache
- To reduce git repo size
- To easily upgrade dependencies without installing dev env
- First iteration for i18n support (#9), theme currently support following language:
en-us
fr-fr
es-es
ja
pt-br
ru
zh-cn
zh-tw
vi
(thank you @Kiennh)de-de
(thank you @Martin1001)
- Allow some customization on copyright section (#48)
using
[params.footer]
copyright = ...
like
[params.footer]
copyright = "<a href=\"https://github.com/kakawait\">kakawait</a>"
- Add fallback to
monospace
whenMenlo
font is not installed (#68) - Update fontawesome to 4.7.0 (#58)
- Add horizontal scrolling for scrollblock (#71) (thank you @jeremywho)
- Fix missing blog post title when using caption (#65)
- Fix vertical scrolling page opening on Firefox (#69)
Breaking changes
Replace
[author]
gravatar_email = "your@email.com"
google_plus = "+YourGooglePlus"
to
[author]
gravatarEmail = "your@email.com"
googlePlus = "+YourGooglePlus"
Replace
[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
[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
Notable changes
- Remove migration scripts (#45)