Releases: launcher-host/mercurius
Releases · launcher-host/mercurius
1.0.0-alpha.2
List of changes
- feat: typing indicator
- fix: Refresh User status, broadcast works correctly PR #35
- fix: when loading a conversation, disable click until load is complete
- fix: focus the message input when a conversation is opened
- fix: several bug fixes and improvements not tracked
Typing indicator
1.0.0-alpha.1
This release adds additional extendibility to Mercurius, with the following changes:
- feature: MercuriusUser trait added with scopeContacts() to filter users
- feature: custom models defined in config
- feature: custom user fields defined in config
- feature: (optional) the User name can result by merging multiple fields, e.g.: using
first_name
andlast_name
- refactor: Eloquent models moved to root folder
- refactor: decouple ScriptVariables and refactor in general
1.0.0-alpha
- feature: User Slugs
- feature: Messages Delivery Status to inform when message is seen
- docs: general changes add notes on updating Mercurius
- chore: MigrationsHandler publish timestamped migrations
Updating Instructions
Publish changes and run migration
php artisan vendor:publish --tag="mercurius-lang" --force
php artisan vendor:publish --tag="mercurius-public" --force
php artisan vendor:publish --tag="mercurius-seeds" --force
php artisan vendor:publish --tag="mercurius-migrations"
php artisan migrate
(Optional) Refresh dummy data
php artisan migrate:fresh
php artisan db:seed --class=MercuriusDatabaseSeeder
0.0.10
0.0.9 - Broadcast User Status
- Feature Broadcast User Status #12.
- Added Events:
- UserGoesActive
- UserGoesInactive
- UserStatusChanged
- Fix ConversationRepository->recipients() to return a Collection.
- Updated documentation.