Skip to content

Commit

Permalink
Prepare for v0.15.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
stp-ip committed Oct 16, 2019
1 parent 89d962c commit 28340e6
Show file tree
Hide file tree
Showing 9 changed files with 58 additions and 18 deletions.
6 changes: 3 additions & 3 deletions .seed-config.yaml
Expand Up @@ -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.15.0"
version: "v0.15.2"

vision:
type: "community"
Expand Down Expand Up @@ -53,11 +53,11 @@ badges:
- image: "https://img.shields.io/badge/state-stable-green.svg"
alt: "state"
- image: "https://img.shields.io/github/release/okkur/syna.svg"
link: "https://github.com/okkur/syna/releases"
link: "https://syna.okkur.org/releases"
alt: "release"
- image: "https://img.shields.io/github/license/okkur/syna.svg"
link: "LICENSE"
alt: "license"

reposeed:
configVersion: "v1"
configVersion: "v1"
40 changes: 40 additions & 0 deletions CHANGELOG.md
Expand Up @@ -15,6 +15,46 @@ _2018_
-->

# v0.15.2
_2019-10-16_
- [Downloads for v0.15.2](https://github.com/okkur/syna/releases/tag/v0.15.2)
- [Changelog since v0.15.1](#changes-since-v0151)

## Documentation for v0.15.2
[Documentation](https://syna.okkur.org/docs) *Documentation defaults to latest release*

## Changes since v0.15.1
- Add support for sort order in the list fragment #583
- Add minHeight param to hero fragment #571
- Bump Hugo's minimum required version to v0.58 #588

## Fixes since v0.15.1
- Fix fragments not showing in the 404 page #575
- Fix global fragments with subitems showing warning #582
- Fix toc list displaying pagination in docs
- Fix extra padding on code blocks #603
- Filter special pages out of list fragment's displayed pages #595
- Fix children deptch in toc #596
- Fix bad split in event params (pubsub) #594

---

# v0.15.1
_2019-05-27_
- [Downloads for v0.15.1](https://github.com/okkur/syna/releases/tag/v0.15.1)
- [Changelog since v0.15.0](#changes-since-v015)

## Documentation for v0.15.1
[Documentation](https://syna.okkur.org/docs) *Documentation defaults to latest release*

## Changes since v0.15.0

## Fixes since v0.15.0
- Add the new auto generated files (have been missed in a previous commit)
- Move syna-grid.css from user side to theme side (bad approach, removes it from user side at least)
- Fix the .Dir deprecation warning, I have no idea how these are popping up

---
# v0.15.0
_2019-05_
- [Downloads for v0.15.0](https://github.com/okkur/syna/releases/tag/v0.15.0)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
v0.15.0
v0.15.2
4 changes: 2 additions & 2 deletions exampleSite/config-dev.toml
Expand Up @@ -6,7 +6,7 @@ title = "Okkur - Syna"
theme = "syna"
themesDir = "../.."
enableGitInfo = true
version = "0.15.0"
version = "0.15.2"
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]

# Google Analytics tracking
Expand Down Expand Up @@ -98,7 +98,7 @@ lastmod = ["lastmod", ":git", "date"]
[[menu.footer_social]]
weight = 30
name = "github"
url = "https://syna.okkur.org/code"
url = "https://git.okkur.org/syna"
pre = "fab fa-github fa-stack-2x"

[[menu.copyright_footer]]
Expand Down
4 changes: 2 additions & 2 deletions exampleSite/config.toml
Expand Up @@ -6,7 +6,7 @@ title = "Okkur - Syna"
theme = "syna"
themesDir = "../.."
enableGitInfo = true
version = "0.15.0"
version = "0.15.2"
disableKinds = ["RSS", "taxonomy", "taxonomyTerm"]
ignorefiles = [ "content/dev/.*" ]

Expand Down Expand Up @@ -99,7 +99,7 @@ lastmod = ["lastmod", ":git", "date"]
[[menu.footer_social]]
weight = 30
name = "github"
url = "https://syna.okkur.org/code"
url = "https://git.okkur.org/syna"
pre = "fab fa-github fa-stack-2x"

[[menu.copyright_footer]]
Expand Down
8 changes: 4 additions & 4 deletions exampleSite/content/docs/installation/content.md
Expand Up @@ -15,20 +15,20 @@ This way whenever you want to update the theme you can just pull the updates and

```bash
git submodule init # If you haven't initialized before
git submodule add https://github.com/okkur/syna.git themes/syna
git submodule add https://git.okkur.org/syna themes/syna
cd themes/syna
git checkout v0.12.0 # Latest release as of now is v0.12.0
git checkout v0.15 # Latest release as of now is v0.15
```

*You can visit [Hugo's documentation](https://gohugo.io/themes/installing-and-using-themes/) on installing themes for more information.*

### Using starter

If you don't have a site yet, you can use our [starter](https://github.com/okkur/syna-start).
If you don't have a site yet, you can use our [starter](https://git.okkur.org/syna-start).
Using the starter you will have a sample page with several fragment examples and you can use them to start building your own website.

```bash
git clone --recurse-submodules https://github.com/okkur/syna-start.git # --recurse-submodules will clone the theme
git clone --recurse-submodules https://git.okkur.org/syna-start # --recurse-submodules will clone the theme
cd syna-start
hugo server -D # to build your website, run hugo instead
```
2 changes: 1 addition & 1 deletion exampleSite/package.json
@@ -1,6 +1,6 @@
{
"name": "example-site",
"version": "0.15.0",
"version": "0.15.2",
"description": "Example Site for Syna theme for Hugo",
"main": "static-main/js/index.js",
"author": "Michael Grosser",
Expand Down
6 changes: 3 additions & 3 deletions netlify.toml
Expand Up @@ -4,17 +4,17 @@
command = "HUGO_THEME=repo DEMO_MODE=true hugo --config config-dev.toml -d ../public --minify"

[context.production.environment]
HUGO_VERSION = "0.58.1"
HUGO_VERSION = "0.58.3"
HUGO_ENV = "production"

[context.deploy-preview]
command = "HUGO_THEME=repo DEMO_MODE=true hugo --config config-dev.toml -d ../public --minify"

[context.deploy-preview.environment]
HUGO_VERSION = "0.58.1"
HUGO_VERSION = "0.58.3"

[context.branch-deploy]
command = "HUGO_THEME=repo DEMO_MODE=true hugo --config config-dev.toml -d ../public --minify"

[context.branch-deploy.environment]
HUGO_VERSION = "0.58.1"
HUGO_VERSION = "0.58.3"
4 changes: 2 additions & 2 deletions package.json
@@ -1,9 +1,9 @@
{
"name": "syna",
"version": "0.15.0",
"version": "0.15.2",
"description": "Highly customizable open source theme for Hugo based static websites",
"main": "static-main",
"repository": "git@github.com:okkur/syna.git",
"repository": "https://git.okkur.org/syna",
"author": "Michael Grosser (stp-ip)",
"license": "Apache",
"scripts": {
Expand Down

0 comments on commit 28340e6

Please sign in to comment.