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.9KB

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