Skip to content

Commit

Permalink
Version bump, dependencies and readme
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartlamour committed Nov 28, 2024
1 parent cc69633 commit a5fd082
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# moodle-block_my_feedback

This block shows students recent feedback across moodle courses.

It currently supports assignment, quiz, and turnitin.

It outputs some UCL specific elements which you can remove from mustahce template.

# Version 2.0

For users who's role archetype is editingteacher the block shows a marker view, with summative assessments that require marking.

The marker view uses https://github.com/ucl-isd/moodle-local_assess_type to get which assessments have been set as summative.


2 changes: 1 addition & 1 deletion block_my_feedback.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

use core\context\user;
use core_course\external\course_summary_exporter;
use local_assess_type\assess_type; // TODO - add in requires...
use local_assess_type\assess_type; // UCL plugin.
use mod_quiz\question\display_options;

/**
Expand Down
7 changes: 5 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2023031400; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = '1.0';
$plugin->version = 2024112800; // The current plugin version (Date: YYYYMMDDXX).
$plugin->release = '2.0';
$plugin->maturity = MATURITY_ALPHA;
$plugin->requires = 2023042400; // Requires at least Moodle version 4.2.
$plugin->component = 'block_my_feedback'; // Full name of the plugin (used for diagnostics).
$plugin->dependencies = [
'local_assess_type' => 2024091300,
];

0 comments on commit a5fd082

Please sign in to comment.