diff --git a/app/config.py b/app/config.py index 45e4eb8..4827a50 100644 --- a/app/config.py +++ b/app/config.py @@ -83,7 +83,7 @@ class Settings(BaseSettings): ssh_key: str = "" # PEM private key content (paste full key including headers) # Application version — used by the /api/v1/updates/check endpoint - app_version: str = "1.0.0-37" + app_version: str = "1.0.0-38" # ---- Authentication (1.0.0-22) ---- # session_secret: HMAC key for signing session cookies. Empty = generate diff --git a/app/mailer.py b/app/mailer.py index 8fdffa2..f9c4227 100644 --- a/app/mailer.py +++ b/app/mailer.py @@ -178,7 +178,7 @@ def _build_html(drives: list[dict], generated_at: str, - TrueNAS Burn-In — Daily Report + NAS Burn-In — Daily Report @@ -191,7 +191,7 @@ def _build_html(drives: list[dict], generated_at: str,
- @@ -261,7 +261,7 @@ def _build_html(drives: list[dict], generated_at: str, diff --git a/app/main.py b/app/main.py index f782a07..85b4465 100644 --- a/app/main.py +++ b/app/main.py @@ -118,7 +118,7 @@ async def lifespan(app: FastAPI): # App # --------------------------------------------------------------------------- -app = FastAPI(title="TrueNAS Burn-In Dashboard", lifespan=lifespan) +app = FastAPI(title="NAS Burn-In Dashboard", lifespan=lifespan) # --------------------------------------------------------------------------- diff --git a/app/static/app.js b/app/static/app.js index 7baedb3..b30398e 100644 --- a/app/static/app.js +++ b/app/static/app.js @@ -134,7 +134,7 @@ updateNotifBtn(); if (perm === 'granted') { showToast('Browser notifications enabled', 'success'); - new Notification('TrueNAS Burn-In', { + new Notification('NAS Burn-In', { body: 'You will be notified when burn-in jobs complete.', }); } diff --git a/app/templates/audit.html b/app/templates/audit.html index 7679a03..994dcfb 100644 --- a/app/templates/audit.html +++ b/app/templates/audit.html @@ -1,6 +1,6 @@ {% extends "layout.html" %} -{% block title %}TrueNAS Burn-In — Audit Log{% endblock %} +{% block title %}NAS Burn-In — Audit Log{% endblock %} {% block content %}
diff --git a/app/templates/dashboard.html b/app/templates/dashboard.html index b9c9cdf..d7646a8 100644 --- a/app/templates/dashboard.html +++ b/app/templates/dashboard.html @@ -1,6 +1,6 @@ {% extends "layout.html" %} -{% block title %}TrueNAS Burn-In — Dashboard{% endblock %} +{% block title %}NAS Burn-In — Dashboard{% endblock %} {% block content %} {% include "components/modal_start.html" %} diff --git a/app/templates/history.html b/app/templates/history.html index 23c8c91..dc26bb6 100644 --- a/app/templates/history.html +++ b/app/templates/history.html @@ -1,6 +1,6 @@ {% extends "layout.html" %} -{% block title %}TrueNAS Burn-In — History{% endblock %} +{% block title %}NAS Burn-In — History{% endblock %} {% block content %}
diff --git a/app/templates/job_detail.html b/app/templates/job_detail.html index a91f33b..b3dfd96 100644 --- a/app/templates/job_detail.html +++ b/app/templates/job_detail.html @@ -1,6 +1,6 @@ {% extends "layout.html" %} -{% block title %}TrueNAS Burn-In — Job #{{ job.id }}{% endblock %} +{% block title %}NAS Burn-In — Job #{{ job.id }}{% endblock %} {% block content %}
diff --git a/app/templates/job_print.html b/app/templates/job_print.html index b411d81..946b477 100644 --- a/app/templates/job_print.html +++ b/app/templates/job_print.html @@ -196,7 +196,7 @@
TrueNAS Burn-In + NAS Burn-In Daily Status Report {generated_at}
- Generated by TrueNAS Burn-In Dashboard · {generated_at} + Generated by NAS Burn-In Dashboard · {generated_at}