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