All Versions
16
Latest Version
Avg Release Cycle
165 days
Latest Release
2442 days ago

Changelog History
Page 1

  • v2.3.0 Changes

    July 21, 2017
    • ➕ Added ability to set map and path in ViewFactory. #73
    • ✂ Removed CHANGES.md file.
    • ➕ Added CHANGELOG.md
  • v2.2.1 Changes

    October 03, 2016
    • ➕ Added ability to customize template extension. Thank you Josh Butts.

    • ➕ Added documentation how to customize template extension.

  • v2.2.0 Changes

    January 21, 2016
    • ➕ Added ability to customize template extension. Thank you Josh Butts.

    • ➕ Added documentation how to customize template extension.

  • v2.1.1 Changes

    March 27, 2015

    🚀 This release modifies the testing structure and updates other support files.

  • v2.1.0 Changes

    March 16, 2015

    🚀 This release has one feature addition, in addition to doucmentation and support file updates.

    Per @harikt, we have brought back the "finder" functionality from Aura.View v1. This means the TemplateRegistry can now search through directory paths to find templates implicitly, in addition to the existing explicitly registered templates. (Explicit mappings take precedence over search paths.)

    ✅ Thanks also to @iansltx for his HHVM-related testing work.

  • v2.0.1 Changes

    November 07, 2014
    • ⚡️ TST: Update testing structure, and disable auto-resolve for container tests

    • ⚡️ DOC: Update README and docblocks

    • 🛠 FIX: TemplateRegistry map now passes the array via set to make the file inside a closure

  • v2.0.0 Changes

    August 30, 2014

    🚀 First stable 2.0 release.

    • ⚡️ DOC: Update docblocks and README.

    • CHG: View::render() now takes a second param, $data, for an array of vars to be extract()ed into the template scope. Closure-based templates will need to extract this on their own. (The previous technique of placing partial vars in the main template object still works.)

  • v2.0.0-beta2 Changes

    May 22, 2014
    • [BRK] Stop using a "content variable" and begin using setContent()/getContent() instead. In your layouts, replace echo $this->content_var_name with echo $this->getContent(). (This also removes the setContentVar() and getContentVar() methods.)
    • 🛠 [ADD] Add support for sections per strong desire from @harikt, which fixes #46. The new methods are setSection(), hasSection(), and getSection(), along with beginSection() and endSection().
  • v2.0.0-beta1 Changes

    May 14, 2014

    🚀 First 2.0.0-beta1 release.

  • v1.2.2 Changes

    May 31, 2014

    🚀 Hygiene release.

    • 🔧 Merge pull request #52 from harikt/v2config; adds configuration for v2 framework

    • 🔀 Merge pull request #50 from koriym/fix-typos; fixes some doc typos.

    • 🔀 Merge pull request #45 from harikt/label-issue; fix label issue pointed out in groups by guillaume ferrand and poiting to wrong docs

    • ⚡️ Merge pull request #44 from jelofson/helpers; various helper updates:

      • Changed docblock to correct type for 'checked'
      • Fixed the ordering of the styles helper to match that of the scripts helper
      • Updated some tests
      • Added fluency to some helpers
      • Added some documentation for helpers
      • Fluent method in the Links helper and updated test.