Skip to content

Commit

Permalink
Merge pull request KQMATH#65 from KQMATH/release/1.0.1
Browse files Browse the repository at this point in the history
Release/1.0.1
  • Loading branch information
andstor authored Aug 4, 2021
2 parents b8d290b + c35e67b commit d885c30
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org).
## [Unreleased]
### Changed

## [1.0.1] - 2021-08-04
### Fixed
- Fixed erroneous override of Admin pages urls.

## [1.0.0] - 2021-08-02
### Added
- Configurable toolbar controls with the help of templates.
Expand Down Expand Up @@ -41,7 +45,8 @@ and this project adheres to [Semantic Versioning](https://semver.org).
### Added
-

[Unreleased]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v1.0.1...HEAD
[1.0.1]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v0.4.2...v1.0.0
[0.4.2]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v0.4.1...v0.4.2
[0.4.1]: https://github.com/KQMATH/moodle-qtype_shortmath/compare/v0.4.0...v0.4.1
Expand Down
5 changes: 1 addition & 4 deletions settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,9 @@

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

$PAGE->set_url('/admin/settings.php', ['section' => 'qtypesettingshortmath']);

if ($hassiteconfig) {
if ($ADMIN->fulltree) {

$menu = [];

// Get all configuration templates from database.
$templates = $DB->get_records('qtype_shortmath_templates', null, 'id', 'id, name');
foreach ($templates as $template) {
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@

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

$plugin->version = 2021080200;
$plugin->version = 2021080400;
$plugin->requires = 2018051700; // Moodle version 3.5.
$plugin->component = 'qtype_shortmath';
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.0.0';
$plugin->release = '1.0.1';

0 comments on commit d885c30

Please sign in to comment.