Updated changelog, fixed bagisto version display issue
This commit is contained in:
parent
b26ddf50d0
commit
0080ca42c0
|
|
@ -1,5 +1,6 @@
|
|||
APP_NAME=Bagisto
|
||||
APP_ENV=local
|
||||
APP_VERSION=1.4.1
|
||||
APP_KEY=
|
||||
APP_DEBUG=true
|
||||
APP_URL=http://localhost
|
||||
|
|
|
|||
|
|
@ -2,6 +2,20 @@
|
|||
|
||||
This changelog consists of the bug & security fixes and new features being included in the releases listed below.
|
||||
|
||||
|
||||
## **v1.4.1 (17th of March 2022)** - *Release*
|
||||
|
||||
* #6040 [enhancement] - The locale dropdown should be in ascending order
|
||||
|
||||
* #6007 [enhancement] - There should be an option to export selected product
|
||||
|
||||
* #5923 [enhancement] - There should not be option for mass delete if there is no record in table
|
||||
|
||||
* #6039 [fixed] - The from date should be less than to date
|
||||
|
||||
* #6038 [fixed] - The color of checkboxes should be according to the theme in the admin panel
|
||||
|
||||
|
||||
## **v1.4.0 (16th of March 2022)** - *Release*
|
||||
|
||||
* #5654 [feature] -Only unread notification should be shown in the notification modal box.
|
||||
|
|
|
|||
|
|
@ -162,6 +162,11 @@ return [
|
|||
*/
|
||||
'editor' => 'vscode',
|
||||
|
||||
/*
|
||||
*Application Version
|
||||
*/
|
||||
'version' => env('APP_VERSION', '1.x-dev'),
|
||||
|
||||
/**
|
||||
* Blacklisting attributes while debugging
|
||||
*/
|
||||
|
|
|
|||
|
|
@ -149,7 +149,7 @@ class Core
|
|||
*/
|
||||
public function version()
|
||||
{
|
||||
return static::BAGISTO_VERSION;
|
||||
return config('app.version');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue