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.
 
 
 

246 lines
8.3 KiB

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