Merge branch '2.0' into 'master'

new update msg



See merge request !26
This commit is contained in:
Karl 2016-03-23 07:58:20 -04:00
commit 9b31928b08
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>";
?>