From 1736d023f5f53ef3ef85c22bacb50377a418bfc2 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Sat, 16 Sep 2006 22:47:46 +0000 Subject: [PATCH] r1155: Add the upgrade script for RC1 --- install/global.php | 9 ++--- install/upgrade4.php | 78 ++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 83 insertions(+), 4 deletions(-) create mode 100644 install/upgrade4.php diff --git a/install/global.php b/install/global.php index 7c948ea..af7716f 100644 --- a/install/global.php +++ b/install/global.php @@ -73,10 +73,11 @@ $bugsys->datastore = array(); // ################################################################### $bugsys->versions = array( - '1.0.0' => 1, - '1.0.1' => 2, - '1.1.0 Beta 1' => 3, - '1.1.0 Beta 2' => -1 + '1.0.0' => 1, + '1.0.1' => 2, + '1.1.0 Beta 1' => 3, + '1.1.0 Beta 2' => 4, + '1.1.0 Release Candidate 1' => -1 ); // ################################################################### diff --git a/install/upgrade4.php b/install/upgrade4.php new file mode 100644 index 0000000..80e1aa9 --- /dev/null +++ b/install/upgrade4.php @@ -0,0 +1,78 @@ +in['mark'] == 0) +{ +?> +

Welcome to Bugdar

+ +

This upgrade will take from Bugdar 1.1.0 Beta 2 to Bugdar 1.1.0 Release Candidate 1.

+ +

Not much has to be done, we just need to bump your version number.

+ +

To begin the process, please click the button below.

+in['mark'] == 1) +{ +?> +

Version Number Change

+ +

This step finishes the upgrade by inreasing your version number.

+ +query("UPDATE " . TABLE_PREFIX . "setting SET value = '1.1.0 Release Candidate 1' WHERE varname = 'trackerversion'"); + + build_settings(); + +?> + +... done. + + \ No newline at end of file -- 2.22.5