Skip to content

Commit

Permalink
Merge pull request #37 from KQMATH/release/0.1.2
Browse files Browse the repository at this point in the history
Release/0.1.2
  • Loading branch information
andstor authored Dec 15, 2021
2 parents e2e3b32 + 6511860 commit ec799a3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org).

## [Unreleased]

## [0.1.2] - 2021-12-15
### Changed
- Updated docs for only using one block for multiple activity modules.

## [0.1.1] - 2021-08-02
### Fixed
- Fix missing context when course modules are deleted. #33
Expand All @@ -17,6 +21,6 @@ and this project adheres to [Semantic Versioning](https://semver.org).
- Backup and Restore API.
- Privacy API is implemented in order to comply with the [General Data Protection Regulation](https://en.wikipedia.org/wiki/General_Data_Protection_Regulation) (GDPR).

[Unreleased]: https://github.com/KQMATH/moodle-local_qtracker/compare/v0.1.0...HEAD

[Unreleased]: https://github.com/KQMATH/moodle-local_qtracker/compare/v0.1.2...HEAD
[0.1.2]: https://github.com/KQMATH/moodle-local_qtracker/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/KQMATH/moodle-local_qtracker/compare/v0.1.0...v0.1.1
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

The QTracker system allows students to comment and ask questions about individual questions in a quiz. The idea and design follows the principles of issue tracker systems.

In addition to the QTracker module, a separate block-type module is needed to add the interface to a given activity type. Such block modules have been made for
+ Core Quiz - [Quiz QTracker](https://github.com/KQMATH/moodle-block_quizqtracker)
+ CAPQuiz - [CAPQuiz QTracker](https://github.com/KQMATH/moodle-block_capquizqtracker)
In addition to the QTracker module, an accompanying block module is needed to add the interface to a supported activity type. This block is available [here](https://github.com/KQMATH/moodle-block_qtracker).

The QTracker functionality is normally accessed via the appropriate block plugin.
The block currently supports the following activity modules:
* [Moodle Quiz](https://docs.moodle.org/en/Quiz_activity)
* [CAPQuiz](https://github.com/KQMATH/moodle-mod_capquiz)

## Documentation
Documentation is available [here](https://github.com/KQMATH/moodle-local_qtracker/wiki), including [installation instructions](https://github.com/KQMATH/moodle-local_qtracker/wiki/Installation-instructions).
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@

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

$plugin->version = 2021080200;
$plugin->version = 2021121500;
$plugin->requires = 2016120500;
$plugin->cron = 0;
$plugin->component = 'local_qtracker';
$plugin->maturity = MATURITY_BETA;
$plugin->release = '0.1.1';
$plugin->release = '0.1.2';

0 comments on commit ec799a3

Please sign in to comment.