new update msg

This commit is contained in:
Karl Hudgell 2016-03-23 11:57:34 +00:00
parent 79851fd6ce
commit 3c40fd70f5
4 changed files with 18 additions and 6 deletions

View File

@ -38,6 +38,10 @@ iframe {
border: none;
}
div.UpdateNotify {
color: Red;
}
</style>

View File

@ -95,11 +95,6 @@ $('.window').hide();
<?php include 'config.php';?>
<?php include 'http://home.k-world.me.uk/version.txt';?>
<?php
if ($localversion != $remoteversion) {
require "updatenotify.php";
}
?>
<div class="head">
<?php echo "<p style=\" text-align: center;\">$yourname's Server Access</p>";?>
@ -194,6 +189,13 @@ if ($showversion > "0") {
}
?>
</div>
<div class="UpdateNotify">
<?php
if ($localversion != $remoteversion) {
require "updatenotify2.php";
}
?>
</div>
<div id="stats">
<?php

View File

@ -20,7 +20,10 @@ echo exec('Update.bat');
<?php
}
?>
<div id="popupfoot"> <a href="#" class="close agree" >Not Now...</a></div>
Change Log - <br />
-Added Links to Status Widget <br />
-Added Links to Force CouchPotato processing in Config <br />
<div id="popupfoot"> <a href="#" class="close agree" >Not Now...</a></div>
</div>
<div id="mask"></div>

3
updatenotify2.php Normal file
View File

@ -0,0 +1,3 @@
<?php
echo "<p style=\" text-align: center;\">New Update Available</p>";
?>