From c052110aa119ec78c7a4433464cf4a90a56135b0 Mon Sep 17 00:00:00 2001 From: Tim Schroeder <t.schroeder@itc.rwth-aachen.de> Date: Tue, 11 Apr 2023 17:10:10 +0200 Subject: [PATCH] removed declaration of features that we dont support --- lib.php | 6 +++--- version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib.php b/lib.php index dd4228b..fa904af 100644 --- a/lib.php +++ b/lib.php @@ -45,7 +45,7 @@ function pdfannotator_supports($feature) { case FEATURE_COMPLETION_TRACKS_VIEWS: return true; case FEATURE_COMPLETION_HAS_RULES: - return true; + return false; case FEATURE_GRADE_HAS_GRADE: return false; case FEATURE_GRADE_OUTCOMES: @@ -57,9 +57,9 @@ function pdfannotator_supports($feature) { case FEATURE_ADVANCED_GRADING: return false; case FEATURE_PLAGIARISM: - return true; + return false; case FEATURE_COMMENT: - return true; + return false; default: return null; } diff --git a/version.php b/version.php index ee284cb..d3b1a56 100644 --- a/version.php +++ b/version.php @@ -25,7 +25,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'mod_pdfannotator'; -$plugin->version = 2023040400; +$plugin->version = 2023041100; $plugin->release = 'PDF Annotator v1.5 release 3'; $plugin->requires = 2021051700; $plugin->maturity = MATURITY_STABLE; -- GitLab