Releases: dniccum/nova-documentation
v3.0.0
Laravel Nova 4 Support
Refactors the tool for Laravel Nova 4 support. This version does not support any previous versions.
If you are upgrading from version 2 to version 3 (Laravel 4 support), make sure your composer.json
has the following version/reference to included the updated version:
"dniccum/nova-documentation": "^3.0"
v2.0.2
Version 2.0.1
Updates Javascript dependencies to fix a few vulnerabilities.
2.0.0 YAML Configuration
Adds the ability to add YAML configuration to the top of your documentation to modify how it appears and is loaded into your application.
If you are using the yaml
parsing method, you have the OPTIONAL ability to customize how each page is built and shown within the sidebar. You can modify the following attributes:
- title - The title of the page within the sidebar
- path - The path/route/link of the page. Provide a valid URL
- order - The order in which this page will appear in the sidebar
Example
---
title: "Adding Content"
path: content
order: 2
---
# Adding content to your application
...
Version 1.3.0
Adds Laravel 8 support and sunsets Laravel 5.X support.
Laravel 7 Support
Merge pull request #14 from adriaanzon/laravel-7 Support Laravel 7
Version 1.1.1
- Adds necessary PurgeCSS comments to prevent documentation styles from being removed
- Modifies Regular Expression that replaces the links within the documentation. The following links are now supported:
- Mailto (
mailto:
) - Relative (
/terms-and-conditions
)
- Mailto (
Responsive Layout
Adds support for a responsive Nova theme/layout; specifically the Laravel Nova Responsive Theme.
Version 1.0.2.2
Expands on replaceLinks method to allow for multiple periods. Fixes #6.
Version 1.0.2.1
Applies patch to respect nova path configuration during link replacing.