Skip to content

issue #26: add support for Moodle 4.4 #27

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
enable_phpmd: true
disable_phpcpd: true
extra_plugin_runners: |
moodle-plugin-ci add-plugin mdjnelson/moodle-mod_customcert --branch MOODLE_401_STABLE;
moodle-plugin-ci add-plugin mdjnelson/moodle-mod_customcert --branch MOODLE_404_STABLE;
moodle-plugin-ci add-plugin moodleworkplace/moodle-tool_certificate --branch MOODLE_400_STABLE;
moodle-plugin-ci add-plugin moodleworkplace/moodle-mod_coursecertificate --branch MOODLE_400_STABLE;
moodle-plugin-ci add-plugin mdjnelson/moodle-mod_certificate --branch master;
moodle-plugin-ci add-plugin danmarsden/moodle-local_recompletion --branch MOODLE_401_STABLE;
moodle-plugin-ci add-plugin danmarsden/moodle-local_recompletion --branch MOODLE_403_STABLE;
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,14 @@ The block allows to verify all certificates installed in your Moodle using a sin

This plugin can verify certificates archived using Course recompletion ([local_recompletion](https://moodle.org/plugins/local_recompletion))

Branches
--------
The following git branches are currently supported:

| Moodle version | Branch |
|-----------------|-------------------|
| Moodle 4.1 - 4.3 | MOODLE_401_STABLE |
| Moodle 4.4 | MOODLE_404_STABLE |

## Installing via uploaded ZIP file ##

Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@
$plugin->version = 2023112200;
$plugin->requires = 2022112800;
$plugin->maturity = MATURITY_STABLE;
$plugin->supported = [401, 403];
$plugin->supported = [404, 404];
Loading