mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 07:47:54 +00:00
i18n: raise required min hugo version #733
due to unified usage of languageCode property
This commit is contained in:
parent
dfba891622
commit
14e2fb46c4
5 changed files with 6 additions and 6 deletions
|
@ -6,7 +6,7 @@ weight = 2
|
||||||
|
|
||||||
This document shows you what's new in the latest release and flags it with one of the following badges. For a detailed list of changes, see the [history page](basics/history).
|
This document shows you what's new in the latest release and flags it with one of the following badges. For a detailed list of changes, see the [history page](basics/history).
|
||||||
|
|
||||||
- {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.110.0{{% /badge %}} The minimum required Hugo version.
|
- {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.112.4{{% /badge %}} The minimum required Hugo version.
|
||||||
|
|
||||||
- {{% badge style="warning" title=" " %}}Breaking{{% /badge %}} A change that requires action by you after upgrading to assure the site is still functional.
|
- {{% badge style="warning" title=" " %}}Breaking{{% /badge %}} A change that requires action by you after upgrading to assure the site is still functional.
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@ This document shows you what's new in the latest release and flags it with one o
|
||||||
|
|
||||||
## 5.24.0.beta {#5240}
|
## 5.24.0.beta {#5240}
|
||||||
|
|
||||||
- {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.110.0{{% /badge %}} This release requires a newer Hugo version.
|
- {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.112.4{{% /badge %}} This release requires a newer Hugo version.
|
||||||
|
|
||||||
- {{% badge style="note" title=" " %}}Change{{% /badge %}} The light themes have a bit more contrast for content text and headings. Also the syntaxhighlighting was changed to the more colorful MonokaiLight. This brings the syntaxhighlightning in sync with the corresponding dark theme variants, which are using Monokai. If you dislike this, you can create your own color variant file as [described here](basics/branding#modify-shipped-variants).
|
- {{% badge style="note" title=" " %}}Change{{% /badge %}} The light themes have a bit more contrast for content text and headings. Also the syntaxhighlighting was changed to the more colorful MonokaiLight. This brings the syntaxhighlightning in sync with the corresponding dark theme variants, which are using Monokai. If you dislike this, you can create your own color variant file as [described here](basics/branding#modify-shipped-variants).
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,6 @@ weight = 10
|
||||||
|
|
||||||
Thanks to the simplicity of Hugo, this page is as empty as this theme needs requirements.
|
Thanks to the simplicity of Hugo, this page is as empty as this theme needs requirements.
|
||||||
|
|
||||||
Just download at least version {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.110.0{{% /badge %}} of the [Hugo binary](https://gohugo.io/getting-started/installing/) for your OS (Windows, Linux, Mac).
|
Just download at least version {{% badge color="fuchsia" icon="fab fa-hackerrank" title=" " %}}0.112.4{{% /badge %}} of the [Hugo binary](https://gohugo.io/getting-started/installing/) for your OS (Windows, Linux, Mac).
|
||||||
|
|
||||||
![Magic](magic.gif)
|
![Magic](magic.gif)
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
@echo off
|
@echo off
|
||||||
setlocal enabledelayedexpansion
|
setlocal enabledelayedexpansion
|
||||||
|
|
||||||
call "test-hugo.bat" 0.110.0
|
call "test-hugo.bat" 0.112.4
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
{{- $basename = partial "BaseName.hugo" $format.RelPermalink }}
|
{{- $basename = partial "BaseName.hugo" $format.RelPermalink }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- if eq . .Site.Sites.First.Home }}
|
{{- if eq . .Site.Sites.First.Home }}
|
||||||
{{- $hugoVersion := "0.110.0" }}
|
{{- $hugoVersion := "0.112.4" }}
|
||||||
{{- if lt hugo.Version $hugoVersion }}
|
{{- if lt hugo.Version $hugoVersion }}
|
||||||
{{- errorf "The Relearn theme requires Hugo %s or later" $hugoVersion }}
|
{{- errorf "The Relearn theme requires Hugo %s or later" $hugoVersion }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
|
@ -24,7 +24,7 @@ features = ["badges", "breadcrumbs", "boxes", "buttons",
|
||||||
|
|
||||||
[module]
|
[module]
|
||||||
[module.hugoVersion]
|
[module.hugoVersion]
|
||||||
min = "0.110.0"
|
min = "0.112.4"
|
||||||
|
|
||||||
[author]
|
[author]
|
||||||
name = "Sören Weber"
|
name = "Sören Weber"
|
||||||
|
|
Loading…
Reference in a new issue