Skip to content

Commit 78d3fbf

Browse files
authored
Merge pull request #524 from turnitin/release_2020070801
updating changelog with release notes, updating versioning
2 parents e439d47 + 900ec43 commit 78d3fbf

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
### Date: 2020-July-07
2+
### Release: 2020070801
3+
4+
#### :zap: What's new
5+
6+
---
7+
#### We now support Moodle 3.9
8+
9+
You can find out more about Moodle 3.9 via Moodle's [release notes](https://docs.moodle.org/dev/Moodle_3.9_release_notes).
10+
11+
12+
#### Use Turnitin in a Moodle Quiz
13+
14+
Turnitin will be usable as a part of a Moodle quiz when Moodle releases the feature. When enabled for your account, simply add an essay question as one of the quiz questions. A similarity report will be generated when the student submits the quiz. Track this release on the Moodle Tracker https://tracker.moodle.org/browse/MDL-32226).
15+
16+
---
17+
18+
#### :wrench: Fixes and enhancements
19+
20+
#### Improved support for large class sizes
21+
22+
When closing the Turnitin viewer, we’d refresh the page so any updates you applied to the assignment would be reflected in Moodle. However, this refresh caused unnecessary load when a class was particularly large. When we identify increased latency like this, we’ll deactivate automatic refreshes of the inbox and prompt you to refresh the inbox manually after grading.
23+
24+
#### View shared rubrics when creating a Moodle assignment
25+
26+
When creating a Moodle assignment it is possible to view all of your Turnitin Rubrics and attach one to a class from its creation. However, a bug had prevented any rubrics that had been shared with you from appearing in this list. You’ll now find them there and ready to be added to any future assignments you create. This fixes a known issue.
27+
28+
#### General accessibility improvements
29+
30+
We’ve made a few accessibility improvements to help ensure that all Turnitin users can use the plugin with the same high-quality experience. These include:
31+
32+
- Made more elements accessible via tab navigation
33+
- You can launch the Turnitin viewer now by using the enter key on the appropriate element.
34+
- Tools tips are available for various settings and readable by a screen reader or via keyboard navigation.
35+
- General improvements to the plugin configuration screen ensuring unique ARIA labels and logical tab order.
36+
37+
---
38+
139
### Date: 2019-December-17
240
### Release: v2019121701
341

db/upgrade.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
416416
upgrade_plugin_savepoint(true, 2019121719, 'plagiarism', 'turnitin');
417417
}
418418

419-
if ($oldversion < 2020060201) {
419+
if ($oldversion < 2020070801) {
420420
// Convert plugin _use settings as they are bring deprecated.
421421
$data = get_config('plagiarism');
422422
$value = (empty($data->turnitin_use)) ? 0 : 1;
@@ -435,7 +435,7 @@ function xmldb_plagiarism_turnitin_upgrade($oldversion) {
435435
}
436436
}
437437

438-
upgrade_plugin_savepoint(true, 2020060201, 'plagiarism', 'turnitin');
438+
upgrade_plugin_savepoint(true, 2020070801, 'plagiarism', 'turnitin');
439439
}
440440

441441
// Delete the _use value for pre 3.9 environments irrespective of plugin version.

version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @copyright 2012 iParadigms LLC
2020
*/
2121

22-
$plugin->version = 2020061801;
22+
$plugin->version = 2020070801;
2323
$plugin->release = "3.5+";
2424
$plugin->requires = 2018051700;
2525
$plugin->component = 'plagiarism_turnitin';

0 commit comments

Comments
 (0)