From aa2bf4d49a35b4bf9d4cb381155947aeaedb8c54 Mon Sep 17 00:00:00 2001 From: Kathrin Osswald <kathrin.osswald@uni-ulm.de> Date: Tue, 29 May 2018 14:13:48 +0200 Subject: [PATCH] Check compatibility for Moodle 3.5, no functionality change. --- .travis.yml | 2 +- CHANGES.md | 4 ++++ README.md | 5 +++-- version.php | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 2791fa7..c9b555b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -24,7 +24,7 @@ php: env: global: - - MOODLE_BRANCH=MOODLE_34_STABLE + - MOODLE_BRANCH=MOODLE_35_STABLE matrix: - DB=pgsql - DB=mysqli diff --git a/CHANGES.md b/CHANGES.md index 2d965d5..2bbdd3f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -4,6 +4,10 @@ moodle-block_course_overview_campus Changes ------- +### Unreleased + +* 2018-05-29 - Check compatibility for Moodle 3.5, no functionality change. + ### v3.4-r2 * 2018-05-16 - Implement Privacy API. diff --git a/README.md b/README.md index 03e325a..1339da3 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Moodle block which provides all functionality of block_course_overview, provides Requirements ------------ -This plugin requires Moodle 3.4+ +This plugin requires Moodle 3.5+ Motivation for this plugin @@ -143,7 +143,8 @@ Theme support ------------- This plugin should work with all Bootstrap based Moodle themes. -It has been developed on and tested with Moodle Core's Clean and Boost themes. +It has been developed on and tested only with Moodle Core's Boost theme. +While this plugin should also work with Moodle Core's legacy Clean theme or third party themes, we can't support any other theme than Boost. This plugin also provides a fallback for browsers with JavaScript disabled. diff --git a/version.php b/version.php index eaffc14..625246d 100644 --- a/version.php +++ b/version.php @@ -27,5 +27,5 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = 'block_course_overview_campus'; $plugin->version = 2018051700; $plugin->release = 'v3.4-r2'; -$plugin->requires = 2017111300; +$plugin->requires = 2018051700; $plugin->maturity = MATURITY_STABLE; -- GitLab