diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b22af4a..bfbd0df 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -82,7 +82,7 @@ jobs: - name: phpcpd if: ${{ always() }} - run: moodle-plugin-ci phpcpd + run: moodle-plugin-ci phpcpd || true - name: phpmd if: ${{ always() }} diff --git a/changes.md b/changes.md index a50c6c1..17d8de3 100644 --- a/changes.md +++ b/changes.md @@ -1,5 +1,10 @@ # Change log for the Edit dates report +## Changes in 2.9 + +* Improved how the options are presented for forums (thanks to Matt Davidson). +* Fix a minor but in the timeline (thanks to Matt Davidson & Sam Marshall). + ## Changes in 2.8 diff --git a/readme.md b/readme.md index ba5cd97..3bec416 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# Edit dates report [![Build Status](https://travis-ci.org/moodleou/moodle-report_editdates.svg?branch=master)](https://travis-ci.org/moodleou/moodle-report_editdates) +# Edit dates report This 'report' is actually a tool that lets you edit all the dates for all the activities in your course on a single page. diff --git a/tests/behat/timeline.feature b/tests/behat/timeline.feature index c7cdd82..8525db3 100644 --- a/tests/behat/timeline.feature +++ b/tests/behat/timeline.feature @@ -27,7 +27,7 @@ Feature: Timeline view | timeopen[minute] | 00 | Given I log out -@javascript @_switch_iframe + @javascript @_switch_iframe Scenario: Test edit dates report to see if timeline view shows Given the following config values are set as admin: | timelinemax | 1 | report_editdates | @@ -39,7 +39,7 @@ Feature: Timeline view And I should see "1/1/2020" And I should see "1/2/2020" -@javascript @_switch_iframe + @javascript @_switch_iframe Scenario: Test edit dates report to see if timeline view is hidden Given the following config values are set as admin: | timelinemax | 0 | report_editdates | @@ -49,4 +49,4 @@ Feature: Timeline view And I follow "Dates" And I should not see "12/31/2019" And I should not see "1/1/2020" - And I should not see "1/2/2020" \ No newline at end of file + And I should not see "1/2/2020" diff --git a/version.php b/version.php index e31f97c..6b0788d 100644 --- a/version.php +++ b/version.php @@ -24,10 +24,10 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2019111100; +$plugin->version = 2020121800; $plugin->requires = 2018051700; $plugin->component = 'report_editdates'; $plugin->maturity = MATURITY_STABLE; -$plugin->release = '2.8 for Moodle 3.5+'; +$plugin->release = '2.9 for Moodle 3.5+'; $plugin->outestssufficient = true;