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 2.0KB

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