Skip to content

Releases: EFTEC/BladeOne

4.16

11 Oct 17:41
Compare
Choose a tag to compare
  • Fixed a bug when the stack is called before it is used.

4.15.2

10 Oct 20:07
Compare
Choose a tag to compare

Fixed a bug added with the changes in the comment function

4.15.1

08 Oct 14:51
Compare
Choose a tag to compare
  • Pushed latest pulls
  • Fixed a last-second bug with comments.

4.14

08 Oct 14:26
Compare
Choose a tag to compare

Addressing the next problems
#193
#194

4.13

26 Mar 21:36
Compare
Choose a tag to compare

4.12

02 Mar 12:21
Compare
Choose a tag to compare
  • Updating dependency to PHP 7.4. The extended support of PHP 7.2 ended 3 years ago.
  • Adding more type "hinting" to the code.

4.11

04 Feb 12:38
Compare
Choose a tag to compare

changelog
Mainly, now it is possible to create custom controls (custom tags) without much complexity using the new runtime control.
Also, it is possible to add new methods without extending the class.
Example:

$blade->addMethod('runtime','card',static function($args) { // @card($item)
    $result='';
    $result.=BladeOne::$instance->runChild('card,['value'=>$args[0]]);   // card is a view.
    return $result;
});

4.10

01 Feb 12:18
Compare
Choose a tag to compare

see changelog for changes.

4.9

01 May 12:55
Compare
Choose a tag to compare
4.9

see changelog for changes.

4.8.2

19 Mar 11:11
Compare
Choose a tag to compare

see changelog for changes.