Skip to content

Releases: theNewDynamic/gohugo-theme-ananke

v2.9.2

03 May 17:58
803a5f2
Compare
Choose a tag to compare

Just a cherry-pick of @ramiro's #685

Full Changelog: v2.9.1...v2.9.2

v2.9.1

13 Jun 14:50
470ea40
Compare
Choose a tag to compare

This is minor release with bug fixes and some improvements.

Social: Disable sharing/follow per services

You can now decide to opt out of "Follow on..." or "Share on..." for some social services. Many users want their visitors to be able to "Share on Facebook" while not having a "Facebook Page" themselves to promote. See here for more information.

Others

  • Add Hebrew localization strings.
  • Fix nasty featured image URL bug when deploying site in a sub directory

What's Changed

New Contributors

Full Changelog: v2.9.0...v2.9.1

v2.9.0

21 Apr 18:50
Compare
Choose a tag to compare

minVersion

The most important change is the theme updating it's minVersion to Hugo 0.84.0 from Hugo 0.64.0.
This is never a light decision and the last time we did it was January of last year! But in order to maintain retro-compatibility, sometimes you do have to upgrade... (Read about the motivation here)

While this might not break your site yet (unless you're running 0.67.1 or lower), it's strongly encouraged to upgrade your project to Hugo 0.84.0 or newer.

Localization

Dates

If you're using Hugo 0.87.0 and above, the project's dates can be localized using Hugo's date formatting layouts as date_format parameter

Language Direction

The theme now supports language direction with a layer of dedicated CSS. It also adds the dir attribute on the HTML if languageDirection is set.

Other

  • Japanese localization has been added.
  • The "By {author}" string is now localized. Except for language where it's not applicable, in which case it's absent.
  • more localization fixes are listed below.

What's Changed

New Contributors

Full Changelog: v2.8.1...v2.9.0

v2.8.1

02 Feb 18:48
Compare
Choose a tag to compare

This release introduces one potential styling change for users overwriting some limited template files with their own. Read below

Set Content Font Color

You can now set the font color of the main content both globally and on individual pages. See README

Private Content

User can now use private: true Front Matter key to use a prevent search engine indexing on a given page. See README

Render vs partial

This release enforce the use of .Render vs partial for two template files, namely "summary" and "summary-with-image".
For users overwriting one of those files you should:
Move the file to the layouts/_default directory.

For users overwriting a template file which call of one those file using {{ partial "summary.html . }} or {{ partial "summary-with-image.html . }} your should:
replace it with a .Render method like illustrated below.

- {{ partial "summary" . }}
+ {{ .Render "summary" }}

What's Changed

New Contributors

Full Changelog: v2.8.0...v2.8.1

New Social Follow and Share!

03 Dec 14:36
c7b9901
Compare
Choose a tag to compare

This is a complete backward compatible refactoring of the social service logic of the theme.

Project's social services are now registered in the site params as follow:

# config.yaml
params:
  ananke_socials:
  - name: twitter
    url: https://twitter.com/theNewDynamic
  - name: github
    url: https://github.com/theNewDynamic

The theme currently sports 14 built-in services with their own SVG icon, label and hover color. Any user can add their own service by adding it to the list above and optionally add a custom color and/or a matching SVG to their project.

It also sports its own "Share" icons for Facebook, Twitter and LinkedIn.

More here

What's Changed

New Contributors

Full Changelog: v2.7.0...v2.8.0

Style with Pipes

01 Oct 18:21
Compare
Choose a tag to compare

This release major improvements is the refactoring of the style processing logic which now relies on Hugo Pipes.
Another improvement is the ability to set a default date format to your project, this is great for localization.

Improvements

Fixes

  • Fixes date being printed when no date is set (1ae24ad)
  • Use relative permalink throughout when applicable (e3f7fbe)

Localization:

  • Localize site navigation title attributes (08d842f)
  • Localize WordCount and Reading time, de, fr, en included (7752770, 869b03e)

Thanks to @jan-xyz, @diamonster, @imander, @littleninja, @MarcoWagner, @sumpfralle for their help on improving Ananke on this release!

For any question about this release, please use its dedicated discussion:

Various Contributions

17 May 20:18
e3f7fbe
Compare
Choose a tag to compare

Improve Sitemap #404 by @zar3bski
Translate for Hindi and add to i18n #411 by @neeraj9

Add Turkish Translation

15 Dec 13:58
e3f7fbe
Compare
Choose a tag to compare

Create tr.toml (#371)

v2.6.7: Added Hungarian translation (#361)

28 Oct 13:28
056246e
Compare
Choose a tag to compare

use RelPermalink for i18n menu #353
Add Hungarian translation #361

Update Meta

06 Oct 12:17
f5cdf1f
Compare
Choose a tag to compare

Adds missing meta description #348