From afd9aa86a764c61dccba3c2aebfbb6acb5e3857c Mon Sep 17 00:00:00 2001 From: ksjaay Date: Tue, 18 Nov 2025 22:59:15 +0000 Subject: [PATCH] Adds checks for version --- app/components/modal/navigation/update.tsx | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- server/index.js | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/components/modal/navigation/update.tsx b/app/components/modal/navigation/update.tsx index 67c0d10b..5aec9aea 100644 --- a/app/components/modal/navigation/update.tsx +++ b/app/components/modal/navigation/update.tsx @@ -49,14 +49,14 @@ const NavigationUpdateModal = ({ up update {version} for you! Please have a read through our{' '} - documentation + releases {' '} - to find out how to update your application easily. + to find out more about the update. diff --git a/package-lock.json b/package-lock.json index e72ef8ea..1826c7a7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "lunalytics", - "version": "0.10.11", + "version": "0.10.12", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "lunalytics", - "version": "0.10.11", + "version": "0.10.12", "license": "SEE LICENSE IN LICENSE", "dependencies": { "@dnd-kit/core": "6.3.1", diff --git a/package.json b/package.json index febdfc78..f558e0c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "lunalytics", - "version": "0.10.11", + "version": "0.10.12", "description": "Open source Node.js server/website monitoring tool", "private": true, "author": "KSJaay ", diff --git a/server/index.js b/server/index.js index 8b042d49..41ac1879 100644 --- a/server/index.js +++ b/server/index.js @@ -19,7 +19,7 @@ import addInviteToCookie from './middleware/addInviteToCookie.js'; import { loadIcons } from './utils/icons.js'; import { getVersionInfo, - // startVersionCheck + startVersionCheck } from './utils/checkVersion.js'; const app = express(); @@ -44,7 +44,7 @@ const init = async () => { await initialiseCronJobs(); await loadIcons(); - // startVersionCheck(); + startVersionCheck(); app .use(compression())