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.
 
 
 

312 lines
10 KiB

  1. Version 0.8.7a2
  2. ============================================================
  3. * Add support for draft blog posts. (Issue #213)
  4. Version 0.8.7a1
  5. ============================================================
  6. * Bugfix: Use `clearfix` class in `listing.j2`. (Issue #156)
  7. * Bugfix: Use `relative_path` instead of url in `macros.j2`. (Issue #180)
  8. Version 0.8.6
  9. ============================================================
  10. Thanks to @QuLogic:
  11. * Refactor: Plugins reorganized by function. (Issue #170)
  12. * Add HG Dates Plugin. (Issue #177)
  13. * Add Clever CSS Plugin. (Issue #178)
  14. * Add Sassy CSS Plugin. (Issue #179)
  15. Thanks to @sirlantis:
  16. * Add support for custom jinja filters. (Issue #159)
  17. Thanks to @gfuchedzhy
  18. * Bugfix: Serve files without a resource. (Issue #92)
  19. Thanks to @ilkerde:
  20. * Add Require JS plugin. (Issue #201)
  21. Thanks to @jakevdp:
  22. * Add SSH publisher. (Issue #205)
  23. Thanks to @herr-lehmann and @nud:
  24. * Bugfix: Fix date time comparison in git plugin. (Issue#142, #199, #137)
  25. Thanks to @rephorm, @gfuchedzhy and @vincentbernat:
  26. * Add thumbnail plugin. (Issue #169, #89)
  27. Thanks to @vincentbernat:
  28. * Add Coffeescript plugin. (Issue #172)
  29. * Add jpegtran plugin. (Issue #171)
  30. Thanks to @jabapyth:
  31. * Add extension support for restructured text. (Issue #206)
  32. Thanks to @tarajane:
  33. * Bugfix: Update the .clear styleName to be .clearfix instead.
  34. Base.j2 applies the 'clearfix' class to the 'banner' element, and not
  35. the 'clear' class. (Issue #156)
  36. Thanks to @pib:
  37. * Bugfix: Use `_transform` instead of `transform` in Expando.
  38. (Issue #152, #153)
  39. Version 0.8.5
  40. ============================================================
  41. * Upgrade dependencies and setup for 0.8.5
  42. * Remove `hyde.fs` use `fswrap` package instead.
  43. * Remove logging functions from `hyde.util`. Use `commando.util` instead.
  44. * Remove `hyde.loader`. Use `commando.util.load_python_object` instead.
  45. * Bugfix: Use the released version of typogrify. (Issue #193)
  46. * Bugfix: Fixed stylus `indent` issues with empty files. (Issue #161)
  47. * Bugfix: Added support for plugin paths relative to site. (Issue #107)
  48. * Bugfix: Folder Flattener updates node's `relative_deploy_path` & `url`
  49. attributes as well. (Issue #126)
  50. * BREAKING: As part of the above fix, `resource.url` is prefixed with a `/`.
  51. (Issue #126)
  52. * Added `simple_copy` feature to account for unprocessable files that
  53. are nonetheless required to be deployed (Issue #121)
  54. * Bugfix: Relative path was used in the server as the sitepath (Issue #119)
  55. * Plugins now support inclusion filters. (Issue #112)
  56. - `include_file_patterns` property accepts globs to filter by file name.
  57. - `include_paths` accepts paths relative to content.
  58. - `begin_node` and `node_complete` honor `include_paths`
  59. - `begin_text_resource`, `text_resource_complete`, `begin_binary_resource`
  60. and `binary_resource_complete` honor both.
  61. * Bugfix: Unsorted combine files fixed. (Issue #111)
  62. * Added an optional sorting parameter. (Issue #111)
  63. * Bugfix: Modified combine plugin to process during
  64. `begin_text_resource`. (Issue #110)
  65. * Modified combine plugin to support relative paths and recursion.
  66. (Issue #108)
  67. * Added ability to specify safe characters in `content_url`,
  68. `media_url` functions and `urlencode` filter. (Issue #103)
  69. Thanks to @idank
  70. * Bugfix: Use `check_output` to avoid a traceback when subprocess
  71. command fails.
  72. * Bugfix: Tag archive generator uses subscript syntax to avoid failure
  73. when tags contain '-' or space. (Issue #130)
  74. Thanks to @jd
  75. * Bugfix: Metadata Plugin: Do not try to read meta data on `simple_copy`
  76. files. (Issue #124, Issue #121)
  77. * Bugfix: Force escape on title in Atom feed. (Issue #176)
  78. * Add `node.rwalk` method for traversing the node in reverse. (Issue #176)
  79. Thanks to @vinilios
  80. * Added a helper method in Expando class to ease up non existing keys
  81. handling. (Issue #117)
  82. * Some improvements in LessCSSPlugin to be able to build complex less
  83. projects (such as twitter bootstrap) (Issue #117)
  84. Thanks to @Erkan-Yilmaz
  85. * Fixed typos in README.
  86. Thanks to @merlinrebrovic
  87. * Updates and improvements to the starter template.
  88. * Cleans up CSS.
  89. * Handles page title endings more elegantly.
  90. * Renders the advanced menu below the basic one.
  91. * Corrects and updates content.
  92. * Explains how to generate and serve the template.
  93. * Makes it more straightforward to contribute.
  94. Thanks to @joshgerdes:
  95. * Made urlencoding safe character list configurable. (Issue #150)
  96. Thanks to @irrelative:
  97. * Bugfix: Avoid index error if there aren't pages when iterating
  98. for paginator. (Issue #190)
  99. Thanks to @davefowler:
  100. * Bugfix: Infinate recursion error with resource dependencies.
  101. (Issue #155, Issue#200)
  102. Thanks to @adube:
  103. * Bugfix: Fix atom.j2 to use `relative_path` instead of `url` when
  104. referencing templates. (Issue #155, Issue#203)
  105. Version 0.8.4
  106. ============================================================
  107. * Bugfix: Configuration now gets reloaded when server regenerates (Issue #70)
  108. * Bugfix: Added styles for codebox (Issue #69)
  109. * Tagger now generates archives upfront in begin_site (Issue #72)
  110. * **Breaking**: The default nodemeta file has been changed to meta.yaml
  111. * Added test for codehilite markdown extension (Issue #82)
  112. * Added rst_directive.py from the pygments repository (Issue #82)
  113. * Added support for ignoring nodes (Issue #80)
  114. * Hyde now ignores .hg, .svn and .git by default (Issue #80)
  115. * Added support for default publisher (Issue #83)
  116. * Added `urlencode` and `urldecode` filters. (Issue #102)
  117. * Bugfix: Fixed tests for Issue #88
  118. * Added tests for sorting groups
  119. * Added support for loading modules from the site path. Thanks to
  120. @theomega for the idea (Issue #78 & #79)
  121. * Added docutils to dev-req.txt
  122. * Bugfix: Fixed uglify-js tests
  123. Thanks to @nud
  124. * `$PATH` based executable discovery for `CLTransformer` plugins. (Issue #100)
  125. * Bugfix: Fix class name of `test_stylus` (Issue #97)
  126. Thanks to @gfuchedzhy
  127. * Bugfix: Textlinks plugin: do nothing if resource doesn't use template (Issue #96)
  128. * Bugfix: Retain permissions in text files during generation (Issue #90)
  129. * Bugfix: Added support for encoded urls to hyde server. (Issue #88)
  130. * Bugfix: Converted `content_url` and `media_url` to encoded urls. (Issue #88)
  131. * Bugfix: All occurrences of `str` replaced with `unicode`. (Issue #87)
  132. * Bugfix: CLTransformer now gracefully handles arguments that have "=". (Issue #58)
  133. Thanks to @vincentbernat
  134. * Support for `output_format` configuration in markdown (Issue #89)
  135. Thanks to @merlinrebrovic
  136. * Hyde starter kit extended with advanced options (Issue #68)
  137. Thanks to @tcheneau
  138. * Added support for AsciiDoc. (Issue #76)
  139. Thanks to @gr3dman
  140. * Added paginator plugin and tests (Issue #73)
  141. Thanks to @benallard
  142. * Added restructuredText plugin (Issue #63)
  143. * Added restructuredText filter (Issue #63)
  144. * Added traceback support for errors when server is running (Issue #63)
  145. Thanks to @rfk
  146. * Added Sphinx Plugin (Issue #62)
  147. * Bugfix: PyFS publisher now checks if the pyfs module is installed. (Issue #62)
  148. Version 0.8.3
  149. ============================================================
  150. * Bugfix: A bad bug in Expando that modified the `__dict__` has been fixed.
  151. (Issue #53)
  152. * Tags now support metadata. Metadata can be provided as part of the tagger
  153. plugin configuration in `site.yaml`
  154. * Ensured that the context data & providers behave in the same manner. Both
  155. get loaded as expandos. (Issue #29)
  156. * `hyde serve` now picks up changes in config data automatically.
  157. (Issue #24)
  158. * Bugfix: `hyde create` only fails when `content`, `layout` or `site.yaml`
  159. is present in the target directory. (Issue #21)
  160. * Bugfix: Exceptions are now handled with `ArgumentParser.error`.
  161. * Bugfix: Sorter excludes items that do not have sorting attributes.
  162. (Issue #18)
  163. * Wrapped `<figure>` inside `<div>` to appease markdown. (Issue #17)
  164. * Added `display:block` for html5 elements in basic template so that it
  165. works in not so modern browsers as well. (Issue #17)
  166. Thanks to Joe Steeve.
  167. * Changed deploy location for main.py and fixed entry point in
  168. `setup.py`. (Issue #56)
  169. Thanks to @stiell
  170. * Bugfix: Better mime type support in hyde server (Issue #50)
  171. * Bugfix: Support empty extension in tagger archives (Issue #50)
  172. Thanks to @gfuchedzhy
  173. * Bugfix: Hyde server now takes the url cleaner plugin into account.
  174. (Issue #54)
  175. Thanks to @vincentbernat
  176. * Bugfix: Ensure image sizer plugin handles external urls properly.
  177. (Issue #52)
  178. Thanks to @rfk
  179. * Added PyPI publisher (Issue #49)
  180. * Bugfix: Made `site.full_url` ignore fully qualified paths (Issue #49)
  181. Thanks to @vincentbernat
  182. * Added JPEG Optim plugin (Issue #47)
  183. * Fixes to CLTransformer (Issue #47)
  184. Version 0.8.2
  185. ============================================================
  186. Thanks to @merlinrebrovic
  187. * Added hyde starter kit (Issue #43)
  188. Thanks to @vincentbernat
  189. * Added git dates plugin (Issue #42)
  190. * Added Image size plugin (Issue #44)
  191. * Added silent, compress and optimization parameter support for less css
  192. plugin (Issue #40)
  193. * Fixed plugin chaining issues (Issue #38)
  194. * Added Language(translation) plugin (Issue #37)
  195. * Bugfix: Made sorting tests more predictable (Issue #41)
  196. * Bugfix: Added more standard paths for executables (Issue #41)
  197. * Added Combine files plugin (Issue #39)
  198. * Added ignore option in site configuration to igore based on wildcards
  199. (Issue #32)
  200. Thanks to @pestaa
  201. * Added support `UTF8` keys in `metadata` and `config` (Issue #33)
  202. Version 0.8.1
  203. ============================================================
  204. Thanks to @rfk.
  205. * Updated to use nose 1.0 (Issue #28)
  206. * Bugfix: LessCSSPlugin: return original text if not a .less file
  207. (Issue #28)
  208. * PyFS publisher with mtime and etags support. (Issue #28)
  209. Version 0.8
  210. ============================================================
  211. * Relative path bugs in windows generation have been fixed.
  212. Version 0.8rc3
  213. ============================================================
  214. * Fixed a jinja2 loader path issue that prevented site generation in windows
  215. * Fixed tests for stylus plugin to account for more accurate color
  216. manipulation in the latest stylus