Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions app/components/modal/navigation/update.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ const NavigationUpdateModal = ({
up update <span style={{ fontWeight: 600 }}>{version}</span> for
you! Please have a read through our{' '}
<a
href="https://lunalytics.xyz/guides/internals/changelog"
href="https://github.com/KSJaay/Lunalytics/releases"
style={{ color: 'var(--primary-700)' }}
target="_blank"
rel="noreferrer"
>
documentation
releases
</a>{' '}
to find out how to update your application easily.
to find out more about the update.
</div>
</div>

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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 <ksjaay@gmail.com>",
Expand Down
4 changes: 2 additions & 2 deletions server/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand All @@ -44,7 +44,7 @@ const init = async () => {

await initialiseCronJobs();
await loadIcons();
// startVersionCheck();
startVersionCheck();

app
.use(compression())
Expand Down