Skip to content

Commit 36c590d

Browse files
authored
Merge pull request #691 from equalizedigital/release/1.14.2
Release v1.14.2
2 parents 25f8c7a + 5c1ec39 commit 36c590d

8 files changed

Lines changed: 397 additions & 330 deletions

File tree

accessibility-checker.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* Plugin Name: Accessibility Checker
1111
* Plugin URI: https://a11ychecker.com
1212
* Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
13-
* Version: 1.14.0
13+
* Version: 1.14.2
1414
* Author: Equalize Digital
1515
* Author URI: https://equalizedigital.com
1616
* License: GPL-2.0+
@@ -35,7 +35,7 @@
3535

3636
// Current plugin version.
3737
if ( ! defined( 'EDAC_VERSION' ) ) {
38-
define( 'EDAC_VERSION', '1.14.0' );
38+
define( 'EDAC_VERSION', '1.14.2' );
3939
}
4040

4141
// Current database version.

admin/class-ajax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -684,7 +684,7 @@ function ( $value ) {
684684
// For small batches of IDs, we can just loop through.
685685
foreach ( $ids as $id ) {
686686
// phpcs:ignore WordPress.DB.DirectDatabaseQuery.DirectQuery, WordPress.DB.DirectDatabaseQuery.NoCaching -- Safe variable used for table name, caching not required for one time operation.
687-
$wpdb->query( $wpdb->prepare( 'UPDATE %i SET ignre = %d, ignre_user = %d, ignre_date = %s, ignre_comment = %s, ignre_global = %d WHERE siteid = %d and object = %d', $table_name, $ignre, $ignre_user, $ignre_date, $ignre_comment, $ignore_global, $siteid, $id ) );
687+
$wpdb->query( $wpdb->prepare( 'UPDATE %i SET ignre = %d, ignre_user = %d, ignre_date = %s, ignre_comment = %s, ignre_global = %d WHERE siteid = %d and id = %d', $table_name, $ignre, $ignre_user, $ignre_date, $ignre_comment, $ignore_global, $siteid, $id ) );
688688
}
689689
}
690690

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "accessibility-checker",
3-
"version": "1.14.0",
3+
"version": "1.14.2",
44
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
55
"author": "Equalize Digital",
66
"license": "GPL-2.0+",

partials/settings-page.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ function ( $a, $b ) {
4545
$settings_tab = ( array_search( $settings_tab, array_column( $settings_tab_items, 'slug' ), true ) !== false ) ? $settings_tab : $default_tab;
4646
?>
4747

48-
<div class="wrap edac-settings">
48+
<div class="wrap edac-settings <?php echo EDAC_KEY_VALID ? '' : 'pro-callout-wrapper'; ?>">
4949

5050
<h1><?php echo esc_html( get_admin_page_title() ); ?></h1>
5151

readme.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,14 @@ No, Accessibility Checker runs completely on your server and does not require yo
171171

172172
== Changelog ==
173173

174+
= 1.14.2 =
175+
* Enhancement: Reduce false positives for underlined text check
176+
* Fixed: Frontend highlighter could not be moved to the right side of the window on mobile
177+
* Fixed: Issue where ignores were not being saved and failing silently
178+
179+
= 1.14.1 =
180+
* Fixed: Prevent settings page layout issue
181+
174182
= 1.14.0 =
175183
* Added: Option to move front-end highlighter to opposite side of the window
176184
* Fixed: Prevent image from overspilling container in issue view

src/admin/sass/accessibility-checker-admin.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -820,6 +820,11 @@
820820

821821
.edac-settings {
822822
max-width: 800px;
823+
824+
&.pro-callout-wrapper {
825+
max-width: fit-content;
826+
}
827+
823828
.edac-description {
824829
font-size: 13px;
825830
}

0 commit comments

Comments
 (0)