Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gohugoio/hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-21 11:45:53 +0300
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2021-07-21 11:45:53 +0300
commit0294a4a4f82b22ede6a8fa3e2cdaa38e02be8b0c (patch)
tree38eaee343230c111359ecb105bab873b0e787e35 /docs/content/en/news
parent351ed0f569f96aff29b03925bf5154d80a164e00 (diff)
parent53a352795a69a9d4a373f50ec62138595948c6ea (diff)
Merge commit '53a352795a69a9d4a373f50ec62138595948c6ea'
Diffstat (limited to 'docs/content/en/news')
-rw-r--r--docs/content/en/news/0.42-relnotes/index.md2
-rw-r--r--docs/content/en/news/0.85.0-relnotes/featured.pngbin0 -> 67393 bytes
-rw-r--r--docs/content/en/news/0.85.0-relnotes/index.md8
3 files changed, 5 insertions, 5 deletions
diff --git a/docs/content/en/news/0.42-relnotes/index.md b/docs/content/en/news/0.42-relnotes/index.md
index c3f99d313..9356eb675 100644
--- a/docs/content/en/news/0.42-relnotes/index.md
+++ b/docs/content/en/news/0.42-relnotes/index.md
@@ -8,7 +8,7 @@ categories: ["Releases"]
Hugo `0.42` adds **Theme Components**. This is a really powerful new way of building your Hugo sites with reusable components. This is both **Theme Composition** and **Theme Inheritance**.
->Read more about Theme Components in the [Hugo Documentation](https://gohugo.io/themes/theme-components/).
+>Read more about Theme Components in the [Hugo Documentation](https://gohugo.io/hugo-modules/theme-components/).
The feature above was implemented by [@bep](https://github.com/bep), the funny Norwegian, with great design help from the Hugo community. But that implementation would not have been possible without [Afero](https://github.com/spf13/afero), [Steve Francia's](https://github.com/spf13) virtual file system. Hugo is built on top of Afero and many other fast and solid Go projects, and if you look at the combined contribution log of the Hugo project and its many open source dependencies, the total amount of contributions is staggering. A big thank you to them all!
diff --git a/docs/content/en/news/0.85.0-relnotes/featured.png b/docs/content/en/news/0.85.0-relnotes/featured.png
new file mode 100644
index 000000000..eb68d3171
--- /dev/null
+++ b/docs/content/en/news/0.85.0-relnotes/featured.png
Binary files differ
diff --git a/docs/content/en/news/0.85.0-relnotes/index.md b/docs/content/en/news/0.85.0-relnotes/index.md
index 61b6fccec..e0c25e537 100644
--- a/docs/content/en/news/0.85.0-relnotes/index.md
+++ b/docs/content/en/news/0.85.0-relnotes/index.md
@@ -1,12 +1,12 @@
---
date: 2021-07-05
-title: "0.85.0"
-description: "0.85.0"
+title: "Poll based watching"
+description: "Hugo 0.85.0: Polled based alternative when watching for changes and some other nice improvements."
categories: ["Releases"]
---
- Hugo `0.85.0` is on the smaller side of releases, but the main new thing it brings should be important to those who need it: Poll based polling when watching the filesystem for changes.
+Hugo `0.85.0` is on the smaller side of releases, but the main new thing it brings should be important to those who need it: Poll based watching the filesystem for changes.
Hugo uses [Fsnotify](https://github.com/fsnotify/fsnotify) to provide native file system notifications. This is still the default, but there may situations where this isn't working. The file may not support it (e.g. NFS), or you get the "too many open files" error and cannot or do not want to increase the `ulimit`. Enable polling by passing the `--poll` flag with an interval:
@@ -14,7 +14,7 @@ Hugo uses [Fsnotify](https://github.com/fsnotify/fsnotify) to provide native fil
hugo server --poll 700ms
```
-You van even do "long polling" by passing a long interval:
+You can even do "long polling" by passing a long interval:
```bash
hugo server --poll 24h