Releases: CodepadME/laravel-tricks
Current production - using translation strings
"Remember me" Security update
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
Moved the bootstrap tooltip outside of the Auth::check() block.
Easier trick navigation
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
The SitemapController
and FeedsController
have been cleaned up. The generation of the feeds and sitemaps has been extracted to dedicated classes.
Initial release
The initial release of the Laravel Tricks source code