Getting ready for 1.0.6.3 release today
This commit is contained in:
+6
-2
@@ -27,10 +27,13 @@ with the prototypes and making many useful suggestions along the way
|
||||
|
||||
<H3><BR>Translations</H3>
|
||||
<BLOCKQUOTE>
|
||||
<P>Many thanks to these people - each translation takes many hours of work.
|
||||
<P>Many thanks to these people - each translation takes many hours of work, as there are nearly 900 phrases to translate (plus all the help files!).
|
||||
<UL>
|
||||
<LI><B>ca - Catalan</B>, by Carles Bellver ([email protected]) with the help of Mercè Renau,
|
||||
Clara Andrés and Jordi Adell. (<A HREF="http://cent.uji.es">Centre d'Educació i Noves Tecnologies</A>)
|
||||
<LI><B>de - German</B>, by Holger Schadeck ([email protected])
|
||||
<LI><B>es_mx - Spanish (Mexico)</B>, by Claudio Tavares (<A HREF="http://enlaceacademico.com">enlaceacademico.com</A>)
|
||||
<LI><B>es_es - Spanish </B>, by Antonio Navarro, based on es_mx
|
||||
<LI><B>fi - Finnish</B>, by Petri Asikainen ([email protected]), Jaana Tolvanen <jaanat@cedunet.com>
|
||||
<LI><B>fr - French</B>, by Sebastien Nameche ([email protected])
|
||||
<LI><B>it - Italian</B>, by Davide Suraci ([email protected])
|
||||
@@ -57,6 +60,7 @@ with the prototypes and making many useful suggestions along the way
|
||||
<LI>anyone else who has made donations via the <A TARGET=_top HREF="http://moodle.com/donations">Donations page</A>,
|
||||
<LI>everyone else who contributes to the <A TARGET=_top HREF="http://bugs.moodle.com">bug tracker</A>, and
|
||||
<LI>everyone enrolled in the "<A TARGET=_top HREF="http://moodle.com/course/">Using Moodle</A>" course at moodle.com</A>
|
||||
<LI>and anyone else I've inadvertently forgotten!
|
||||
</UL>
|
||||
</BLOCKQUOTE>
|
||||
|
||||
@@ -67,7 +71,7 @@ with the prototypes and making many useful suggestions along the way
|
||||
<P>Some of Moodle's libraries were written by other people, and are being
|
||||
redistributed as part of Moodle under the LGPL. My thanks go out to the
|
||||
authors of all these excellent products - without them Moodle would be missing
|
||||
important functionality. Copyright information for this software is included below:</P>
|
||||
important functionality. Copyright information for each package is included below:</P>
|
||||
|
||||
<P><B>ADOdb </B>- lib/adodb<BR>
|
||||
</P>
|
||||
|
||||
@@ -6,6 +6,28 @@
|
||||
<BODY BGCOLOR="#FFFFFF">
|
||||
<H2>Release notes</H2>
|
||||
|
||||
<P> New in Moodle 1.0.6.3: </P>
|
||||
<UL><DL>
|
||||
|
||||
<DT> Bug fix for no-name forums.
|
||||
<DD> New sites created with 1.0.6.2 had some forums appearing with no names
|
||||
(for example the News forum on the home page).
|
||||
A workaround is to add a new activity to that section (all the names
|
||||
will be refreshed), but this release will fix it too. <BR><BR>
|
||||
|
||||
<DT> New languages!
|
||||
<DD> Catalan and Spanish (Spain) translations have arrived!<BR><BR>
|
||||
|
||||
<DT> Some display improvements for old Netscape browsers (headers and quizzes)<BR><BR>
|
||||
|
||||
<DT> Guest language now ALWAYS the same as the current site language<BR><BR>
|
||||
|
||||
<DT> "Recent Activity" can now be disabled completely if desired <BR><BR>
|
||||
|
||||
</DL></UL>
|
||||
|
||||
<HR>
|
||||
|
||||
<P> New in Moodle 1.0.6.2: </P>
|
||||
<UL><DL>
|
||||
<DT> Course formatting improvements
|
||||
@@ -35,6 +57,7 @@
|
||||
</DL></UL>
|
||||
|
||||
|
||||
<HR>
|
||||
|
||||
<P> New in Moodle 1.0.6.1: </P>
|
||||
<UL><DL>
|
||||
|
||||
@@ -197,6 +197,21 @@ function main_upgrade($oldversion=0) {
|
||||
execute_sql(" ALTER TABLE `course` ADD `showrecent` TINYINT(5) UNSIGNED DEFAULT '1' NOT NULL AFTER `numsections` ");
|
||||
}
|
||||
|
||||
if ($oldversion < 2002111400) {
|
||||
// Rebuild all course caches, because some may not be done in new installs (eg site page)
|
||||
if ($courses = get_records_sql("SELECT * FROM course")) {
|
||||
require_once("$CFG->dirroot/course/lib.php");
|
||||
foreach ($courses as $course) {
|
||||
|
||||
$modinfo = serialize(get_array_of_activities($course->id));
|
||||
|
||||
if (!set_field("course", "modinfo", $modinfo, "id", $course->id)) {
|
||||
notify("Could not cache module information for course '$course->fullname'!");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
+2
-2
@@ -5,7 +5,7 @@
|
||||
// database to determine whether upgrades should
|
||||
// be performed (see lib/db/*.php)
|
||||
|
||||
$version = 2002111200; // The current version is a date (YYYYMMDDXX)
|
||||
$version = 2002111400; // The current version is a date (YYYYMMDDXX)
|
||||
|
||||
$release = "1.0.6.3 dev"; // User-friendly version number
|
||||
$release = "1.0.6.3"; // User-friendly version number
|
||||
|
||||
|
||||
Reference in New Issue
Block a user