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