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

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