Skip to content

Commit

Permalink
Update update.php script.
Browse files Browse the repository at this point in the history
  • Loading branch information
kruland2607 committed Nov 15, 2013
1 parent a0326e7 commit b4626e4
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions core/web/html/actions/updates.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,15 @@ function getallheaders() {
$version = $_GET["version"];
$updates = "";

$unstable = "13.11";
$unstable = "13.11.1";
$stable = "1.0.0";


if (preg_match("/^13.09.1$/", $version)) {
if (preg_match("/^13.11$/", $version)) {
$updates = "Version: " . $unstable . "\n" .
"4: Bug fixes - Tube Coupler configuration among other things\n".
"";
} else if (preg_match("/^13.09.1$/", $version)) {
$updates = "Version: " . $unstable . "\n" .
"6: Simplified flight configuration process\n" .
"4: New translations for Chinese\n" .
Expand All @@ -100,7 +104,9 @@ function getallheaders() {
"";
} else if (preg_match("/^13.05$/", $version)) {
$updates = "Version: " . $unstable . "\n" .
"6: Simplified flight configuration process\n" .
"6: New thrustcurves for Aerotech C3 and D2\n" .
"4: New translations for Chinese\n" .
"4: Updated Translations to Russian\n" .
"4: Updated 3D libraries\n" .
"4: Bug fixes\n" .
Expand Down

0 comments on commit b4626e4

Please sign in to comment.