From 96c93b95f21ffd63dc5619541681cf07641fc56c Mon Sep 17 00:00:00 2001
From: GCHQ Developer C85297 <95289555+C85297@users.noreply.github.com>
Date: Tue, 3 Feb 2026 15:12:41 +0000
Subject: [PATCH] Remove version 10 message from banner (#2169)
---
.github/workflows/master.yml | 2 +-
src/web/App.mjs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml
index 8a3aff54..fc878863 100644
--- a/.github/workflows/master.yml
+++ b/.github/workflows/master.yml
@@ -33,7 +33,7 @@ jobs:
- name: Production Build
if: success()
- run: npx grunt prod --msg="Version 10 is here! Read about the new features here"
+ run: npx grunt prod --msg=""
- name: Generate sitemap
run: npx grunt exec:sitemap
diff --git a/src/web/App.mjs b/src/web/App.mjs
index 7071854a..143545d6 100644
--- a/src/web/App.mjs
+++ b/src/web/App.mjs
@@ -650,7 +650,7 @@ class App {
// const compareURL = `https://github.com/gchq/CyberChef/compare/v${prev.join(".")}...v${PKG_VERSION}`;
- let compileInfo = `Last build: ${timeSinceCompile.substr(0, 1).toUpperCase() + timeSinceCompile.substr(1)} ago`;
+ let compileInfo = `Last build: ${timeSinceCompile.substring(0, 1).toUpperCase() + timeSinceCompile.substring(1)} ago`;
if (window.compileMessage !== "") {
compileInfo += " - " + window.compileMessage;