mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 21:34:30 -04:00
v5.3.84
This commit is contained in:
parent
654bf7a23f
commit
9c0b81f7dd
@ -1 +1 @@
|
|||||||
5.3.83
|
5.3.84
|
@ -30,7 +30,8 @@ class SupportMessageSent extends Mailable
|
|||||||
*/
|
*/
|
||||||
public function build()
|
public function build()
|
||||||
{
|
{
|
||||||
$system_info = null;
|
$system_info = request()->has('version') ? 'Version: '.request()->input('version') : 'Version: No Version Supplied.';
|
||||||
|
|
||||||
$log_lines = [];
|
$log_lines = [];
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -48,7 +48,8 @@ class Ninja
|
|||||||
'White Label: '.'\\n'. // TODO: Implement white label with hasFeature.
|
'White Label: '.'\\n'. // TODO: Implement white label with hasFeature.
|
||||||
'Server OS: '.php_uname('s').' '.php_uname('r').'\\n'.
|
'Server OS: '.php_uname('s').' '.php_uname('r').'\\n'.
|
||||||
'PHP Version: '.phpversion().'\\n'.
|
'PHP Version: '.phpversion().'\\n'.
|
||||||
'MySQL Version: '.$mysql_version;
|
'MySQL Version: '.$mysql_version.'\\n'.
|
||||||
|
'Version: '. request()->has('version') ? request()->input('version') : 'No Version Supplied.';
|
||||||
|
|
||||||
return $info;
|
return $info;
|
||||||
}
|
}
|
||||||
|
@ -14,8 +14,8 @@ return [
|
|||||||
'require_https' => env('REQUIRE_HTTPS', true),
|
'require_https' => env('REQUIRE_HTTPS', true),
|
||||||
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
'app_url' => rtrim(env('APP_URL', ''), '/'),
|
||||||
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
'app_domain' => env('APP_DOMAIN', 'invoicing.co'),
|
||||||
'app_version' => '5.3.83',
|
'app_version' => '5.3.84',
|
||||||
'app_tag' => '5.3.83',
|
'app_tag' => '5.3.84',
|
||||||
'minimum_client_version' => '5.0.16',
|
'minimum_client_version' => '5.0.16',
|
||||||
'terms_version' => '1.0.1',
|
'terms_version' => '1.0.1',
|
||||||
'api_secret' => env('API_SECRET', ''),
|
'api_secret' => env('API_SECRET', ''),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user