From ff49791c7b61402514e3bb33d4071495da596dce Mon Sep 17 00:00:00 2001 From: David Winn Date: Wed, 25 Jan 2017 15:29:41 +0000 Subject: [PATCH 1/2] Release 2017012501 --- CHANGELOG.md | 19 +++++++++++++++++++ version.php | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0c76e8e7..d7862ebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +### Date: 2017-January-25 +### Release: v2017012501 + +- The events now use Moodle's new Events 2 API, which is a requirement to support future Moodle versions. Admins should ensure the Events Queue has been cleared for Plagiarism events. Following this change to the Events API this release and future releases will no longer work on Moodle 2.6. +- The language strings have been updated across all supported languages. +- The unused database columns legacyteacher, apimd5 and externalstatus have been removed from the plugin's plagiarism_turnitin_files table. These were leftovers from Dan Marsden's version of the plugin that are no longer used. +- Travis-CI has been aded to the plugin as an extra QA resource to help flag any issues with the code. +- Fixes: + - The assignment edit API call no longer fails if repository settings don't match the plugin settings. + - JavaScript error no longer appears when closing the PeerMark manager. + - The & character no longer appears in TFS as &. + - Default values for submitter and student_read columns are now consistent between upgrade and install. (Thanks to @danmarsden). + - The error message when submitting a file >40mb now displays correctly. + - Fixed an issue with anonymous marking where grades would appear in the gradebook before the assignment has been unanonymised. + - Fixed an issue where the first submission to an assignment would sometimes fail to send to Turnitin. + - Moodle's Behat unit tests will no longer fail. (Thanks to @roperto) + +--- + ### Date: 2016-September-14 ### Release: v2016091401 diff --git a/version.php b/version.php index f2907734..08727a00 100644 --- a/version.php +++ b/version.php @@ -19,9 +19,9 @@ * @copyright 2012 iParadigms LLC */ -$plugin->version = 2017011801; +$plugin->version = 2017012501; $plugin->release = "2.6+"; -$plugin->requires = 2013111800; +$plugin->requires = 2014051200; $plugin->component = 'plagiarism_turnitin'; $plugin->maturity = MATURITY_STABLE; From c1e45ca996ecb842a7685274a6f396daec4a189c Mon Sep 17 00:00:00 2001 From: David Winn Date: Thu, 26 Jan 2017 13:40:46 +0000 Subject: [PATCH 2/2] Change release value to 2.7 --- version.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.php b/version.php index 08727a00..3b96c1af 100644 --- a/version.php +++ b/version.php @@ -20,7 +20,7 @@ */ $plugin->version = 2017012501; -$plugin->release = "2.6+"; +$plugin->release = "2.7+"; $plugin->requires = 2014051200; $plugin->component = 'plagiarism_turnitin'; $plugin->maturity = MATURITY_STABLE;