25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CHANGELOG.md 2.6KB

12 년 전
12 년 전
13 년 전
13 년 전
13 년 전
13 년 전
13 년 전
13 년 전
13 년 전
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. 1.0.0 / 20 Dec 2014
  2. ===================
  3. * Inline tag compilation, by @mjackson.
  4. * Fixed AMD registration, volo package.json entry, by @jrburke.
  5. * Added spm support, by @afc163.
  6. * Only access properties of objects on Context.lookup, by @cmbuckley.
  7. 0.8.2 / 17 Mar 2014
  8. ===================
  9. * Supporting Bower through a bower.json file.
  10. 0.8.1 / 3 Jan 2014
  11. ==================
  12. * Fix usage of partial templates.
  13. 0.8.0 / 2 Dec 2013
  14. ==================
  15. * Remove compile* writer functions, use mustache.parse instead. Smaller API.
  16. * Throw an error when rendering a template that contains higher-order sections and
  17. the original template is not provided.
  18. * Remove low-level Context.make function.
  19. * Better code readability and inline documentation.
  20. * Stop caching templates by name.
  21. 0.7.3 / 5 Nov 2013
  22. ==================
  23. * Don't require the original template to be passed to the rendering function
  24. when using compiled templates. This is still required when using higher-order
  25. functions in order to be able to extract the portion of the template
  26. that was contained by that section. Fixes #262.
  27. * Performance improvements.
  28. 0.7.2 / 27 Dec 2012
  29. ===================
  30. * Fixed a rendering bug (#274) when using nested higher-order sections.
  31. * Better error reporting on failed parse.
  32. * Converted tests to use mocha instead of vows.
  33. 0.7.1 / 6 Dec 2012
  34. ==================
  35. * Handle empty templates gracefully. Fixes #265, #267, and #270.
  36. * Cache partials by template, not by name. Fixes #257.
  37. * Added Mustache.compileTokens to compile the output of Mustache.parse. Fixes
  38. #258.
  39. 0.7.0 / 10 Sep 2012
  40. ===================
  41. * Rename Renderer => Writer.
  42. * Allow partials to be loaded dynamically using a callback (thanks
  43. @TiddoLangerak for the suggestion).
  44. * Fixed a bug with higher-order sections that prevented them from being
  45. passed the raw text of the section from the original template.
  46. * More concise token format. Tokens also include start/end indices in the
  47. original template.
  48. * High-level API is consistent with the Writer API.
  49. * Allow partials to be passed to the pre-compiled function (thanks
  50. @fallenice).
  51. * Don't use eval (thanks @cweider).
  52. 0.6.0 / 31 Aug 2012
  53. ===================
  54. * Use JavaScript's definition of falsy when determining whether to render an
  55. inverted section or not. Issue #186.
  56. * Use Mustache.escape to escape values inside {{}}. This function may be
  57. reassigned to alter the default escaping behavior. Issue #244.
  58. * Fixed a bug that clashed with QUnit (thanks @kannix).
  59. * Added volo support (thanks @guybedford).