diff --git a/VERSION.txt b/VERSION.txt index 12e20d8de1dc..9baf8dbc7227 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.3.83 \ No newline at end of file +5.3.84 \ No newline at end of file diff --git a/app/Mail/SupportMessageSent.php b/app/Mail/SupportMessageSent.php index 57fdfe67a78e..3c07eead3f77 100644 --- a/app/Mail/SupportMessageSent.php +++ b/app/Mail/SupportMessageSent.php @@ -30,7 +30,8 @@ class SupportMessageSent extends Mailable */ public function build() { - $system_info = null; + $system_info = request()->has('version') ? 'Version: '.request()->input('version') : 'Version: No Version Supplied.'; + $log_lines = []; /* diff --git a/app/Utils/Ninja.php b/app/Utils/Ninja.php index 95435412a9dd..af8c20bcb242 100644 --- a/app/Utils/Ninja.php +++ b/app/Utils/Ninja.php @@ -48,7 +48,8 @@ class Ninja 'White Label: '.'\\n'. // TODO: Implement white label with hasFeature. 'Server OS: '.php_uname('s').' '.php_uname('r').'\\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; } diff --git a/config/ninja.php b/config/ninja.php index ff45b1ecad18..2b09aa28889e 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -14,8 +14,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => '5.3.83', - 'app_tag' => '5.3.83', + 'app_version' => '5.3.84', + 'app_tag' => '5.3.84', 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', ''),