ENH Banner for previous version

This commit is contained in:
Steve Boyd 2023-05-11 10:50:05 +12:00
parent f3d5c4781b
commit af8707589f
1 changed files with 7 additions and 0 deletions

View File

@ -157,6 +157,9 @@ const getVersionMessage = (): ReactElement | ReactElement[] | string | null => {
const EOL = [
'3',
];
const PREVIOUS_RELEASE = [
'4',
];
const PRE_RELEASE = [
'6',
];
@ -191,6 +194,10 @@ const getVersionMessage = (): ReactElement | ReactElement[] | string | null => {
'has not yet been given a stable release. See <a target="_blank" href="https://www.silverstripe.org/software/roadmap/">the release roadmap</a> for more information'
));
}
if (PREVIOUS_RELEASE.includes(version)) {
return parse(makeMessage('info', 'check-circle', 'supported', 'is still supported though will not receive any additional features'));
}
// CURRENT_RELEASE
return parse(makeMessage('success', 'check-circle', 'supported', null));
};