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 3.2KB

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