Skip to content

Releases: CodepadME/laravel-tricks

Current production - using translation strings

25 Sep 17:45
Compare
Choose a tag to compare

Integrates latest PRs and is what's on production currently.

Specifically the release is using language strings instead of hard coded text, allowing you to translate the whole application quickly.

"Remember me" Security update

17 Apr 18:37
Compare
Choose a tag to compare

This update is essential for tightened security of the "remember me" functionality. Per Laravel 4.1.26 release tightening application security, the users table require a remember me column and methods to set the remember me hash in the DB instead of in the cookie.

Read more at http://laravel.com/docs/upgrade#upgrade-4.1.26

Next / previous navigation bug fix

27 Feb 21:16
Compare
Choose a tag to compare

Moved the bootstrap tooltip outside of the Auth::check() block.

Easier trick navigation

27 Feb 20:56
Compare
Choose a tag to compare

This release adds the following improvements:

Extract view trick throttle to seperate filter class
The view trick throttle filter is responsible for incrementing the trick view count. It does this by adding a delay to the trick view, so that revisiting a trick shortly after viewing it doesn't increment the view counter again.

Extract increment view count event to seperate event class
This class handles the actual incrementing of the trick view count.

Add 'Previous Trick' and 'Next Trick' buttons to the single trick view
This allows for navigation to the next and previous tricks, so that you can easily walk through them without returning to the browse page. Thanks to @chadwithuhc for the suggestion!

Various bug fixes and improvements

Controller clean-up

21 Feb 00:32
Compare
Choose a tag to compare

The SitemapController and FeedsController have been cleaned up. The generation of the feeds and sitemaps has been extracted to dedicated classes.

Initial release

20 Feb 20:46
Compare
Choose a tag to compare

The initial release of the Laravel Tricks source code