Skip to content

Releases: EFTEC/BladeOne

4.18

22 Feb 00:13
Compare
Choose a tag to compare

4.17.1

30 Dec 17:32
Compare
Choose a tag to compare

Fixed some comments

4.17

30 Dec 17:24
Compare
Choose a tag to compare
  • Compatibility with PHP 8.4 (without warning)

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;
});