Merge branch '2.0' into 'master'

2.5.4



See merge request !34
This commit is contained in:
Karl 2016-04-17 04:08:07 -04:00
commit f9bde5647a
3 changed files with 19 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2.5.4
Update Duly URL
2.5.3
Fixed SickGear in Config
Konvos Status CSS fix

View File

@ -465,6 +465,19 @@ findstr "WidgetTextColour" config.php >nul 2>&1
echo WidgetTextColour Updated
goto END
:END
rem Update DULY URL
findstr "duly.ml" config.php >nul 2>&1
if errorlevel 1 goto ONE
if errorlevel 0 goto ZERO
goto END
:ZERO
cscript replace.vbs "config.php" "duly.ml" "duly.cf"
echo Duly URL Updated
:ONE
echo Duly URL Already Updated
goto END
:END
rem Update Version
findstr "localversion" config.php >nul 2>&1
@ -486,8 +499,8 @@ findstr "localversion" config.php >nul 2>&1
goto END
:END
:ONE
cscript replace.vbs "config.php" "2.5.2" "2.5.3"
echo Version Updated to 2.5.3
cscript replace.vbs "config.php" "2.5.3" "2.5.4"
echo Version Updated to 2.5.4
goto END
:END

View File

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