diff --git a/localization/strings.pot b/localization/strings.pot index 8fc388dd..bdb68303 100644 --- a/localization/strings.pot +++ b/localization/strings.pot @@ -351,9 +351,6 @@ msgstr "" msgid "Close" msgstr "" -msgid "Released on" -msgstr "" - msgid "Added %1$s of %2$s to stock" msgstr "" diff --git a/services/ApplicationService.php b/services/ApplicationService.php index 309843f7..b5cf984e 100644 --- a/services/ApplicationService.php +++ b/services/ApplicationService.php @@ -69,6 +69,7 @@ class ApplicationService extends BaseService 'grocy_version' => $this->GetInstalledVersion(), 'php_version' => phpversion(), 'sqlite_version' => $sqliteVersion, + 'db_version' => $this->getDatabase()->migrations()->max('migration'), 'os' => php_uname('s') . ' ' . php_uname('r') . ' ' . php_uname('v') . ' ' . php_uname('m'), 'client' => isset($_SERVER['HTTP_USER_AGENT']) ? $_SERVER['HTTP_USER_AGENT'] : 'unknown' ]; diff --git a/views/about.blade.php b/views/about.blade.php index 0de8e253..b0ce1dd9 100644 --- a/views/about.blade.php +++ b/views/about.blade.php @@ -36,7 +36,7 @@
{{ $versionInfo->Version }}
{{ $versionInfo->ReleaseDate }}
{{ $systemInfo['sqlite_version'] }}
{{ $systemInfo['db_version'] }}
{{ $systemInfo['os'] }}