Changelogs: Uploader v3.2

A new version of Uploader has been released, version 3.2. Please download the new tag or view the documentation. If you have any questions, be sure to send me an email or comment on this post. If you run into any problems, be sure to report an issue on the Github repository.

Version: 3.2
Tested On: PHP 5.3, CakePHP 2.0.5
Requires: PHP 5.2, CakePHP 2.0
Commit Hash: f061776a146919f3d5305bd9573c466eac24e2ee
Changes:

  • Fixed a Linux upload issue regarding multiple transforms
  • Fixed Uploader::addMimeType() to not overwrite existing values
  • Fixed Uploader::crop() when both height and width are equal
  • Fixed strict errors
  • Fixed issue with transforms not inheriting custom name [Issue #36]
  • Fixed a bug with multiple model uploading with AttachmentBehavior
  • Recursively delete files if transforming overwrites the original
  • Can now accept a model method for file name formatting [Issue #35]
  • Added an aspect setting to Uploader::resize() [Issue #40]
  • Added an allowEmpty setting to AttachmentBehavior to allow empty file uploads to continue [Issue #38]

Changelogs: Decoda v3.3

A new version of Decoda has been released, version 3.3. Please download the new tag or view the documentation. If you have any questions, be sure to send me an email or comment on this post. If you run into any problems, be sure to report an issue on the Github repository.

Version: 3.3
Tested On: PHP 5.3
Requires: PHP 5.2
Commit Hash: 710b972a367d908a33d198134417a30ef418b54b
Changes:

  • Added DecodaFilter::setupHooks() to allow filters to initialize hook dependencies
  • Added DecodaHook::setupFilters() to allow hooks to initialize filter dependencies
  • Added CodeHook (CodeFilter dependency) that stops emoticons from being processed in code blocks [Issue #9]
  • Check for class or interface during autoload [Issue #10]
  • Made HTML escaping a boolean setting [Issue #11]
  • Switched CensorHook::afterParse() to beforeParse()

Changelogs: AutoLogin v3.4

A new version of AutoLogin has been released, version 3.4. Please download the new tag or view the documentation. If you have any questions, be sure to send me an email or comment on this post. If you run into any problems, be sure to report an issue on the Github repository.

Version: 3.4
Tested On: PHP 5.3, CakePHP 2.0.5
Requires: PHP 5.2, CakePHP 2.0
Commit Hash: 29d38c3970644239cdf7dfa560dca466aa57fd61
Changes:

  • A boolean setting "active" can be toggled to force an early exit of the script
  • A boolean setting "redirect" can force a redirect after a successful login
  • A boolean setting "requirePrompt" allows you to determine whether a form checkbox is needed
  • Fixed a bug where AutoLogin shouldn't be triggered for POST or PUT requests
  • Moved $cookieName and $expires properties to $settings (backwards compatible support)
  • Updated debug() to log to file if no debug email was defined
  • Settings can now be defined dynamically via Configure::write('AutoLogin')
  • Test cases have been added

Thanks to dereuromark for the new features and test cases! Be sure to also check out his blog post on the AutoLogin changes.

Changelogs: AutoLogin v3.3

A new version of AutoLogin has been released, version 3.3. Please download the new tag or view the documentation. If you have any questions, be sure to send me an email or comment on this post. If you run into any problems, be sure to report an issue on the Github repository.

Version: 3.3
Tested On: PHP 5.3, CakePHP 2.0.5
Requires: PHP 5.2, CakePHP 2.0
Commit Hash: a9a4c11e3055f3ec569af77b3899f7dd4d485632
Changes:

  • Fixed a problem where Auth would redirect before startup() has happened
  • Fixed a bug with plugin name inflection (Issue #14)
  • Updated code to support dynamic User and AutoLogin configuration