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

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