A fork of hyde, the static site generation. Some patches will be pushed upstream.
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.
 
 
 

241 lines
8.1 KiB

  1. Version 0.8.5a13
  2. ============================================================
  3. Thanks to @idank
  4. * Bug Fix: Use `check_output` to avoid a traceback when subprocess command fails.
  5. Version 0.8.5a12
  6. ============================================================
  7. Thanks to @idank
  8. * Bug Fix: Tag archive generator uses subscript syntax to avoid failure when tags contain '-' or space. (Issue #130)
  9. Version 0.8.5a11
  10. ============================================================
  11. * Bug Fix: Folder Flattener updates node's `relative_deploy_path` & `url` attributes as well. (Issue #126)
  12. * BREAKING: As part of the above fix, `resource.url` is prefixed with a `/`. (Issue #126)
  13. Version 0.8.5a10
  14. ============================================================
  15. Thanks to @jd
  16. * Bug Fix: Metadata Plugin: Do not try to read meta data on `simple_copy` files. (Issue #124, Issue #121)
  17. Version 0.8.5a9
  18. ============================================================
  19. Thanks to @vinilios
  20. * Added a helper method in Expando class to ease up non existing keys handling. (Issue #117)
  21. * Some improvements in LessCSSPlugin to be able to build complex less projects (such as twitter bootstrap) (Issue #117)
  22. Version 0.8.5a8
  23. ============================================================
  24. * Added `simple_copy` feature to account for unprocessable files that
  25. are nonetheless required to be deployed (Issue #121)
  26. Version 0.8.5a7
  27. ============================================================
  28. * Bug Fix: Relative path was used in the server as the sitepath (Issue #119)
  29. Version 0.8.5a6
  30. ============================================================
  31. * Plugins now support inclusion filters. (Issue #112)
  32. - `include_file_patterns` property accepts globs to filter by file name.
  33. - `include_paths` accepts paths relative to content.
  34. - `begin_node` and `node_complete` honor `include_paths`
  35. - `begin_text_resource`, `text_resource_complete`, `begin_binary_resource`
  36. and `binary_resource_complete` honor both.
  37. Version 0.8.5a5
  38. ============================================================
  39. * Bug Fix: Unsorted combine files fixed. (Issue #111)
  40. Version 0.8.5a4
  41. ============================================================
  42. * Added an optional sorting parameter. (Issue #111)
  43. Version 0.8.5a3
  44. ============================================================
  45. * Bug Fix: Modified combined plugin to process during `begin_text_resource`. (Issue #110)
  46. Version 0.8.5a2
  47. ============================================================
  48. * Modified combined plugin to support relative paths and recursion. (Issue #108)
  49. Version 0.8.5a1
  50. ============================================================
  51. * Added ability to specify safe characters in `content_url`,
  52. `media_url` functions and `urlencode` filter. (Issue #103)
  53. Version 0.8.4
  54. ============================================================
  55. * Bug Fix: Configuration now gets reloaded when server regenerates (Issue #70)
  56. * Bug Fix: Added styles for codebox (Issue #69)
  57. * Tagger now generates archives upfront in begin_site (Issue #72)
  58. * **Breaking**: The default nodemeta file has been changed to meta.yaml
  59. * Added test for codehilite markdown extension (Issue #82)
  60. * Added rst_directive.py from the pygments repository (Issue #82)
  61. * Added support for ignoring nodes (Issue #80)
  62. * Hyde now ignores .hg, .svn and .git by default (Issue #80)
  63. * Added support for default publisher (Issue #83)
  64. * Added `urlencode` and `urldecode` filters. (Issue #102)
  65. * Bug Fix: Fixed tests for Issue #88
  66. * Added tests for sorting groups
  67. * Added support for loading modules from the site path. Thanks to
  68. @theomega for the idea (Issue #78 & #79)
  69. * Added docutils to dev-req.txt
  70. * Bug Fix: Fixed uglify-js tests
  71. Thanks to @nud
  72. * `$PATH` based executable discovery for `CLTransformer` plugins. (Issue #100)
  73. * Bug Fix: Fix class name of `test_stylus` (Issue #97)
  74. Thanks to @gfuchedzhy
  75. * Bug Fix: Textlinks plugin: do nothing if resource doesn't use template (Issue #96)
  76. * Bug Fix: Retain permissions in text files during generation (Issue #90)
  77. * Bug Fix: Added support for encoded urls to hyde server. (Issue #88)
  78. * Bug Fix: Converted `content_url` and `media_url` to encoded urls. (Issue #88)
  79. * Bug Fix: All occurrences of `str` replaced with `unicode`. (Issue #87)
  80. * Bug Fix: CLTransformer now gracefully handles arguments that have "=". (Issue #58)
  81. Thanks to @vincentbernat
  82. * Support for `output_format` configuration in markdown (Issue #89)
  83. Thanks to @merlinrebrovic
  84. * Hyde starter kit extended with advanced options (Issue #68)
  85. Thanks to @tcheneau
  86. * Added support for AsciiDoc. (Issue #76)
  87. Thanks to @gr3dman
  88. * Added paginator plugin and tests (Issue #73)
  89. Thanks to @benallard
  90. * Added restructuredText plugin (Issue #63)
  91. * Added restructuredText filter (Issue #63)
  92. * Added traceback support for errors when server is running (Issue #63)
  93. Thanks to @rfk
  94. * Added Sphinx Plugin (Issue #62)
  95. * Bug fix: PyFS publisher now checks if the pyfs module is installed. (Issue #62)
  96. Version 0.8.3
  97. ============================================================
  98. * Bug Fix: A bad bug in Expando that modified the `__dict__` has been fixed.
  99. (Issue #53)
  100. * Tags now support metadata. Metadata can be provided as part of the tagger
  101. plugin configuration in `site.yaml`
  102. * Ensured that the context data & providers behave in the same manner. Both
  103. get loaded as expandos. (Issue #29)
  104. * `hyde serve` now picks up changes in config data automatically.
  105. (Issue #24)
  106. * Bug Fix: `hyde create` only fails when `content`, `layout` or `site.yaml`
  107. is present in the target directory. (Issue #21)
  108. * Bug Fix: Exceptions are now handled with `ArgumentParser.error`.
  109. * Bug Fix: Sorter excludes items that do not have sorting attributes.
  110. (Issue #18)
  111. * Wrapped `<figure>` inside `<div>` to appease markdown. (Issue #17)
  112. * Added `display:block` for html5 elements in basic template so that it
  113. works in not so modern browsers as well. (Issue #17)
  114. Thanks to Joe Steeve.
  115. * Changed deploy location for main.py and fixed entry point in
  116. `setup.py`. (Issue #56)
  117. Thanks to @stiell
  118. * Bug Fix: Better mime type support in hyde server (Issue #50)
  119. * Bug Fix: Support empty extension in tagger archives (Issue #50)
  120. Thanks to @gfuchedzhy
  121. * Bug Fix: Hyde server now takes the url cleaner plugin into account.
  122. (Issue #54)
  123. Thanks to @vincentbernat
  124. * Bug Fix: Ensure image sizer plugin handles external urls properly.
  125. (Issue #52)
  126. Thanks to @rfk
  127. * Added PyPI publisher (Issue #49)
  128. * Bug Fix: Made `site.full_url` ignore fully qualified paths (Issue #49)
  129. Thanks to @vincentbernat
  130. * Added JPEG Optim plugin (Issue #47)
  131. * Fixes to CLTransformer (Issue #47)
  132. Version 0.8.2
  133. ============================================================
  134. Thanks to @merlinrebrovic
  135. * Added hyde starter kit (Issue #43)
  136. Thanks to @vincentbernat
  137. * Added git dates plugin (Issue #42)
  138. * Added Image size plugin (Issue #44)
  139. * Added silent, compress and optimization parameter support for less css
  140. plugin (Issue #40)
  141. * Fixed plugin chaining issues (Issue #38)
  142. * Added Language(translation) plugin (Issue #37)
  143. * Bug Fix: Made sorting tests more predictable (Issue #41)
  144. * Bug Fix: Added more standard paths for executables (Issue #41)
  145. * Added Combine files plugin (Issue #39)
  146. * Added ignore option in site configuration to igore based on wildcards
  147. (Issue #32)
  148. Thanks to @pestaa
  149. * Added support `UTF8` keys in `metadata` and `config` (Issue #33)
  150. Version 0.8.1
  151. ============================================================
  152. Thanks to @rfk.
  153. * Updated to use nose 1.0 (Issue #28)
  154. * Bug fix: LessCSSPlugin: return original text if not a .less file
  155. (Issue #28)
  156. * PyFS publisher with mtime and etags support. (Issue #28)
  157. Version 0.8
  158. ============================================================
  159. * Relative path bugs in windows generation have been fixed.
  160. Version 0.8rc3
  161. ============================================================
  162. * Fixed a jinja2 loader path issue that prevented site generation in windows
  163. * Fixed tests for stylus plugin to account for more accurate color
  164. manipulation in the latest stylus