Add versioning/release system - December 2024 / 24.12

This commit is contained in:
wrongecho
2024-12-30 12:58:50 +00:00
parent b014ddd6bd
commit 469c495a73
4 changed files with 19 additions and 5 deletions

View File

@@ -519,12 +519,16 @@ $mysqli->close();
<table class="table table-bordered mb-3">
<tr>
<td>Current App Version</td>
<th><?php echo $commitHash; ?></th>
<th>ITFlow release version</th>
<th><?php echo APP_VERSION; ?></th>
</tr>
<tr>
<td>Current Code Commit</td>
<td><?php echo $commitHash; ?></td>
</tr>
<tr>
<td>Current DB Version</td>
<th><?php echo CURRENT_DATABASE_VERSION; ?></th>
<td><?php echo CURRENT_DATABASE_VERSION; ?></td>
</tr>
</table>