Skip to content

Commit 63f6788

Browse files
authored
Merge pull request #252 from dwinn/release_2017012501
Release notes v2017012501
2 parents 98c1e64 + 64883f0 commit 63f6788

File tree

2 files changed

+28
-4
lines changed

2 files changed

+28
-4
lines changed

CHANGELOG.md

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,38 @@
1+
### Date: 2017-January-25
2+
### Release: v2017012501
3+
4+
- This release and future releases will no longer work on Moodle 2.6.
5+
- The language strings have been updated across all supported languages.
6+
- The implementation of submission deletion has been changed so that it is no longer a link.
7+
- Data dump display has been optimised to help with large databases.
8+
- If the required fileinfo extension is missing it will now be mentioned on the plugin settings page.
9+
- The plugin will now not make excessive calls to Turnitin when using the bulk enrolment tool.
10+
- Suspended users now no longer appear in the assignment inbox.
11+
- Non-submitter e-mails will no longer be sent to inactive students. (Thanks to @junwan6)
12+
- Travis-CI has been aded to the plugin as an extra QA resource to help flag any issues with the code.
13+
- Inclusion paths were consolidated for the ./sdk directory. (Thanks to @eviweb)
14+
- Fixes:
15+
- Fixed an issue with duplicate submission rows showing in the Moodle database.
16+
- Fixed an issue with anonymous marking where the overall grade would sometimes not appear.
17+
- The assignment edit API call no longer fails if repository settings don't match the plugin settings.
18+
- The submission processing message that was missing in Moodle 3.1 is now visible again.
19+
- Fixed a bug where the submission inbox would not load if an enrolled student has been deleted in Turnitin.
20+
- Characters that cannot be used in a file name in Windows are now removed from submission titles to prevent submission errors.
21+
22+
---
23+
124
### Date: 2016-December-21
225
### Release: v2016122101
326

427
- Fixes:
528
- Changed the language codes to correctly recognise Simplified Chinese in Moodle.
629
- Pass the correct Simplified Chinese language code to Turnitin.
730

31+
---
32+
833
### Date: 2016-September-14
934
### Release: v2016091401
1035

11-
1236
- Remove leftover counter variable from get_submission_inbox function.
1337
- Refactored the get users functionality in several places to not include users with roles inherited from site level.
1438
- Fixes:

version.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
$plugin = new StdClass();
2626
}
2727

28-
$plugin->version = 2017011301;
29-
$plugin->release = "2.6+";
30-
$plugin->requires = 2013111800;
28+
$plugin->version = 2017012501;
29+
$plugin->release = "2.7+";
30+
$plugin->requires = 2014051200;
3131
$plugin->component = 'mod_turnitintooltwo';
3232
$plugin->maturity = MATURITY_STABLE;
3333

0 commit comments

Comments
 (0)