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

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