Skip to content

Releases: goetas/twital

2016-01-06 - Stable version

06 Jan 18:35
Compare
Choose a tag to compare

Twital goes stable! 1.0.0 is out!

Included:

  • Twig 2.0 support
  • Parent and child templates are fully XHTML compatible. Added t:block-inner and t:block-outer, and t:extends attributes to be used instead of t:block and t:extends nodes (#39)
  • Documented t:content and added `t:replace ( #43)
  • Proper handling of HTML boolean attributes (#42)

Migration

1.0.0 is almost fully compatible with the 0.x branch, no "real" issues are expected.

The only issue can be with XML templates:

On order to obtain:

<div class="1">
 blah
</div> 

Before:

<div t:attr="class=true">
 blah
</div>

<!-- or -->
<div t:attr="class=1">
 blah
</div> 

<!-- or -->
<div t:attr="class='1'">
   blah
</div> 

After:

<!-- after -->
<div t:attr="class=1">
  blah
</div> 

<!-- or -->
<div t:attr="class='1'">
 blah
</div> 

sf3 & various improvements

20 Mar 20:56
Compare
Choose a tag to compare
Merge pull request #35 from hason/perf

Fixed a full compatibility mode

Twig 2.0 support

08 Aug 11:04
Compare
Choose a tag to compare
  • Twig 2.0 supoort

0.1.7

13 Jun 15:49
Compare
Choose a tag to compare

Bugfix

  • Removed empty attribute (html5 related)
  • Fixed spl_object_hash collisions using internal attribute
  • Attributes are duplicated multiple nodes

Minor changes

  • Add php7 support (and php 5.6)
  • better travis integration
  • HHVM tests on a stable release

Atribute escaping fixed

31 Jul 08:33
Compare
Choose a tag to compare
0.1.6

Skip sometimes attribute escaping

Improvments release

28 Jul 12:28
Compare
Choose a tag to compare

HTML5 & Extensions & Loader improvements

29 May 07:27
Compare
Choose a tag to compare
0.1.4

Merge branch 'hason-loader'

Fixed some encoding & escaping issues

22 May 09:31
Compare
Choose a tag to compare
0.1.3

Merge branch 'hason-clean'

First "stable" release

21 May 06:47
Compare
Choose a tag to compare
0.1.2

Added some tests for subscribers

Added some nice features and docs

08 Apr 09:42
Compare
Choose a tag to compare
Pre-release
0.1.1-beta

Better docs