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

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