diff --git a/README.md b/README.md index 893b7dd1b..c11bf6977 100644 --- a/README.md +++ b/README.md @@ -18,8 +18,8 @@ Flavors of Faveo Faveo Documentation -------------------------- - * Faveo user Manual - * Faveo API Documentation + * Faveo user Manual + * Faveo API Documentation * Faveo Event List * Faveo Plugin creation guide @@ -27,7 +27,7 @@ Requirements -------------------------- To run Faveo your host just needs a couple of things: - * PHP Version: 5.6+ + * PHP Version: 7.1.3+ * Database: MySQL 5.0+ * Web Server: Apache / IIS / Nginx * PHP Extensions: Imap, Mbstring, Mcrypt, OpenSSL, PDO, Tokenizer, XML, Zip diff --git a/app/Http/Controllers/Installer/helpdesk/InstallController.php b/app/Http/Controllers/Installer/helpdesk/InstallController.php index 251a54615..484992fce 100644 --- a/app/Http/Controllers/Installer/helpdesk/InstallController.php +++ b/app/Http/Controllers/Installer/helpdesk/InstallController.php @@ -561,7 +561,7 @@ class InstallController extends Controller $env = base_path().DIRECTORY_SEPARATOR.'.env'; if (is_file($env)) { $txt = 'DB_INSTALL=1'; - $txt1 = 'APP_ENV=development'; + $txt1 = 'APP_ENV=production'; file_put_contents($env, $txt.PHP_EOL, FILE_APPEND | LOCK_EX); file_put_contents($env, $txt1, FILE_APPEND | LOCK_EX); } else { diff --git a/config/app.php b/config/app.php index e2a1f2c96..af15f96ea 100644 --- a/config/app.php +++ b/config/app.php @@ -1,7 +1,7 @@ env('APP_ENV', 'testing'), + 'env' => env('APP_ENV', 'production'), /* |-------------------------------------------------------------------------- | Application Debug Mode @@ -33,7 +33,7 @@ return [ | This tells about aplication current version. | */ - 'version' => 'Community 1.10-BETA', + 'version' => 'Community 1.10', /* |-------------------------------------------------------------------------- | Application Name @@ -42,7 +42,7 @@ return [ | This Applocation name is used for installation and update checking | */ - 'name' => 'Faveo Helpdesk Community', + 'name' => 'Faveo Helpdesk Community', /* |-------------------------------------------------------------------------- | Application URL @@ -120,7 +120,7 @@ return [ |to FAVEO team when any exception/error occurs or not. True value of this variable will |allow application to send error reports to FAVEO team's bugsnag log. */ - 'bugsnag_reporting' => env('APP_BUGSNAG', false), + 'bugsnag_reporting' => env('APP_BUGSNAG', true), /* |-------------------------------------------------------------------------- | Autoloaded Service Providers diff --git a/public/downloads/en.zip b/public/downloads/en.zip index 92e7528f9..3a91cbad6 100644 Binary files a/public/downloads/en.zip and b/public/downloads/en.zip differ diff --git a/release-notes.txt b/release-notes.txt index ca1cb9476..ea8a54235 100644 --- a/release-notes.txt +++ b/release-notes.txt @@ -21,6 +21,21 @@ | | | || | | || | | || | | || | | || | | || | | || | | | | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' | '----------------' '----------------' '----------------' '----------------' '----------------' '----------------' '----------------' '----------------' +|===================================================== +| v1.10 Laravel Framework update +|===================================================== +Faveo helpdesk v1.10 introduces some backward non compatible changes due to framework updates and introduces some refinement patches for existing functionalities. + +* v1.10 updates the Laravel framework version to 5.6.33 requires php7.1.3 or greater version to run. +* CLI commands for installation has been added. +* Better language control access for users +* Check for system email configuration +* Email sending out department wise + +To know more please follow the links below +https://github.com/ladybirdweb/faveo-helpdesk/releases +https://github.com/ladybirdweb/faveo-helpdesk/wiki + |===================================================== | v1.9.6 Facebook login bug fix patch |=====================================================