We attempt to document every possible breaking change. Moreover, you can find more details about each release in the CHANGELOG.
No actual core breaking changes from v1.1
to v1.2
. However, there are some cool features and enhancements added to v1.2
:
You can now use Algolia DocSearch directly in your docs simply by passing your key and index. See configuration page for more details.
Few enhancements have been added to v1.2
search
array section has been added to the config.return [
'search' => [
'enabled' => false,
'default' => 'algolia',
'engines' => [
'algolia' => [
'key' => '',
'index' => ''
]
]
]
];
colors
array has been added to the ui
array.return [
'ui' => [
...
'colors' => [
'primary' => '#787AF6',
'secondary' => '#2b9cf2',
'selection' => '#f4f5f7'
],
...
]
];
show_side_bar
has been added to the ui
array.return [
'ui' => [
...
'show_side_bar' => true,
]
];
code
has been added to the ui
array.return [
'ui' => [
...
'code' => 'dark',
]
];
og
array has been added to the seo
array.return [
'seo' => [
...
'og' => [
'title' => '',
'type' => 'article',
'url' => '',
'image' => '',
'description' => '',
]
]
];
forum
array section has been added to the config.return [
'forum' => [
'enabled' => false,
'default' => 'disqus',
'services' => [
'disqus' => [
'site_name' => '', // yoursite.disqus.com
]
]
]
];
You can add them manually or you can run this command:
{warning} Please note running the command with
--force
will override your config settings.
php artisan vendor:publish --tag=larecipe_config --force
There are some new enhancements and fixes added to v1.2
. In order to apply them you can run:
{info} You might notice when run this command the
fonts
folder is added again to thepublic/vendor/binarytorch/assets
, see#23
. Therefor, you can now delete the oldpublic/fonts
manually if you want.
php artisan vendor:publish --tag=larecipe_assets --force