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