Skip to content

Commit

Permalink
Release 7.27.0 (22nd July 2021)
Browse files Browse the repository at this point in the history
Changelog:

- Fix literals on test page.
- Fix compatibility report error with MathType Atto and TinyMCE
  • Loading branch information
dcanet-at-wiris committed Aug 6, 2021
1 parent a60c952 commit 0aebd92
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ jobs:
# 5.3. Code validations
- name: Moodle Code Checker
if: ${{ always() }}
run: moodle-plugin-ci codechecker --max-warnings 1
run: moodle-plugin-ci codechecker --max-warnings 50

- name: Validating
if: ${{ always() }}
Expand Down
2 changes: 1 addition & 1 deletion classes/privacy/provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,4 @@ class provider implements \core_privacy\local\metadata\null_provider {
public static function get_reason() : string {
return 'privacy:metadata';
}
}
}
6 changes: 3 additions & 3 deletions info.php
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ function check_if_wiris_button_are_in_tinymce_toolbar() {
$output = '';
$output .= html_writer::start_tag('tr', array('class' => 'wrs_plugin wrs_filter'));
$wirisplugin = filter_wiris_pluginwrapper::get_wiris_plugin();
$testname = get_string('wirispluginfilterfor', 'filter_wiris') . 'nbsp;' . $currenteditordata['plugin_name'] . ' versions';
$testname = get_string('wirispluginfilterfor', 'filter_wiris') . ' ' . $currenteditordata['plugin_name'] . ' versions';

if (isset($plugin->version)) {
$filterversion = $plugin->version;
Expand All @@ -256,11 +256,11 @@ function check_if_wiris_button_are_in_tinymce_toolbar() {
}

if ($filterversion == $pluginversion) {
$reporttext = get_string('wirispluginfilterfor', 'filter_wiris') . 'nbsp;' . $currenteditordata['plugin_name'] . ' ' .
$reporttext = get_string('wirispluginfilterfor', 'filter_wiris') . ' ' . $currenteditordata['plugin_name'] . ' ' .
get_string('havesameversion', 'filter_wiris');
$condition = true;
} else {
$reporttext = get_string('wirispluginfilterfor', 'filter_wiris') . 'nbsp;' . $currenteditordata['plugin_name'] . ' ' .
$reporttext = get_string('wirispluginfilterfor', 'filter_wiris') . ' ' . $currenteditordata['plugin_name'] . ' ' .
get_string('versionsdontmatch', 'filter_wiris');
$reporttext .= "<br>" . get_string('wirisfilterversion', 'filter_wiris') . '&nbsp;' . $filterversion;
$reporttext .= "<br>" . get_string('wirispluginfor', 'filter_wiris') . '&nbsp;' . $currenteditordata['plugin_name'] .
Expand Down
2 changes: 1 addition & 1 deletion tests/behat/behat_wiris_filter.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,4 +90,4 @@ public function the_mathtype_buttons_visibility_is_set_to($value) {
set_config('editor_enable', $value, 'filter_wiris');
set_config('chem_editor_enable', $value, 'filter_wiris');
}
}
}
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2021061800;
$plugin->release = '7.26.1';
$plugin->version = 2021072200;
$plugin->release = '7.27.0';
$plugin->requires = 2011120511;
$plugin->maturity = MATURITY_STABLE;
$plugin->component = 'filter_wiris';
Expand Down

0 comments on commit 0aebd92

Please sign in to comment.