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

Releases: VividCortex/angular-recaptcha

4.1.5

Choose a tag to compare

@TheSharpieOne TheSharpieOne released this 23 May 15:06
4.1.5

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

Choose a tag to compare

@iambrosi iambrosi released this 24 Apr 19:10

4.0.4

Choose a tag to compare

@mtrias mtrias released this 19 Apr 15:45
4.0.4

4.0.0

Choose a tag to compare

@mtrias mtrias released this 18 Jan 19:34

#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

Choose a tag to compare

@iambrosi iambrosi released this 07 Dec 17:55
3.2.1

3.2.1

Added support for language configuration

Choose a tag to compare

@iambrosi iambrosi released this 02 Dec 12:32

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

Choose a tag to compare

@mtrias mtrias released this 06 Apr 11:33
3.0.1

Release of v3.0.0

Choose a tag to compare

@iambrosi iambrosi released this 05 Apr 00:12

Includes:

2.5.0

Choose a tag to compare

@iambrosi iambrosi released this 18 Feb 14:30
  • Add reload function to expiration function. Fixed #84 issue (be6af41)
  • Update docs to include ng-model (1b7faba)

2.4.1

Choose a tag to compare

@iambrosi iambrosi released this 08 Feb 15:50
  • 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