diff --git a/.seed-config.yaml b/.seed-config.yaml index 14851652..bdf3a6bf 100644 --- a/.seed-config.yaml +++ b/.seed-config.yaml @@ -6,7 +6,7 @@ project: oneLiner: 'Highly customizable open source theme for Hugo based static websites' description: | Create your next website with Syna. - version: 'v0.17.2' + version: 'v0.17.3' vision: type: 'community' diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f02c4ac..cd375970 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,35 @@ _2018_ --> +# v0.17.3 + +_2020-07-25_ + +- [Downloads for v0.17.3](https://syna.okkur.org/releases/v0.17.3) +- [Changelog since v0.17.2](#changes-since-v0172) + +## Documentation for v0.17.3 + +[Documentation](https://syna.okkur.org/docs) _Documentation defaults to latest release_ + +## Changes since v0.17.2 + +- list: Update whitespace in list mode [776](https://github.com/okkur/syna/pull/776) +- portfolio: Add support for background image on portfolio overlays [802](https://github.com/okkur/syna/pull/802) +- repositories_hithub: Added new fragment to fetch and display user repositories from Github [803](https://github.com/okkur/syna/pull/803) +- Update documentation +- Added more tests + +## Fixes since v0.17.2 + +- nav: Add support for nested menus by adding dropdowns [781](https://github.com/okkur/syna/pull/781) +- nav: Fix the bug that prevented search from working if there were multiple nav fragments in one page [782](https://github.com/okkur/syna/pull/782) +- content: Fix sticky sidebar issues [788](https://github.com/okkur/syna/pull/788) +- items: Fix overflowing image issue [794](https://github.com/okkur/syna/pull/794) +- Fix multilingual pages not showing subitems of fragments in non default language page [800](https://github.com/okkur/syna/pull/800) + +--- + # v0.17.2 _2020-06-01_ diff --git a/VERSION b/VERSION index 4b7d50c9..93e7fb92 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -v0.17.2 +v0.17.3 diff --git a/exampleSite/config-dev.toml b/exampleSite/config-dev.toml index 540556ce..9de46308 100644 --- a/exampleSite/config-dev.toml +++ b/exampleSite/config-dev.toml @@ -6,7 +6,7 @@ title = "Okkur - Syna" theme = "syna" themesDir = "../.." enableGitInfo = true -version = "0.17.2" +version = "0.17.3" disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] RelativeURLs = true diff --git a/exampleSite/config.toml b/exampleSite/config.toml index b7a25bb4..8d018015 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -6,7 +6,7 @@ title = "Okkur - Syna" theme = "syna" themesDir = "../.." enableGitInfo = true -version = "0.17.2" +version = "0.17.3" disableKinds = ["RSS", "taxonomy", "taxonomyTerm"] ignorefiles = [ "content/dev/.*" ] diff --git a/exampleSite/content/docs/installation/content.md b/exampleSite/content/docs/installation/content.md index cf11c368..ad0744ca 100644 --- a/exampleSite/content/docs/installation/content.md +++ b/exampleSite/content/docs/installation/content.md @@ -17,7 +17,7 @@ This way whenever you want to update the theme you can just pull the updates and git submodule init # If you haven't initialized before git submodule add https://git.okkur.org/syna themes/syna cd themes/syna -git checkout v0.17 # Latest release as of now is v0.17.2 +git checkout v0.17 # Latest release as of now is v0.17.3 ``` _You can visit [Hugo's documentation](https://gohugo.io/themes/installing-and-using-themes/) on installing themes for more information._ diff --git a/exampleSite/package.json b/exampleSite/package.json index d77472b3..d15b6b68 100644 --- a/exampleSite/package.json +++ b/exampleSite/package.json @@ -1,6 +1,6 @@ { "name": "example-site", - "version": "0.17.2", + "version": "0.17.3", "description": "Example Site for Syna theme for Hugo", "main": "static-main/js/index.js", "author": "Michael Grosser", diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 9a85ab33..f3ab6544 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -7,7 +7,7 @@ {{- end -}} - + diff --git a/package.json b/package.json index 69f482be..f5d2bf97 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "syna", - "version": "0.17.2", + "version": "0.17.3", "description": "Highly customizable open source theme for Hugo based static websites", "main": "static-main", "repository": "https://git.okkur.org/syna",