The notification area on the front admin page would be used to show if a new version of CMSms was available, by calling an ini file from the cmsmadesimple server - all it need contain would be a version number for the current version. Then implode the file by '', and check the current installed version against it. Basically,
Code: Select all
$version = implode('', file('http://www.cmsmadesimple.org/version.ini'));
if ($CMS_VERSION < $version) {
echo "Your CMSms isn't up to date!";
}

I'm only suggesting it as I've just realised I missed two updates... ah well.
Daniel