Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-10 | releaser: Add release notes to /docs for release of 0.25.1v0.25.1 | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-10 | releaser: Bump versions for release of 0.25.1 | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-10 | releaser: Ignore openbsd/arm | Bjørn Erik Pedersen | |
It is failing with "undefined: Flock_t". | |||
2017-07-10 | releaser: Add release notes draft for 0.25.1 | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-10 | Revert "vendor: Update dependencies for 0.26-DEV" | Bjørn Erik Pedersen | |
This reverts commit 4ec8ee7fb198923c23ff97c98101afe46a58cccc. | |||
2017-07-08 | parser: Final (!) fix for issue with escaped JSON front matter | Bjørn Erik Pedersen | |
Fixes #3682 | |||
2017-07-08 | parser: Fix issue with escaped JSON front matter | Bjørn Erik Pedersen | |
Fixes #3682 | |||
2017-07-08 | tpl/collections: Add some empty slice tests to intersect | Bjørn Erik Pedersen | |
See #3686 | |||
2017-07-08 | tpl/collections: Fix union when the first slice is empty | Bjørn Erik Pedersen | |
Fixes #3686 | |||
2017-07-08 | commands: Navigate to changed on CREATE | Vasiliy Solovey | |
When working with content from IntelliJ IDE, like WebStorm, every file save is followed by two events: "RENAME" and then "CREATE". | |||
2017-07-07 | Add first draft of CODEOWNERS | Bjørn Erik Pedersen | |
See https://github.com/blog/2392-introducing-code-owners | |||
2017-07-07 | vendor: Update dependencies for 0.26-DEV | Anthony Fok | |
2017-07-07 | releaser: Prepare repository for 0.26-DEV | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-07 | releaser: Add release notes to /docs for release of 0.25v0.25 | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-07 | releaser: Fix tag push | Bjørn Erik Pedersen | |
2017-07-07 | releaser: Bump versions for release of 0.25 | Bjørn Erik Pedersen | |
[ci skip] | |||
2017-07-07 | releaser: Add release notes draft for 0.25 | Bjørn Erik Pedersen | |
2017-07-07 | Revert "vendor: Update dependencies" | Bjørn Erik Pedersen | |
We are going to release Hugo 0.25 today, and pulling in lots of unknown and untested changes is a bad idea. This reverts commit d2c24baafee2e7ee752aeb53fb5c10a633e43d43. | |||
2017-07-06 | vendor: Update dependencies | Anthony Fok | |
2017-07-06 | releaser: Use real theme count in template | Bjørn Erik Pedersen | |
2017-07-06 | docs: Regenerate the docs helpers | Bjørn Erik Pedersen | |
2017-07-06 | docs: Regenerate commands doc | Bjørn Erik Pedersen | |
2017-07-06 | Revert "commands: Adjust docs path" | Bjørn Erik Pedersen | |
This reverts commit 729be8074bddb58c9111f32c55cc769e49cd0d5a. | |||
2017-07-06 | docs: Merge docs commit '37c69054e294bf554be03cf7e4c01e1f586e6943' | Bjørn Erik Pedersen | |
2017-07-06 | Squashed 'docs/' changes from 5d9a6703..f3c88b08 | Bjørn Erik Pedersen | |
f3c88b08 Add warning on GitInfo and Shallow Clones fa5be591 Make the two common Taxonomy templates explicit 4a81c507 Update pull request link in showcase.html f751e57a Update christianmendoza.me in the showcase d582419b Remove commit message prefix from showcase addition guide d12791cf Fix path for screenshot in showcase addition guide e487b916 Add invincible.site to the showcase c85cfccf Update guide for showcase additions c44b31c1 Fix spelling dc10d7f6 Add slightly better GitHub install description 2611980f Revert "Add workaround to Fetch from GitHub documentation" b2e56907 Fix Git commit link in footer b025a638 Regenerate commands docs for v0.24.1 0741ad08 Update README.md 942d130a Add branch info to README e8c36390 Set hugoDocs/master to 0.24.1 c4e21471 Add workaround to Fetch from GitHub documentation db0a3c08 Fix typo in release note git-subtree-dir: docs git-subtree-split: f3c88b081022c945f010cdbfcd25e0008e0c3f5b | |||
2017-07-06 | releaser: Adjustments | Bjørn Erik Pedersen | |
2017-07-05 | releaser: Revise the docs handling to match new subtree | Bjørn Erik Pedersen | |
Fixes #3649 | |||
2017-07-05 | releaser: Replace the magic version handling | Bjørn Erik Pedersen | |
Take the new version as a string value. | |||
2017-07-05 | releaser: Add --try flag to ease testing | Bjørn Erik Pedersen | |
2017-07-04 | output: Support templates per site/language | Bjørn Erik Pedersen | |
This applies to both regular templates and shortcodes. So, if the site language is French and the output format is AMP, this is the (start) of the lookup order for the home page: 1. index.fr.amp.html 2. index.amp.html 3. index.fr.html 4. index.html 5. ... Fixes #3360 | |||
2017-07-04 | hugolib: Extend the sections API | Bjørn Erik Pedersen | |
This commit adds some section related methods that have been asked for: * .CurrentSection * .IsDescendant * .IsAncestor Fixes #3591 | |||
2017-07-04 | hugolib: Make .Site.Sections return the top level sections | Bjørn Erik Pedersen | |
See #3591 | |||
2017-07-03 | commands: Support human-readable YAML boolean values in undraft | Victor Kropp | |
2017-07-03 | tpl/collections: Add Pages support to Intersect and Union | Bjørn Erik Pedersen | |
This enables `AND` (`intersect`) and `OR` (`union`) filters when combined with `where`. Example: ```go {{ $pages := where .Site.RegularPages "Type" "not in" (slice "page" "about") }} {{ $pages := $pages | union (where .Site.RegularPages "Params.pinned" true) }} {{ $pages := $pages | intersect (where .Site.RegularPages "Params.images" "!=" nil) }} ``` The above fetches regular pages not of `page` or `about` type unless they are pinned. And finally, we exclude all pages with no `images` set in Page params. Fixes #3174 | |||
2017-07-03 | tpl/collections: Fix In function for JSON arrays | Bjørn Erik Pedersen | |
Fixes #1468 | |||
2017-07-03 | parser: Fix handling of JSON front matter with escaped quotes | Bjørn Erik Pedersen | |
Fixes #3661 | |||
2017-07-03 | tpl/math: Add log function | Artem Sidorenko | |
It might be very useful for building tag clouds. | |||
2017-07-01 | hugolib: Render 404.html for all languages | Mitchell Cohen | |
Fixes #3598 | |||
2017-07-01 | hugo import jekyll support nested _posts directories | coderzh | |
Fixes #1890 Closes #1911 | |||
2017-06-28 | cache: Add even more concurrency to test | Bjørn Erik Pedersen | |
2017-06-28 | cache: Add concurrent cache test | Bjørn Erik Pedersen | |
2017-06-28 | vendor: Add missing WebP dependencies | Bjørn Erik Pedersen | |
See #3529 | |||
2017-06-28 | tpl: Add WebP images support | Bjørn Erik Pedersen | |
Fixes #3529 | |||
2017-06-28 | tpl: Only show post's own keywords in schema.org | Bruno Amaral | |
Fixes #2635 Closes #2646 | |||
2017-06-28 | hugolib: Add more summary test | Bjørn Erik Pedersen | |
Closes #2973 | |||
2017-06-28 | Dockerfile: Update Dockerfile and add Docker optimizations | Maik Ellerbrock | |
2017-06-27 | hugofs: Fix typo in code comment | Damir Vandic | |
2017-06-27 | tpl: Simplify the Disqus template a little bit (#3655) | Yihui Xie | |
In accordance to the official guide: https://disqus.com/admin/universal/ | |||
2017-06-27 | tpl: Improve the built-in Disqus template (#3639) | Yihui Xie | |
* Improve the built-in Disqus template Set `disqus_identifier`, `disqus_title`, and `disqus_url` only if the user has explicitly provided them. Do not load Disqus when the website is previewed locally, otherwise it is very confusing. * Use disqus_config instead of three global variables https://help.disqus.com/customer/portal/articles/472098-javascript-configuration-variables | |||
2017-06-27 | helpers: Add Blackfriday 'joinLines' extension support (#3574) | Haishan Zhou | |
See https://github.com/russross/blackfriday/pull/334 "add an extension to handle Chinese (or CJK) newlines" for more information. |