diff --git a/docs/livestatus/tm74-status.php b/docs/livestatus/tm74-status.php index 1c6e1c6..9158ba1 100644 --- a/docs/livestatus/tm74-status.php +++ b/docs/livestatus/tm74-status.php @@ -17,6 +17,7 @@ */ $DB_HOST = '10.10.10.15'; // your MySQL host (same as OpsLog's logbook) +$DB_PORT = 3306; // MySQL port — change if your server listens elsewhere $DB_NAME = 'opslog'; // database name $DB_USER = 'opslog'; $DB_PASS = 'CHANGE_ME'; @@ -27,7 +28,7 @@ $STALE_SECONDS = 120; // an operator is "active" if seen within this wi // instead of a fatal "table doesn't exist". mysqli_report(MYSQLI_REPORT_OFF); -$mysqli = @new mysqli($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME); +$mysqli = @new mysqli($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_PORT); if ($mysqli->connect_errno) { http_response_code(500); exit('DB error'); diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 617121c..150eebb 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -2453,7 +2453,7 @@ export default function App() { setRefsDownloading(false); } } - + async function refreshCtyDat() { if (ctyRefreshing) return; setCtyRefreshing(true); diff --git a/frontend/src/version.ts b/frontend/src/version.ts index d32fbe3..7b7e42b 100644 --- a/frontend/src/version.ts +++ b/frontend/src/version.ts @@ -1,6 +1,6 @@ // Single source of truth for the app version shown in the UI (header + About). // Bump this on a release (the release script updates it alongside telemetry.go). -export const APP_VERSION = '0.19'; +export const APP_VERSION = '0.19.1'; // Author / credits, shown in Help -> About. export const APP_AUTHOR = 'F4BPO'; diff --git a/telemetry.go b/telemetry.go index 56ed997..4c527fb 100644 --- a/telemetry.go +++ b/telemetry.go @@ -21,7 +21,7 @@ import ( const ( // appVersion is stamped on every heartbeat (and could feed the About box). - appVersion = "0.19" + appVersion = "0.19.1" // posthogHost is the PostHog ingestion endpoint. EU cloud by default; change // to https://us.i.posthog.com for a US project.