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.
 
 
 

236 lines
7.9 KiB

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