diff --git a/README.md b/README.md index 8a42a5f..6cc9f7f 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,14 @@ -# WIRIS Quizzes Embedded answer (Cloze) question type +# Wiris Quizzes Embedded answer (Cloze) question type ### Master Build Status [![Build Status](https://travis-ci.org/wiris/moodle-qtype_multianswerwiris.svg?branch=master)](https://travis-ci.org/wiris/moodle-qtype_multianswerwiris) ### Development Build Status [![Build Status](https://travis-ci.org/wiris/moodle-qtype_multianswerwiris.svg?branch=master)](https://travis-ci.org/wiris/moodle-qtype_multianswerwiris) -The WIRIS Embedded answer (Cloze) question type extends the Moodle Embedded answer type, adding mathematical functionality to it. +The Wiris Embedded answer (Cloze) question type extends the Moodle Embedded answer type, adding mathematical functionality to it. All mathematical items are generated in a single calculation section and they can be referenced from anywhere in the content, in the question statement, answer, feedback for the student, etc. -On the student's side, they will be able to introduce their answers by using a WYSIWYG formula editor and, if the teacher so specifies, they will have access to a WIRIS cas session to make some calculations. The answer syntax checker will prevent the students from unnecessary errors and misspellings. +On the student's side, they will be able to introduce their answers by using a WYSIWYG formula editor and, if the teacher so specifies, they will have access to a Wiris cas session to make some calculations. The answer syntax checker will prevent the students from unnecessary errors and misspellings. ## Install instructions @@ -23,4 +23,4 @@ Alternatively, download the zip from subquestions = $question->base->subquestions; - // Add WIRIS quizzes question to subquestions. + // Add Wiris Quizzes question to subquestions. foreach ($question->subquestions as $key => $subquestion) { if (substr($subquestion->get_type_name(), -5) == 'wiris') { $question->subquestions[$key]->wirisquestion = $question->wirisquestion; diff --git a/renderer.php b/renderer.php index af84628..ee9909d 100644 --- a/renderer.php +++ b/renderer.php @@ -45,7 +45,7 @@ public function subquestion(question_attempt $qa, question_display_options $opti } /** * Helper/Hack class which is a mix between the base shortanswer question class - * and the shortanswerwiris question class so it is usable by the multianswer + * and the shortanswerwiris qtypes class so it is usable by the multianswer * renderer functions. * **/ class qtype_multianswerwiris_shortanswer_helper_question extends qtype_shortanswer_question { @@ -73,7 +73,7 @@ public function get_matching_answer(array $response) { return $this->subq->get_matching_answer($response); } // This code is for retro-compatibility. The attempts graded - // with previous versions of WIRIS quizzes don't have the + // with previous versions of Wiris Quizzes don't have the // '_matching_answer' var but a '_fraction' var. We re-grade // such answers in order to have the new data and therefore // have the good rendering of correct/incorrect responses. diff --git a/version.php b/version.php index e711d36..439227b 100644 --- a/version.php +++ b/version.php @@ -16,11 +16,11 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2018020600; -$plugin->release = '3.61.0.1034'; +$plugin->version = 2018030600; +$plugin->release = '3.62.0.1035'; $plugin->requires = 2011060313; $plugin->maturity = MATURITY_STABLE; $plugin->component = 'qtype_multianswerwiris'; $plugin->dependencies = array ( - 'qtype_wq' => 2018020600 + 'qtype_wq' => 2018030600 );