diff --git a/CHANGES.txt b/CHANGES.txt index dde8528..11dae29 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -3,6 +3,10 @@ Release notes for GeoGebra Module for Moodle (http://moodle.org/plugins/pluginve More information on each of the fixes can be found in the project development home at https://github.com/projectestac/moodle-mod_geogebra +Changes in 3.7.1 (2024/11/11) +--------------------------------------------------------------------------------------- +- No longer use the value zero for the width and height of the GeoGebra applet. + Changes in 3.7.0 (2024/10/29) --------------------------------------------------------------------------------------- - General update to the code diff --git a/version.php b/version.php index d79df23..6c41bfb 100644 --- a/version.php +++ b/version.php @@ -29,9 +29,9 @@ defined('MOODLE_INTERNAL') || die(); -$plugin->version = 2024102900; // The current module version (Date: YYYYMMDDXX) +$plugin->version = 2024111100; // The current module version (Date: YYYYMMDDXX) $plugin->requires = 2022041900; // Requires this Moodle version (4.0) $plugin->cron = 0; // Period for cron to check this module (secs) $plugin->component = 'mod_geogebra'; // To check on upgrade, that module sits in correct place -$plugin->release = 'v3.7.0'; // Human-readable version name +$plugin->release = 'v3.7.1'; // Human-readable version name $plugin->maturity = MATURITY_STABLE; // How stable the plugin is