Updated changelog, fixed bagisto version display issue

This commit is contained in:
jitendra 2022-03-17 12:59:58 +05:30
parent b26ddf50d0
commit 0080ca42c0
4 changed files with 21 additions and 1 deletions

View File

@ -1,5 +1,6 @@
APP_NAME=Bagisto
APP_ENV=local
APP_VERSION=1.4.1
APP_KEY=
APP_DEBUG=true
APP_URL=http://localhost

View File

@ -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.

View File

@ -162,6 +162,11 @@ return [
*/
'editor' => 'vscode',
/*
*Application Version
*/
'version' => env('APP_VERSION', '1.x-dev'),
/**
* Blacklisting attributes while debugging
*/

View File

@ -149,7 +149,7 @@ class Core
*/
public function version()
{
return static::BAGISTO_VERSION;
return config('app.version');
}
/**