mirror of https://github.com/itflow-org/itflow
Add Current App Version by checking the current commit hash, also moved Database version on top with App Version in Debug
This commit is contained in:
parent
803704c1ed
commit
829ee37a53
|
|
@ -8,6 +8,9 @@ require_once "config.php";
|
|||
|
||||
$checks = [];
|
||||
|
||||
// Execute the git command to get the latest commit hash
|
||||
$commitHash = exec('git log -1 --format=%H');
|
||||
|
||||
// Section: System Information
|
||||
$systemInfo = [];
|
||||
|
||||
|
|
@ -316,10 +319,6 @@ if ($tablesResult) {
|
|||
}
|
||||
$tablesResult->free();
|
||||
|
||||
$databaseStats[] = [
|
||||
'name' => 'Current Database Version',
|
||||
'value' => CURRENT_DATABASE_VERSION,
|
||||
];
|
||||
$databaseStats[] = [
|
||||
'name' => 'Total number of tables',
|
||||
'value' => $totalTables,
|
||||
|
|
@ -518,6 +517,17 @@ $mysqli->close();
|
|||
</ul>
|
||||
<hr>
|
||||
|
||||
<table class="table table-bordered mb-3">
|
||||
<tr>
|
||||
<td>Current App Version</td>
|
||||
<th><?php echo $commitHash; ?></th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>Current DB Version</td>
|
||||
<th><?php echo CURRENT_DATABASE_VERSION; ?></th>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<!-- System Information Table -->
|
||||
<h3>System Information</h3>
|
||||
<table class="table table-sm table-bordered">
|
||||
|
|
|
|||
Loading…
Reference in New Issue