All notable changes to filament-tour
will be documented in this file.
- fixes bug #23 - with wrong routes for unauthenticated multinenancy users by @OccTherapist in #24
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.9...v3.1.1
- Fixing Typo in my last commit by @OccTherapist in #22
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.8...v3.1.0.9
- add german translations by @OccTherapist in #21
- @OccTherapist made their first contribution in #21
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.7...v3.1.0.8
- suitable for what json format works | Update Step.php by @MrPowerUp82 in #19
- @MrPowerUp82 made their first contribution in #19
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.6...v3.1.0.7
- Fixed THE major issue regarding to the route system, basically caused by unauthentified user
- Fixed opening highlights on click the highlight button
- Fixed event to open a tour, ex: used in a custom Action:
protected function getHeaderActions(): array { return [ Action::make('Tour')->dispatch('filament-tour::open-tour', ['tour_dashboard']), ]; }
**Full Changelog**: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.5...3.x
- chore(deps): upd illuminate/contracts to laravel 11 by @pepperfm in #17
- @pepperfm made their first contribution in #17
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.4...v3.1.0.5
- Fixed translation by @theHocineSaad in #10
- Fix the filament-tour::open-tour and filament-tour::open-highlight problems by @wallacemaxters in #14
- @theHocineSaad made their first contribution in #10
- @wallacemaxters made their first contribution in #14
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.3...v3.1.0.4
- add ar translations by @aymanalareqi in #4
- @aymanalareqi made their first contribution in #4
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.2...v3.1.0.3
- Fixed error on parsing URL parameters from the tour routing system
Full Changelog: https://github.com/JibayMcs/filament-tour/compare/v3.1.0.1...v3.1.0.2
If creating your guided tours in PHP bores you or takes up too much space, play with JSON!
You can now load your tours directly using a JSON file from a URL or your Storage!
- Finished setup for multiple tours registration, now "goto" a next tour on finished the first one
-
Added to make all child steps uncloseable
function uncloseable(bool|Closure $uncloseable = true)
-
Added to disable all steps events
function disableEvents(bool|Closure $disableEvents = true)
-
Added to ignore routes check to launch Tour
function ignoreRoutes(bool|Closure $ignoreRoutes = true)
- initial release