Releases: marcusgreen/moodle-qtype_gapfill
Fix to version number which was in the future
Fix to incorrect version number in this release which covers PHP 8.2 and Moodle 4.4 compatibility
Spurious divs breaking quiz blocks
Fix for #76 where spurious div broke display of quiz blocks.
Mobile/ionic5 long text wrap and Github Actions
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
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
Support for ionic5 in the mobile app. Disable spell checker issue in iOS
v2.12
Support for ionic5 in the mobile app. Disable spell checker issue in iOS
Duplicate draggable fix
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
Removed an end_div tag that broke display of blocks in quiz
Single use was always on
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
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.