diff --git a/README.md b/README.md index 6755869..491d8d1 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -moodle-qbank_bulkxmlexport -========================= +# moodle-qbank_bulkxmlexport + [![Latest Release](https://img.shields.io/github/v/release/bfh/moodle-qbank_bulkxmlexport?sort=semver&color=orange)](https://github.com/bfh/moodle-qbank_bulkxmlexport/releases) [![Build Status](https://github.com/bfh/moodle-qbank_bulkxmlexport/workflows/Moodle%20Plugin%20CI/badge.svg?branch=main)](https://github.com/bfh/moodle-qbank_bulkxmlexport/actions?query=workflow%3A%22Moodle+Plugin+CI%22+branch%3Amain) [![PHP Support](https://img.shields.io/badge/php-8.1--8.3-blue)](https://github.com/bfh/moodle-qbank_bulkxmlexport/actions) @@ -9,28 +9,35 @@ moodle-qbank_bulkxmlexport Moodle question bank plugin to selectively download questions as Moodle XML. -This project was created as MoodleMoot DACH 2024. +This project was created at DevCamp at MoodleMoot DACH 2024. -Requirements ------------- +## Requirements This plugin requires Moodle 4.4. +It will probably work with a lower version of the 4.x branches, however, this was not tested. In case you want to use it with a lower version, please adapt the `version.php`. -Motivation for this report --------------------------- - -Quiz question export as XML does only work category wise or question wise. This plugin adds a bulk action -in the question bank. +## Motivation for this report +Quiz question export as XML does only work category wise or for a single question only. This plugin adds a bulk action in the question bank. Questions remain where they are. +The export is an Moodle XML file. -Installation ------------- +## Installation -Install the plugin to folder -/question/bank/bulkxmlexport +Install the plugin to folder `/question/bank/bulkxmlexport` Then visit the admin notification page to complete the installation. See http://docs.moodle.org/en/Installing_plugins for details on installing Moodle plugins + +## Version History + +### 0.2 + +- Added ci of Moodle 4.4. +- Added basic behat tests for functionality. + +### 0.1 + +First version after creating it at Moodle Moot DACH 24 \ No newline at end of file diff --git a/version.php b/version.php index eaee0e9..90d2b60 100644 --- a/version.php +++ b/version.php @@ -19,13 +19,14 @@ * * @package qbank_bulkxmlexport * @copyright 2024 Stephan Robotta - * @author 2024 Stephan Robotta * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'qbank_bulkxmlexport'; -$plugin->version = 2024090400; -$plugin->requires = 2021052500; -$plugin->maturity = MATURITY_RC; +$plugin->release = '0.2'; +$plugin->version = 2024091200; +$plugin->requires = 2024041200; +$plugin->supported = [404, 404]; +$plugin->maturity = MATURITY_RC;