Skip to content

Latest commit

 

History

History
327 lines (238 loc) · 13.8 KB

CHANGELOG.md

File metadata and controls

327 lines (238 loc) · 13.8 KB

Change Log

All notable changes to this project will be documented in this file.

0.4.3-BETA - 12 nov 2017

  • Typo fix from highligth.js to correct on highlight.js (#231) (thank you @zacbook)
  • Russian translation enhancement (#227)

Breaking changes

Since I did an error on highlight.js for parameter syntaxHighlighter, sorry but you have to change it again for the correct typo

[params]
  syntaxHighlighter = "highlight.js"

0.4.2-BETA - 1 nov 2017

  • Support prism.js syntax highlighter in addition to highlight.js (#24)
  • Upgrade external JS dependencies
    • Jquery 2.1.3 to 2.2.4 (#214)
    • Fancybox 2.1.4 to 2.1.7 (#215)
    • Highlight 9.8.0 to 9.12.0 (#219)
  • 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):

[params]
  # There is a typo on highligth.js (which should be highlight.js instead, please checkout version 0.4.3-BETA to get fix)
  syntaxHighlighter = "highligth.js"

0.4.1-BETA - 11 sep 2017

  • Fix sharing options link generation bug, that break shares (#196)

0.4.0-BETA - 10 sep 2017

  • 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 highlighting bugs (#154, #160)
  • Improve customJS and customCSS
    • Now support both abs and rel url (#155)
    • Add more customization than just url (#163)
  • Add theme version on meta tag (#140)

Breaking changes

In order to fix menu ordering, you have to upgrade you config.toml to avoid any menu weight equals to 0. See https://github.com/kakawait/hugo-tranquilpeak-theme/commit/f4feb3261381bd9a77be4da66d8466322886eb22#diff-991d2a2fe208cdee83955ad6e9a323a7 to get an full example.

With new Sharing options that allow extensible list of sharing options, there is no more hardcoded sharing option inside template. Thus sharing options: Facebook, Twitter and Google plus should be reported inside your config.toml (you can checkout exampleSite/config.toml to see sample):

[params]
  [[params.sharingOptions]]
    name = "Facebook"
    icon = "fa-facebook-official"
    url = "https://www.facebook.com/sharer/sharer.php?u=%s"

  [[params.sharingOptions]]
    name = "Twitter"
    icon = "fa-twitter"
    url = "https://twitter.com/intent/tweet?text=%s"

  [[params.sharingOptions]]
    name = "Google+"
    icon = "fa-google-plus"
    url = "https://plus.google.com/share?url=%s"

0.3.1-BETA - 15 apr 2017

  • Fix Merriweather font to support non latin chars (#129, #142, #143)
  • Fix exampleSite/config.toml about customCSS and customJS (#137, #141)
  • Add meta tag theme that will contain theme version (#140, #144)

0.3.0-BETA - 9 apr 2017

  • Update minimun requirement to Hugo 0.20 (#134)
  • Fix warning from Hugo 0.19 (#125) (thank you jmugz3)
  • Hugo 0.20 fix 404's page for archive (#111)

Breaking changes

Do not support anymore Hugo version < 0.20!

0.2.3-ALPHA - 31 mar 2017

two news settings:

customCSS = ["css/foo.css"]
customJS = ["js/foo.js"]

That allow you to inject your own CSS or JS

  • Fix nav since Hugo 0.18 (#119, #122)
  • Change Next and Previous behavior (#118, #122)

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 - 14 feb 2017

0.2.1-ALPHA - 8 jan 2017

  • 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 - 4 dec 2016

  • 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 when Menlo 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 - 16 nov 2016

  • Remove migration scripts (#45)

0.1.3-ALPHA - 16 nov 2016

  • Remove unused npm deps (#43)

0.1.2-ALPHA - 16 nov 2016

  • Fix archives pages generation by creating archive taxonomy (#31)
  • Use slug instead of title for permalink urls (#33)

Breaking changes

Add

[taxonomies]
    archive = "archives"

0.1.1-ALPHA - 13 nov 2016

  • Upgrade Google Analytics script to do not use anymore ga.js which is now deprecated (#21)
  • [Breaking changes] Changes Google Analytics config key from params.google_analytics_id to official googleAnalytics (#21)
  • Add parameter to choose between sync/async loading of Google Analytics params.ga.async (#21)

Breaking changes

Replace

[params]
    google_analytics_id = "UA-XXX-X"

to (top level)

googleAnalytics = "UA-XXX-X"