This commit is contained in:
Karl Hudgell 2016-01-14 13:45:36 +00:00
parent 7bdd34575c
commit 94c80cb18a
3 changed files with 6 additions and 3 deletions

View File

@ -193,8 +193,8 @@ findstr "localversion" config.php >nul 2>&1
goto END
:END
:ONE
cscript replace.vbs "config.php" "1.4" "1.5"
echo Version Updated to 1.5
cscript replace.vbs "config.php" "1.5" "1.6"
echo Version Updated to 1.6
goto END
:END

View File

@ -6,6 +6,9 @@
if(isset($_POST['submit']))
{
echo exec('Update.bat');
// DEBUG
//echo exec('Update.bat', $output);
//print_r($output);
echo '<script>parent.window.location.reload(true);</script>';
} else {

View File

@ -1,4 +1,4 @@
<?php
//// KLANDING VERSION
$remoteversion = "1.5"; //
$remoteversion = "1.6"; //
?>