File tree Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Expand file tree Collapse file tree 3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### 6.1.0 (2025-07-26)
4+
5+ - improvement: allow use of local decimal separator (comma) in student answers
6+ - improvement: use local decimal separator when displaying numbers in feedback or question text
7+ - improvement: simplifiy shuffling options in multi-choice answer fields using ": MCS " or ": MCES "
8+ - improvement: implement basic formatting of input fields (width, color, alignment)
9+ - improvement: add option to skip checking correctness of model answer when importing questions
10+ - improvement: better error reporting if importing a question fails
11+ - bugfix: ignore empty statements or subsequent semicolons in variable definitions
12+ - bugfix: avoid undesired linebreak around dropdown fields with Moodle 5.0 and above
13+ - bugfix: avoid re-activation of outdated MathJax preview
14+ - bugfix: fix instantiation check for variables that contain HTML
15+ - bugfix: allow setting individual elements in lists that are initialised with fill()
16+ - bugfix: allow large reservoirs for random and algebraic variables
17+ - bugfix: fix rendering of local variables in questions with answer type algebraic formula
18+ - bugfix: flag quotes and strings in student answers as invalid
19+ - internal: fix failing unit tests for Moodle 4.5+ after MDL-85721
20+ - internal: improve language strings
21+ - internal: improve layout of admin settings page
22+ - internal: remove obsolete admin setting "usepopup"
23+
24+ Details: https://github.com/FormulasQuestion/moodle-qtype_formulas/compare/v6.0.4...v6.1.0
25+
326### 6.0.4 (2025-06-16)
427
528- bugfix: avoid outdated MathJax preview being re-activated
Original file line number Diff line number Diff line change @@ -620,6 +620,6 @@ public function test_instantiate_with_large_random_reservoir(): void {
620620
621621 $ b = $ data [0 ]['globalvars ' ][0 ];
622622 self ::assertEquals ('b ' , $ b ['name ' ]);
623- self ::assertEqualsWithDelta (2 * $ a ['value ' ], $ b ['value ' ], 1e-12 );
623+ self ::assertEqualsWithDelta (2 * $ a ['value ' ], $ b ['value ' ], 1e-12 );
624624 }
625625}
Original file line number Diff line number Diff line change 2525defined ('MOODLE_INTERNAL ' ) || die ();
2626
2727$ plugin ->component = 'qtype_formulas ' ;
28- $ plugin ->version = 2025061600 ;
28+ $ plugin ->version = 2025072600 ;
2929
3030$ plugin ->cron = 0 ;
3131$ plugin ->requires = 2022112800 ;
3636 'filter_mathjaxloader ' => 2022112800 ,
3737];
3838$ plugin ->supported = [401 , 500 ];
39- $ plugin ->release = '6.0.4 ' ;
39+ $ plugin ->release = '6.1.0 ' ;
4040
4141$ plugin ->maturity = MATURITY_STABLE ;
You can’t perform that action at this time.
0 commit comments