Skip to content
This repository has been archived by the owner on Aug 17, 2021. It is now read-only.

Releases: VividCortex/angular-recaptcha

4.1.5

23 May 15:06
Compare
Choose a tag to compare

Added support for the new Invisible reCaptcha badge attribute and execute() API method

4.0.4

19 Apr 15:45
Compare
Choose a tag to compare
4.0.4

4.0.0

18 Jan 19:34
Compare
Choose a tag to compare

#176 Removed the need to manually include the Google recaptcha <script> tag.

This also fixed #175 which was happening to many users if they loaded Google's recaptcha before the angular-recaptcha module.

Upgrade Instructions

Remove the <script> tag that loads Google recaptcha API. You only need to include angular-recaptcha and it will download Google's api only when needed.

Thanks to @felixmosh for it!

Fixed missing code in release files

07 Dec 17:55
Compare
Choose a tag to compare

Added support for language configuration

02 Dec 12:32
Compare
Choose a tag to compare

Now, the language of the reCaptcha can be configured in the directive (Thanks @reduardo7).

Example:

<div
    vc-recaptcha
    key="'---- YOUR PUBLIC KEY GOES HERE ----'"
    ng-model="gRecaptchaResponse"
    lang="es"
></div>

3.0.1

06 Apr 11:33
Compare
Choose a tag to compare
3.0.1

Release of v3.0.0

05 Apr 00:12
Compare
Choose a tag to compare

Includes:

2.5.0

18 Feb 14:30
Compare
Choose a tag to compare
  • Add reload function to expiration function. Fixed #84 issue (be6af41)
  • Update docs to include ng-model (1b7faba)

2.4.1

08 Feb 15:50
Compare
Choose a tag to compare
  • Added type support through the type attribute, which just gets passed to
    reCaptcha. Possible values are 'audio' and 'image' (per reCaptcha docs).
    README was also update to show this attribute.

  • Add required to opt out of validation

    Resolves #96 by adding and documenting the required attribute.
    When require is false or is a scoped variable which is false,
    the form validation will be removed.
    This is opt out to prevent a breaking change and usually the validation is
    preferred.

  • Use recaptcha expired-callback instead of a hard-coded 2 min timeout

  • Added documentation for changing the size