Skip to content

Fixes and Improvements (breaking)

Compare
Choose a tag to compare
@secrethash secrethash released this 31 Aug 16:05
· 6 commits to master since this release

ChangeLog MINI for v2.2.0

Changes that have taken place from v2.1.0 to v2.2.0. Breaking Changes are marked BREAKING.

Fixed:

  • Following PSR for Trickster's Facade. (Thanks to @m1guelpf #9 )

Changes:

  • Trickster's Truncator function Trickster::truncator() Update ( Commit: c09daa5 ):
    • Now returns the Complete Word at the end of the truncated text i.e. does not stops at an incomplete word.
    • If the specified text length is less than the specified length, text is not sent for truncation.
    • read more... has been changed to ...see more.
    • Now supports the UTF-8 Characters.
  • BREAKING Trickster's Social Analytics function Trickster::social() Update ( Commit: 50c4d9d ):
    • Now Returns Shares and Counts as an Object.
    • Use it somewhat like this:
    $social = Trickster::social('facebook', 'https://github.com');
    echo 'Shares: '.$social->shares;
    echo 'Comments: '.$social->comments;