All Versions
35
Latest Version
Avg Release Cycle
110 days
Latest Release
-

Changelog History
Page 3

  • v0.4.6 Changes

    • ๐Ÿ›  Fixes an UnicodeDecodeError which was apparently only triggered during testing on TravisCI (I hope)
    • ๐Ÿ‘Œ Support for Django 2.0 urlpatterns syntax (PR #82, Thanks @R3v1L)
    • settings.CAPTCHA_FONT_PATH may be a list, in which case a font is picked randomly (Issue #51 fixed in PR #88, Thanks @inflrscns)
  • v0.4.5 Changes

    • โœ… Test with tox
    • โœ… Test against Django 1.8 final
    • โž• Added ability to force a fixed image size (PR #76, Thanks @superqwer)
  • v0.4.4 Changes

    • โž• Added id_prefix argument (fixes issue #37)
  • v0.4.3 Changes

    • โž• Add null noise helper (Thanks @xrmx)
    • โœ… Test against Django 1.7b4
    • โž• Added Spanish translations (Thanks @dragosdobrota)
    • ๐ŸŒ Massive cleanup (pep8, translations)
    • ๐Ÿ‘Œ Support for transparent background color. (Thanks @curaloucura)
    • ๐Ÿ‘Œ Support both Django 1.7 migrations and South migrations. Please note, you must add the following to your settings, if you are using South migrations and Django 1.6 or lower.
    • ๐Ÿ‘‰ Make sure autocomplete="off" is only applied to the text input, not the hidden input (Issue #68, thanks @narrowfail)
    • ๐Ÿ›  Fixed some grammar in the documentation. (Thanks @rikrian)
    • Return an HTTP 410 GONE error code for expired captcha images, to avoid crawlers from trying to reindex them (PR #70, thanks @joshuajonah)
    • ๐Ÿ›  Fixed title markup in documentation (#74, thanks @pavlov99)
    • โœ… Test against Django 1.7.1
  • v0.4.2 Changes

    • โž• Added autocomplete="off" to the input (Issue #57, thanks @Vincent-Vega)
    • ๐Ÿ›  Fixed the format (msgfmt -c) of most PO and MO files distributed with the project
    • โž• Added Bulgarian translations. (Thanks @vstoykov)
    • โž• Added Japanese translations. (Thanks, Keisuke URAGO)
    • โž• Added Ukrainian translations. (Thanks, @FuriousCoder)
    • โž• Added support for Python 3.2. (Thanks, @amrhassan)
  • v0.4.1 Changes

    • โฌ‡๏ธ Dropped support for Django 1.3
    • ๐Ÿ›  Fixed support of newer versions of Pillow (2.1 and above. Pillow 2.2.2 is now required) Thanks @viaregio (Issue #50)
  • v0.4.0 Changes

    • ๐Ÿ“ฆ Perform some tests at package installation, to check whether PIL or Pillow are already installed. (Issue #46)
    • โž• Added Slovak translations. (Thanks @ciklysta)
  • v0.3.9 Changes

    • โœ… Run most tests both with a regular Form and a ModelForm, to avoid regressions such as Issue #40
    • ๐Ÿ– Handle the special case where CaptchaFields are instantiated with required=False (Issue #42, thanks @DrMeers)
    • ๐Ÿ›  Fixed a misspelled setting, we now support both spellings, but the docs suggest the correct one (Issue #36, thanks @sayadn)
    • โž• Added Django 1.6b to testrunner and adapted the test cases to support Django 1.6's new test discovery
    • โž• Added German translations. (Thanks @digi604)
    • ๐Ÿ‘€ Frozen the version of Pillow to 2.0.0, as 2.1.0 seems to be truncating the output image -- Issue #44, Thanks @andruby
    • โž• Added Polish translations. (Thanks @stilzdev)
  • v0.3.8 Changes

    • ๐Ÿ›  Fixed a critical bug (Issue #40) that would generate two captcha objects, and the test would always fail. Thanks @pengqi for the heads-up.
  • v0.3.7 Changes

    • ๐Ÿ‘Œ Improved Django 1.5 and Django HEAD (1.6) compatibility (thanks @uruz)
    • Python3 compatibility (requires six and Pillow >= 2.0)
    • โž• Added zh_CN localization (thanks @mingchen)
    • ๐Ÿ‘‰ Make sure the generated challenge is a string type (the math challenge was probably broken -- Issue #33, thanks @YDS19872712)
    • ๐Ÿ”จ Massive cleanup and refactoring (Issue #38, thanks @tepez)
    • ๐Ÿ”จ Test refactoring to test a couple generators that weren't tested by default