Skip to content

Releases: marcusgreen/moodle-qtype_gapfill

Fix to version number which was in the future

23 Apr 08:16
Compare
Choose a tag to compare

Fix to incorrect version number in this release which covers PHP 8.2 and Moodle 4.4 compatibility

Spurious divs breaking quiz blocks

31 Jul 21:35
Compare
Choose a tag to compare

Fix for #76 where spurious div broke display of quiz blocks.

Mobile/ionic5 long text wrap and Github Actions

30 Jun 17:25
Compare
Choose a tag to compare

Fix for Mobile App/ionic5, long text questions were cutting off instead of wrapping. More english language example questions. Moved from travis ci to github actions and moodle-ci

Mobile/ionic5 long text wrap and Github Actions

30 Jun 16:28
Compare
Choose a tag to compare

Fix for Mobile App/ionic5, long text questions were cutting off instead of wrapping. More english language example questions. Moved from travis ci to github actions and moodle-ci

v2.121

25 May 21:34
Compare
Choose a tag to compare

Support for ionic5 in the mobile app. Disable spell checker issue in iOS

v2.12

25 May 19:09
Compare
Choose a tag to compare

Support for ionic5 in the mobile app. Disable spell checker issue in iOS

Duplicate draggable fix

29 Jan 21:36
Compare
Choose a tag to compare

Fix for duplicate draggbles appearing when using the or (|), opertor. As described here https://moodle.org/mod/forum/discuss.php?d=414949&parent=1672515 Thanks to Nancy Chan for reporting that.

v2.10 broken quiz blocks

26 Oct 14:32
Compare
Choose a tag to compare

Removed an end_div tag that broke display of blocks in quiz

Single use was always on

29 Sep 13:06
Compare
Choose a tag to compare

Singleuse draggbles was always on because javascript interpreted "0" as true. The file renderer.php now casts it to Boolean (true or false) so singleuse draggables is only on when the setting is clicked. My thanks to Mrs Summers for reporting this and helping to identify where the problem was and also to Matthias Giger for testing.

PHP7.0 compatibility and for optionsaftertext to work on mobile

19 Sep 18:56
Compare
Choose a tag to compare

Removed missing nullable parameter type ?int, as it breaks on PHP 7.0 which is supported at least up till Moodle 3.5. The optionsaftertext setting did not work on Mobile, fixed by adding a missing closing div tag. Discarded the code in upgrade.php that changed default datatype of singleuse. It would have applied to a tiny number of users and not actually break anything.