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