You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 1.8KB

7 years ago
7 years ago
7 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # Changelog
  2. ## 0.0.6 (unreleased)
  3. - Fix missing serialized data for sections
  4. - Change the single item template context for categories/tags
  5. - Add a `get_url` and a `get_section` global Tera function
  6. - Add a config option to control how many articles to show in RSS feed
  7. - Move `insert_anchor_links` from config to being a section option and it can
  8. now be insert left or right
  9. ## 0.0.5 (2017-05-15)
  10. - Fix XML templates overriding and reloading
  11. - `title` and `description` are now optional in the front matter
  12. - Add GenericConfig, Vim, Jinja2 syntax
  13. - Add `_index.md` for homepage as well and make that into a normal section
  14. - Allow sorting by `none`, `date` and `order` for sections
  15. - Add pagination
  16. - Add a `get_page` global function to tera
  17. - Revamp index page, no more `pages` variables
  18. - Fix livereload stopping randomly
  19. - Smarter re-rendering in `serve` command
  20. ## 0.0.4 (2017-04-23)
  21. - Fix RSS feed link and description
  22. - Renamed `Page::url` and `Section::url` to `Page::path` and `Section::path`
  23. - Pass `current_url` and `current_path` to every template
  24. - Add id to headers to allow anchor linking
  25. - Make relative link work with anchors
  26. - Add option to render an anchor link automatically next to headers
  27. - Only copy the static files that changed, not the whole directory in `gutenberg serve`
  28. - Use summary if available in RSS feed
  29. - Add tables and footnotes support in markdown
  30. - Add more language syntaxes
  31. - Only load templates ending by `.html`
  32. ## 0.0.3 (2017-04-05)
  33. - Add some colours in console
  34. - Allow using a file other than config.toml for config
  35. - Add sections to the index page context
  36. - Fix page rendering not working when containing `+++`
  37. - Add shortcodes (see README for details)
  38. - Allow relative links to other content in markdown links
  39. - Add `markdown`, `base64_encode` and `base64_decode` filters to the Tera instance of Gutenberg
  40. - Work on Windows!