Skip to content

Commit e275cfa

Browse files
committed
Version 0.12.0 update
1 parent 4744484 commit e275cfa

File tree

3 files changed

+41
-12
lines changed

3 files changed

+41
-12
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1919
### Fixed
2020
### Removed --->
2121

22+
## 0.12.0 - 2022-11-19
23+
### Added
24+
- Quote builder
25+
- Send quotes
26+
- Accept/Reject quotes
27+
- Tasks
28+
- Files upload
29+
- Xero integration
30+
- Noted at field on notes
31+
- Pin notes
32+
- Toast notifications
33+
- Timezone setting
34+
- Logo setting
35+
### Fixed
36+
- Support for country domains when using sudomain
37+
- Issue with spatie permissions when conflicting tables exist
38+
- Various minor bugs and typos
39+
2240
## 0.11.0 - 2022-09-03
2341
### Added
2442
- Laravel 9 support

README.md

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
The free CRM you have been looking for, this package will add CRM functionality to your laravel projects or can be used as a complete standalone CRM built with Laravel.
1010

11-
> ⚠️ Warning: This is a pre-release version that is not recommended for production use.
11+
> ⚠️ Warning: This is a pre-release version that is not recommended for production use just yet.
1212
1313
## Use Cases
1414

@@ -23,15 +23,19 @@ The free CRM you have been looking for, this package will add CRM functionality
2323
- Dashboard
2424
- Sales leads management
2525
- Deal management
26+
- Quote builder
27+
- Send quotes with accept/reject functionality
2628
- Contact database management
2729
- Products & Product Categories
28-
- Notes
30+
- Notes & Tasks
31+
- File uploads
2932
- Users & Teams
3033
- Secure registration & login
3134
- Laravel Jetstream/Spark teams support
3235
- Roles & Permissions thanks to [Spatie Permissions](https://github.com/spatie/laravel-permission)
3336
- Model Audit logging thanks to [Laravel Auditing](https://github.com/owen-it/laravel-auditing)
34-
37+
- Xero integration
38+
3539
## Requirements
3640

3741
- **PHP**: 7.3 or higher
@@ -43,16 +47,16 @@ The free CRM you have been looking for, this package will add CRM functionality
4347

4448
#### Step 1. Install a Laravel project if you don't have one already
4549

46-
https://laravel.com/docs/6.x#installation
50+
https://laravel.com/docs/installation
4751

48-
#### Step 2. Make sure you have set up Laravel auth in your project
52+
#### Step 2. Make sure you have set up authentication in your project
4953

50-
https://laravel.com/docs/6.x/authentication
54+
https://laravel.com/docs/authentication
5155

5256
#### Step 3. Require the current package using composer:
5357

5458
```bash
55-
composer require venturedrake/laravel-crm:^0.11
59+
composer require venturedrake/laravel-crm
5660
```
5761

5862
#### Step 4. Publish the migrations, config & assets
@@ -145,7 +149,7 @@ Note if you modified the route_prefix setting from the default the above url wil
145149
#### Step 1. Run the following to the update migrations and publish assets:
146150

147151
```bash
148-
composer require venturedrake/laravel-crm::^0.11
152+
composer require venturedrake/laravel-crm
149153
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
150154
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
151155
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
@@ -158,12 +162,18 @@ php artisan migrate
158162
php artisan db:seed --class="VentureDrake\LaravelCrm\Database\Seeders\LaravelCrmTablesSeeder"
159163
```
160164

165+
#### Step 3. If using teams support then run the following permissions update command
166+
167+
```bash
168+
php artisan laravelcrm:permissions
169+
```
170+
161171
### Upgrading from < 0.2
162172

163173
#### Step 1. Run the following to the update package:
164174

165175
```bash
166-
composer require venturedrake/laravel-crm::^0.11
176+
composer require venturedrake/laravel-crm
167177
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="migrations"
168178
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="config"
169179
php artisan vendor:publish --provider="VentureDrake\LaravelCrm\LaravelCrmServiceProvider" --tag="assets" --force
@@ -188,12 +198,13 @@ Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recen
188198

189199
## Roadmap
190200

191-
- Tasks
192-
- Files / Documents
201+
- Orders
202+
- Documents
193203
- Calendar (Calls, Meetings, Reminders)
194204
- Custom Fields
195205
- Activity Feed / Timelines
196206
- CSV Import / Export
207+
- SMS
197208

198209
## Feedback
199210

config/package.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@
1313
|
1414
*/
1515

16-
'version' => '0.11.0',
16+
'version' => '0.12.0',
1717

1818
];

0 commit comments

Comments
 (0)