Skip to content

Releases: outl1ne/nova-menu-builder

5.2.3

05 Mar 10:32
Compare
Choose a tag to compare

Changed

  • Fixed migrations failing in PostgreSQL

5.2.2

05 Mar 10:20
Compare
Choose a tag to compare

Changed

  • Fixed parent_id not being saved

5.2.1

04 Mar 12:42
Compare
Choose a tag to compare

Added

  • Added ability to customize Menu model via config (thanks to @Landish)

Changed

  • Fixed case where default MenuItem model was used instead of the configured one (thanks to @rdaitan-cp)
  • Fixed unique menu slug validator not working on Update
  • Fixed some more cases where wrong model was used
  • Updated packages

5.2.0

05 Feb 14:16
Compare
Choose a tag to compare

Changed

Requires php artisan migrate for these changes to work

  • Added optional unique attribute to menus.
        'header' => [
             'name' => 'Header',
             'unique' => false, // Defaults to true
             'menu_item_types' => []
        ],
  • Fixed ReworkLocale migration exception
  • Updated Navigation icon (thanks to @harmenjanssen)

5.1.0

21 Jan 12:19
Compare
Choose a tag to compare

Added

Changed

  • Fixed migrations for SQLite (thanks to @bambamboole and @harmenjanssen)
  • Fixed issue with Trix field not saving value
  • Fixed compatibility with PHP 8 (getValue and getDisplay functions have new signatures, but this should not cause any problems)
  • Update packages

5.0.1

08 Jan 15:57
Compare
Choose a tag to compare

Changed

  • Fixed issue with fields not updating as expected when changing link type
  • Fixed issue with fields that return an array
  • Update packages

5.0.0

23 Nov 14:14
Compare
Choose a tag to compare

Changed

  • Dropped PHP 7.1, Laravel 6 and Nova 2 support

4.1.2

23 Nov 14:10
Compare
Choose a tag to compare

Changed

  • Fixed translations loading

4.1.1

17 Nov 08:00
Compare
Choose a tag to compare

Added

  • Added german translations (thanks to @manogi)

Changed

  • Fixed trailing comma issue with php 7.2.

4.1.0

12 Nov 13:56
Compare
Choose a tag to compare

Changed

  • Pass $locale to getValue and getDisplayValue functions
  • Fixed passing $data to getValue

NB! Breaking.

The new signature for getDisplayValue is:

public static function getDisplayValue($value = null, array $data = null, $locale)

The new signature for getValue is:

public static function getValue($value = null, array $data = null, $locale)