Skip to content

Commit 7b4525f

Browse files
authored
prepare v6.1.0 (#258)
1 parent f94e848 commit 7b4525f

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
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

tests/externallib_test.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
defined('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;
@@ -36,6 +36,6 @@
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;

0 commit comments

Comments
 (0)