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

6 years ago
6 years ago
6 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
7 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # Changelog
  2. ## 0.3.3 (unreleased)
  3. - Fixed config flag in CLI
  4. ## 0.3.2 (2018-03-05)
  5. - Fix `serve` command trying to read all files as markdown
  6. - Add many syntax highlighting themes
  7. - Fix date being serialised incorrectly in page `extra` section of front-matter
  8. ## 0.3.1 (2018-02-15)
  9. - Update Tera and other dependencies
  10. - Add option for inline (ie no `<p>...</p>` wrapping) in markdown filter
  11. - Allow to specify both interface and base_url in `gutenberg serve` for usage in Docker
  12. ## 0.3.0 (2018-01-25)
  13. ### Breaking
  14. - Change names of individual taxonomies to be plural (ie `tags/my-tag` instead of `tag/my-tag`)
  15. - Front matter now uses TOML dates rather strings: remove quotes from your date value to fix it.
  16. For example: `date = "2001-10-10"` becomes `date = 2001-10-10`
  17. - `language_code` has been renamed `default_language` in preparations of i18n support
  18. ### Others
  19. - Add `get_taxonomy_url` to retrieve the permalink of a tag/category
  20. - Fix bug when generating permalinks for taxonomies
  21. - Update to Tera 0.11
  22. - Better UX on first `serve` thanks to some default templates.
  23. - Add `output-dir` to `build` and `serve` to generate the site in a folder other than `public`
  24. - Add Prolog syntax highlighting and update all current syntaxes
  25. - Live reloading now works on shortcode template changes
  26. - `gutenberg serve` now reloads site on `config.toml` changes: you will need to F5 to see any changes though
  27. - Add a `trans` global function that will get return the translation of the given key for the given lang, defaulting
  28. to `config.default_language` if not given
  29. - `gutenberg serve` cleans after itself and deletes the output directory on CTRL+C
  30. ## 0.2.2 (2017-11-01)
  31. - Fix shortcodes without arguments being ignored
  32. - Fix shortcodes with markdown chars (_, *, etc) in name and args being ignored
  33. - Fix subsections of index not being filled without a `_index.md`
  34. - Fix generated index section not found in `get_section` global function
  35. - Fix permalink generation for index page
  36. - Add Nim syntax highlighting
  37. - Allow static folder to be missing
  38. - Fix shortcodes args being only passed as strings
  39. - Add `page.components` and `section.components` that are equivalent to `path.split('/')`
  40. - Expose `page.draft` in the template
  41. ## 0.2.1 (2017-10-17)
  42. - Fix `base-url` argument to `gutenberg build` being called `base`
  43. - Add syntaxes: Crystal, Elixir, Kotlin
  44. ## 0.2.0 (2017-10-05)
  45. - Fix `section.subsections` not being filled correctly
  46. - `section.subsections` can now be sorted by a `weight` attribute on a section front-matter
  47. - Do nothing on directory adding/removal in livereload
  48. - Add back `draft` on pages that was wrongly removed
  49. - Page and Section `path` field is not starting with a `/` anymore
  50. - All Tera global fns are now rebuilt on changes
  51. - Use flags for port/interface in `gutenberg serve`
  52. - Fix various issues with headers markdown rendering
  53. - Rename `insert_anchor` in section front-matter to `insert_anchor_links`
  54. - Remove `insert_anchor_links` from the config: it wasn't used
  55. - Add `class` variable to `gist` shortcode
  56. - Add reading analytics to sections content
  57. - Add config to sitemap template
  58. - Add `permalink` to all taxonomy items (tags & categories)
  59. - Tags in the tags page are now sorting alphabetically instead of by number of pages in them
  60. - Remove deprecated `link` param of `get_url`
  61. - Add 1337 color scheme
  62. - Defaults to compressed Sass output
  63. - Fix regression wrt co-located assets slug detecting
  64. - Rename `url` from page front-matter to `path` to be consistent
  65. - Add a `base-url` flag to the `build` command to override the URL from config.toml
  66. ## 0.1.3 (2017-08-31)
  67. - Add themes support
  68. ## 0.1.2 (2017-08-10)
  69. - Add `redirect_to` to section front matter to redirect when landing on section
  70. root page
  71. - Make `title` in config optional
  72. - Improved `gutenberg init` UX and users first experience
  73. - Make `get_url` work for any path with optional cachebusting.
  74. - Deprecates `link` param of `get_url` in favour of `path` to be consistent
  75. ## 0.1.1 (2017-07-16)
  76. - Fix RSS feed not behaving (https://github.com/Keats/gutenberg/issues/101)
  77. ## 0.1.0 (2017-07-14)
  78. - Parallelize all the things
  79. - Add weight sorting
  80. - Remove `section` from the `page` rendering context: this is too expensive. Use
  81. the global function `get_section` if you need to get it
  82. - Put back a 20 page limit on rss feed by default (configurable)
  83. - Remove index page getting all sections: use the `get_section` global fn instead to
  84. only get the ones you need
  85. - Remove pages from pagers in pagination: they were not supposed to be there
  86. - Add built-in Sass compilation support
  87. ## 0.0.7 (2017-06-19)
  88. - Sort individual tag/category pages by date
  89. - Add extra builtin shortcode for Streamable videos
  90. - `path` and `permalink` now end with a `/`
  91. - Generate table of contents for each page
  92. - Add `section` to a page Tera context if there is one
  93. - Add `aliases` to pages for when you are changing urls but want to redirect
  94. to the new one
  95. - Name the homepage section `index` (previously empty string)
  96. ## 0.0.6 (2017-05-24)
  97. - Fix missing serialized data for sections
  98. - Change the single item template context for categories/tags
  99. - Add a `get_url` and a `get_section` global Tera function
  100. - Add a config option to control how many articles to show in RSS feed
  101. - Move `insert_anchor_links` from config to being a section option and it can
  102. now be insert left or right
  103. ## 0.0.5 (2017-05-15)
  104. - Fix XML templates overriding and reloading
  105. - `title` and `description` are now optional in the front matter
  106. - Add GenericConfig, Vim, Jinja2 syntax
  107. - Add `_index.md` for homepage as well and make that into a normal section
  108. - Allow sorting by `none`, `date` and `order` for sections
  109. - Add pagination
  110. - Add a `get_page` global function to tera
  111. - Revamp index page, no more `pages` variables
  112. - Fix livereload stopping randomly
  113. - Smarter re-rendering in `serve` command
  114. ## 0.0.4 (2017-04-23)
  115. - Fix RSS feed link and description
  116. - Renamed `Page::url` and `Section::url` to `Page::path` and `Section::path`
  117. - Pass `current_url` and `current_path` to every template
  118. - Add id to headers to allow anchor linking
  119. - Make relative link work with anchors
  120. - Add option to render an anchor link automatically next to headers
  121. - Only copy the static files that changed, not the whole directory in `gutenberg serve`
  122. - Use summary if available in RSS feed
  123. - Add tables and footnotes support in markdown
  124. - Add more language syntaxes
  125. - Only load templates ending by `.html`
  126. ## 0.0.3 (2017-04-05)
  127. - Add some colours in console
  128. - Allow using a file other than config.toml for config
  129. - Add sections to the index page context
  130. - Fix page rendering not working when containing `+++`
  131. - Add shortcodes (see README for details)
  132. - Allow relative links to other content in markdown links
  133. - Add `markdown`, `base64_encode` and `base64_decode` filters to the Tera instance of Gutenberg
  134. - Work on Windows!