Skip to content

Releases: outl1ne/nova-menu-builder

2.0.4

15 Nov 08:34
Compare
Choose a tag to compare

Changed

  • Fixed latest migration's rollback not working due to wrong order of dropping foreign keys and indexes

2.0.3

14 Nov 09:20
Compare
Choose a tag to compare

Added

  • Added functionality to collapse menu item's children

Changed

  • Fixed hardcoded column name (thanks to @naska-it)

2.0.2

11 Nov 13:37
Compare
Choose a tag to compare

Changed

  • Fixed invalid validation rule crashing when updating a menu item

2.0.1

11 Nov 10:23
Compare
Choose a tag to compare

Changed

  • Added names to migration indexes (uniques and foreign keys)

2.0.0

11 Nov 09:56
Compare
Choose a tag to compare

NB! This release contains breaking changes. See UPGRADING.md for instructions on how to upgrade from 1.0 to 2.0.

Added

Changed

  • Better localization support through nova-locale-field
  • Moved all config options from tool constructor to config/nova-menu.php
  • Updated all packages
  • All migrations are now loaded automatically
    • Publishing migrations is not necessary anymore
    • Running migrate will delete the original migration from project source
  • Table names are now configurable through config/nova-menu.php

1.4.2

09 Oct 13:42
Compare
Choose a tag to compare

Changed

  • Fix modal flickering when data is updated (possibly caused by a Laravel Nova update)

1.4.1

18 Sep 07:21
Compare
Choose a tag to compare

Changed

  • Fix Menu slug unique validation (thanks to @zippoxer)

1.4.0

12 Sep 06:57
Compare
Choose a tag to compare

Changed

  • Make Nova Resource class configurable (by @ArroWsGM)
  • Add templates and config publishing (by @ArroWsGM)
  • Enable access control via policy (by @nemrutco)

1.3.3

15 Aug 15:30
Compare
Choose a tag to compare

Changed

  • Fix MenuLinkable types

BREAKING!

Previous string enforcements failed in some cases, it is safer to just remove them. New type definitions for getDisplayValue and getValue:

public static function getDisplayValue($value = null)
public static function getValue($value = null, array $parameters = null)

1.3.2

15 Aug 10:29
Compare
Choose a tag to compare

Changed

  • Fix MenuItemBase and MenuItemText function declaration discrepancy by @MohamedLbn