Skip to content

Commit

Permalink
Some minor changes regarding the icon set update
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianwennink committed Nov 4, 2023
1 parent efbeeb7 commit 347b159
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@ For a full list of commits and changes, please refer to the [full commit changel

---

## 3.1.3 - November 4, 2023
Release: [View tag 3.1.3](https://github.com/fabianwennink/IconCaptcha-PHP/releases/tag/3.1.3)

## Changed
- Updated included icons to v3.1.3 of the IconCaptcha widget package, replacing all icons with ones created by [BlendIcons](https://blendicons.com/).

For a full list of commits and changes, please refer to the [full commit changelog](https://github.com/fabianwennink/IconCaptcha-PHP/compare/3.1.2...3.1.3).

---

## 3.1.2 - April 3, 2023
Release: [View tag 3.1.2](https://github.com/fabianwennink/IconCaptcha-PHP/releases/tag/3.1.2)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ ___

### [▶ Try the live demo here!](https://www.fabianwennink.nl/projects/IconCaptcha/#!demonstration)

<img src="https://i.imgur.com/9RGFZSC.png" title="IconCaptcha widget examples" alt="IconCaptcha light and dark theme widget examples." />
<img src="https://i.imgur.com/WsWdBRL.png" title="IconCaptcha widget examples" alt="IconCaptcha light and dark theme widget examples." />

**[Using ASP.NET instead? Try IconCaptcha for ASP.NET](https://github.com/fabianwennink/IconCaptcha-ASP.NET)** _(not currently maintained - will continue in Q4 of 2023)_
___
Expand Down
4 changes: 2 additions & 2 deletions examples/captcha-config.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@

// Configuration for the challenge generation.
'challenge' => [
// Specifies the maximum number of unique icons available. By default, IconCaptcha ships with 180 icons.
'availableIcons' => 180,
// Specifies the maximum number of unique icons available. By default, IconCaptcha ships with 250 icons.
'availableIcons' => 250,
// Specifies the minimum and maximum number of icons to use in each challenge image.
'iconAmount' => [
'min' => 5, // The lowest possible is 5 icons per challenge.
Expand Down
2 changes: 1 addition & 1 deletion src/Options.php
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class Options
'datetimeFormat' => 'Y-m-d H:i:s',
],
'challenge' => [
'availableIcons' => 180,
'availableIcons' => 250,
'iconAmount' => [
'min' => 5,
'max' => 8
Expand Down

0 comments on commit 347b159

Please sign in to comment.