Skip to content

Releases: oooholdings/nova-password-generator

Release v1.8.1

03 Feb 23:42
fcc0c5d
Compare
Choose a tag to compare

Primary changes:

  • Fix typo breaking fillOnCreate() feature (#22).

Release v1.8.0

03 Feb 23:20
422dcb5
Compare
Choose a tag to compare

Primary changes:

  • Fix wrong tooltip text showing for the show password toggle, thanks to @chrillep (#19)
  • Modify readme.md.

Added the following methods:

  • showValueOnUpdate(): Load and show the field value within the update forms (#20)

Release v1.7.1

29 Nov 15:04
2b350ab
Compare
Choose a tag to compare

Primary changes:

  • Added new Slovak translation sk.json.
  • Modify readme.md.

Release v1.7.0

28 Jun 18:29
3badbcb
Compare
Choose a tag to compare

Primary changes:

  • Added a lang file with all available localizable strings en.json.
  • Use the name of the field instead of "Password" or "Value".
  • Modify readme.md.

Release v1.6.0

31 May 04:49
2bb0134
Compare
Choose a tag to compare

Fixed layout issues with help text and error text, as well as changing references to "Password" to "Value" on user facing strings. Language file is still in the works, this should make it less password specific for now.
Fixed issue with saving resources with a null PasswordGenerator field, now checks to ensure value isn't null as well as added the ability to disable hashing the field value for non-sensitive use-cases.
Modified readme.

Added the following methods:

  • saveAsPlainText(): Disable hashing field value when saving to database.

Release v1.5.0

04 May 06:11
e09ed7d
Compare
Choose a tag to compare

Added the ability to show the field value on the resource index and detail pages. As a side product, it can also be included in the resource preview modal on the resource index page.
Modified readme.

Added the following methods:

  • showValueOnDetail(): Show the field value by default on detail view.
  • showValueOnIndex(): Show the field value by default on index view.
  • blurValueOnDetail(): Blur the field value by default on detail view.
  • blurValueOnIndex(): Blur the field value by default on index view.
  • redactValueOnDetail(): Redact the field value by default on detail view with specified character.
  • redactValueOnIndex(): Redact the field value by default on index view with specified character.

Release v1.4.1

13 Apr 09:58
a459c96
Compare
Choose a tag to compare

Modify the way the options toggle is hidden, ensuring it can't be shown when using a custom charlist.

Release v1.4.0

13 Apr 09:38
fbd4954
Compare
Choose a tag to compare

Changed the ordering of password options.
Add new method to allow for custom charlists, also adding multiple example charlists.
Modified readme.

Added the following methods:

  • customCharlist(): Override the default dynamic charlists with a custom one.
    • This method auto-hides the option element from the toolbar.
    • Check the PasswordGenerator class for more charlists added for your convenience.

Release v1.3.0

12 Apr 09:18
3e15406
Compare
Choose a tag to compare

Renamed a method to easily convey the what it does.

Removed the following methods:

  • mobileFirstAlways(): Renamed this method to disableSideToolbar()

Release v1.2.1

12 Apr 06:05
9e5e550
Compare
Choose a tag to compare

Refactored some methods and added new exclude rules method.
Updated readme.

Removed the following methods:

  • lowercase(): Replaced with excludeLowercase(), to exclude when used
  • uppercase(): Replaced with excludeUppercase(), to exclude when used
  • numbers(): Replaced with excludeNumbers(), to exclude when used
  • symbols(): Replaced with excludeSymbols(), to exclude when used

Added the following methods:

  • excludeRules(): Allows you to exclude multiple options at once, accepts an array with the following strings:
    • lowercase or lower, uppercase, or upper, numbers or digits, symbols or special, similar, ambiguous