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

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