Hugo Tranquilpeak Theme Versions Save

A gorgeous responsive theme for Hugo blog framework

0.4.2-BETA

6 years ago

Notables changes

  • 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):

0.4.1-BETA

6 years ago

Notable changes

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

0.4.0-BETA

6 years ago

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

0.3.1-BETA

7 years ago

Notable changes

  • 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.1.0-ALPHA

7 years ago

🎉 First release 🎉

0.1.1-ALPHA

7 years ago

Notable changes

  • 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"

0.1.2-ALPHA

7 years ago

Notable changes

  • 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.3-ALPHA

7 years ago

Notable changes

  • Remove unused npm deps (#43)

0.1.4-ALPHA

7 years ago

Notable changes

  • Remove migration scripts (#45)

0.2.0-ALPHA

7 years ago

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 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 = "[email protected]"
    google_plus = "+YourGooglePlus"

to

[author]
    gravatarEmail = "[email protected]"
    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]