extract Text from gmail import, darkmode updates, auto update app versions etc

This commit is contained in:
cesnimda
2026-03-21 20:44:02 +01:00
parent 5e50a8fed7
commit aa804aebe8
6 changed files with 44 additions and 3 deletions
@@ -20,6 +20,8 @@ type SystemStatus = {
environment: string;
contentRoot: string;
version: string;
commitSha?: string | null;
buildStamp?: string | null;
storage: {
dataRoot: string;
dbPath: string;
@@ -89,6 +91,8 @@ export default function AdminSystemPage() {
<Typography variant="overline" sx={{ color: "text.secondary" }}>Environment</Typography>
<Typography variant="h5" sx={{ fontWeight: 950 }}>{status?.environment ?? "-"}</Typography>
<Typography variant="body2" sx={{ color: "text.secondary", mt: 1 }}>Version {status?.version ?? "-"}</Typography>
{status?.commitSha ? <Typography variant="body2" sx={{ color: "text.secondary" }}>Commit {status.commitSha}</Typography> : null}
{status?.buildStamp ? <Typography variant="body2" sx={{ color: "text.secondary" }}>{status.buildStamp}</Typography> : null}
</Paper>
<Paper sx={{ p: 2 }}>
<Typography variant="overline" sx={{ color: "text.secondary" }}>Database</Typography>