zola/CHANGELOG.md

131 lines
4.9 KiB
Markdown
Raw Normal View History

2017-03-27 02:48:01 +00:00
# Changelog
2017-10-23 08:49:13 +00:00
## 0.2.2 (unreleased)
- Fix shortcodes without arguments being ignored
- Fix shortcodes with markdown chars (_, *, etc) in name and args being ignored
2017-10-24 18:11:39 +00:00
- Fix subsections of index not being filled without a `_index.md`
- Fix generated index section not found in `get_section` global function
2017-10-24 18:11:39 +00:00
- Fix permalink generation for index page
2017-10-25 07:09:55 +00:00
- Add Nim syntax highlighting
2017-10-23 08:49:13 +00:00
2017-10-17 09:44:06 +00:00
## 0.2.1 (2017-10-17)
2017-10-16 20:48:59 +00:00
2017-10-17 07:23:17 +00:00
- Fix `base-url` argument to `gutenberg build` being called `base`
- Add syntaxes: Crystal, Elixir, Kotlin
2017-10-16 20:48:59 +00:00
2017-10-05 10:26:29 +00:00
## 0.2.0 (2017-10-05)
2017-09-25 09:55:43 +00:00
- Fix `section.subsections` not being filled correctly
2017-09-26 08:04:18 +00:00
- `section.subsections` can now be sorted by a `weight` attribute on a section front-matter
2017-09-25 09:55:43 +00:00
- Do nothing on directory adding/removal in livereload
- Add back `draft` on pages that was wrongly removed
2017-09-26 08:25:55 +00:00
- Page and Section `path` field is not starting with a `/` anymore
- All Tera global fns are now rebuilt on changes
- Use flags for port/interface in `gutenberg serve`
2017-09-27 14:09:13 +00:00
- Fix various issues with headers markdown rendering
- Rename `insert_anchor` in section front-matter to `insert_anchor_links`
- Remove `insert_anchor_links` from the config: it wasn't used
- Add `class` variable to `gist` shortcode
- Add reading analytics to sections content
2017-10-01 03:51:43 +00:00
- Add config to sitemap template
- Add `permalink` to all taxonomy items (tags & categories)
- Tags in the tags page are now sorting alphabetically instead of by number of pages in them
2017-10-03 15:21:18 +00:00
- Remove deprecated `link` param of `get_url`
- Add 1337 color scheme
- Defaults to compressed Sass output
2017-10-04 00:23:25 +00:00
- Fix regression wrt co-located assets slug detecting
2017-10-04 00:35:37 +00:00
- Rename `url` from page front-matter to `path` to be consistent
- Add a `base-url` flag to the `build` command to override the URL from config.toml
2017-09-25 09:55:43 +00:00
2017-08-31 09:51:18 +00:00
## 0.1.3 (2017-08-31)
- Add themes support
2017-08-10 02:30:19 +00:00
## 0.1.2 (2017-08-10)
- Add `redirect_to` to section front matter to redirect when landing on section
root page
2017-07-27 09:24:43 +00:00
- Make `title` in config optional
- Improved `gutenberg init` UX and users first experience
2017-08-09 04:42:27 +00:00
- Make `get_url` work for any path with optional cachebusting.
- Deprecates `link` param of `get_url` in favour of `path` to be consistent
2017-07-16 02:46:43 +00:00
## 0.1.1 (2017-07-16)
2017-07-15 03:51:32 +00:00
- Fix RSS feed not behaving (https://github.com/Keats/gutenberg/issues/101)
## 0.1.0 (2017-07-14)
2017-06-22 03:01:45 +00:00
- Parallelize all the things
2017-06-29 15:10:24 +00:00
- Add weight sorting
2017-06-29 12:14:08 +00:00
- Remove `section` from the `page` rendering context: this is too expensive. Use
the global function `get_section` if you need to get it
- Put back a 20 page limit on rss feed by default (configurable)
- Remove index page getting all sections: use the `get_section` global fn instead to
only get the ones you need
- Remove pages from pagers in pagination: they were not supposed to be there
2017-07-14 10:26:27 +00:00
- Add built-in Sass compilation support
2017-07-06 13:19:15 +00:00
2017-06-19 09:44:31 +00:00
## 0.0.7 (2017-06-19)
2017-05-30 10:23:07 +00:00
- Sort individual tag/category pages by date
- Add extra builtin shortcode for Streamable videos
- `path` and `permalink` now end with a `/`
2017-06-16 05:05:14 +00:00
- Generate table of contents for each page
- Add `section` to a page Tera context if there is one
2017-06-16 14:09:01 +00:00
- Add `aliases` to pages for when you are changing urls but want to redirect
to the new one
2017-06-19 09:14:13 +00:00
- Name the homepage section `index` (previously empty string)
2017-05-30 10:23:07 +00:00
2017-05-24 12:28:33 +00:00
## 0.0.6 (2017-05-24)
2017-05-16 04:37:00 +00:00
- Fix missing serialized data for sections
- Change the single item template context for categories/tags
2017-05-23 11:03:25 +00:00
- Add a `get_url` and a `get_section` global Tera function
- Add a config option to control how many articles to show in RSS feed
2017-05-23 11:03:25 +00:00
- Move `insert_anchor_links` from config to being a section option and it can
now be insert left or right
2017-05-16 04:37:00 +00:00
2017-05-15 06:57:42 +00:00
## 0.0.5 (2017-05-15)
2017-04-28 07:18:18 +00:00
- Fix XML templates overriding and reloading
- `title` and `description` are now optional in the front matter
- Add GenericConfig, Vim, Jinja2 syntax
2017-05-08 10:29:37 +00:00
- Add `_index.md` for homepage as well and make that into a normal section
- Allow sorting by `none`, `date` and `order` for sections
2017-05-03 12:30:17 +00:00
- Add pagination
2017-05-11 05:12:02 +00:00
- Add a `get_page` global function to tera
- Revamp index page, no more `pages` variables
- Fix livereload stopping randomly
- Smarter re-rendering in `serve` command
2017-04-28 07:18:18 +00:00
2017-04-23 06:32:08 +00:00
## 0.0.4 (2017-04-23)
2017-04-28 07:18:18 +00:00
2017-04-06 02:21:37 +00:00
- Fix RSS feed link and description
- Renamed `Page::url` and `Section::url` to `Page::path` and `Section::path`
- Pass `current_url` and `current_path` to every template
2017-04-10 11:26:35 +00:00
- Add id to headers to allow anchor linking
- Make relative link work with anchors
- Add option to render an anchor link automatically next to headers
- Only copy the static files that changed, not the whole directory in `gutenberg serve`
- Use summary if available in RSS feed
- Add tables and footnotes support in markdown
- Add more language syntaxes
- Only load templates ending by `.html`
2017-04-06 02:21:37 +00:00
## 0.0.3 (2017-04-05)
2017-04-28 07:18:18 +00:00
2017-03-27 02:48:01 +00:00
- Add some colours in console
- Allow using a file other than config.toml for config
- Add sections to the index page context
2017-03-27 14:17:33 +00:00
- Fix page rendering not working when containing `+++`
- Add shortcodes (see README for details)
- Allow relative links to other content in markdown links
2017-04-04 07:08:40 +00:00
- Add `markdown`, `base64_encode` and `base64_decode` filters to the Tera instance of Gutenberg
2017-04-05 12:51:18 +00:00
- Work on Windows!