Skip to content

Commit

Permalink
Merge pull request #718 from equalizedigital/release/1.15.0
Browse files Browse the repository at this point in the history
Release/1.15.0
  • Loading branch information
pattonwebz committed Jul 16, 2024
2 parents f992907 + c4ad1a7 commit 70e3b53
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 24 deletions.
4 changes: 2 additions & 2 deletions accessibility-checker.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Accessibility Checker
* Plugin URI: https://a11ychecker.com
* Description: Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.
* Version: 1.14.3
* Version: 1.15.0
* Author: Equalize Digital
* Author URI: https://equalizedigital.com
* License: GPL-2.0+
Expand All @@ -35,7 +35,7 @@

// Current plugin version.
if ( ! defined( 'EDAC_VERSION' ) ) {
define( 'EDAC_VERSION', '1.14.3' );
define( 'EDAC_VERSION', '1.15.0' );
}

// Current database version.
Expand Down
15 changes: 15 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
Newer versions can be found in readme.txt.

= 1.11.2
* Fixed: Avoid displaying `0th` for readability score
* Removed: Some custom WP Playground detection code

= 1.11.1 =
* Fixed: type Casting on several rules
* Fixed: strict data comparison on several rules
* Updated: empty heading tag rule to consider aria-label

= 1.11.0 =
* Updated: Tested up to WP 6.5.2
* Improved: Better detection of the underlined text rule for more accurate results
* Improved: PHP 8.2 compatibility with the TextStatistics library
* Added: Opt-in modal for users to subscribe to the Equalize Digital newsletter with less steps

= 1.10.2 =
* Updated: Tested up to WP 6.5.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "accessibility-checker",
"version": "1.14.3",
"version": "1.15.0",
"description": "Audit and check your website for accessibility before you hit publish. In-post accessibility scanner and guidance.",
"author": "Equalize Digital",
"license": "GPL-2.0+",
Expand Down
27 changes: 10 additions & 17 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: equalizedigital, alh0319, stevejonesdev
Tags: accessibility, accessible, wcag, ada, WP accessibility
Requires at least: 6.2
Tested up to: 6.5.5
Stable tag: 1.14.3
Tested up to: 6.6.0
Stable tag: 1.15.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -171,6 +171,14 @@ No, Accessibility Checker runs completely on your server and does not require yo

== Changelog ==

= 1.15.0 =
* Added: WP-CLI commands to get stats and delete stats
* Enhancement: Image inputs with alt text shouldn't flag for missing_form_label
* Fixed: Don't flag .avif as missing transcript or video present
* Fixed: Purge the post data if the saved post is in or is moving to the trash
* Fixed: Handle stacking contexts for callout button in admin correctly
* Fixed: PHP 8.4 deprecation notice fix for implicitly nullable Meta_Boxes

= 1.14.3 =
* Fixed: Allow empty_link rule to detect actually empty links

Expand Down Expand Up @@ -212,20 +220,5 @@ No, Accessibility Checker runs completely on your server and does not require yo
* Improved: More accessible panels in the editor
* Improved: Filter and action docs added/improved

= 1.11.2
* Fixed: Avoid displaying `0th` for readability score
* Removed: Some custom WP Playground detection code

= 1.11.1 =
* Fixed: type Casting on several rules
* Fixed: strict data comparison on several rules
* Updated: empty heading tag rule to consider aria-label

= 1.11.0 =
* Updated: Tested up to WP 6.5.2
* Improved: Better detection of the underlined text rule for more accurate results
* Improved: PHP 8.2 compatibility with the TextStatistics library
* Added: Opt-in modal for users to subscribe to the Equalize Digital newsletter with less steps

Older versions can be found in the plugins `changelog.txt`.

8 changes: 4 additions & 4 deletions src/admin/sass/accessibility-checker-admin.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1398,8 +1398,8 @@
color: #ffffff;

&-error {
background-size: 1rem 1rem;
background: $color-green url('.././images/error%20icon%20white.png') no-repeat calc(0% + 5px) 50%;
background-size: 1rem 1rem;

&.has-errors {
background-color: $color-red;
Expand All @@ -1408,8 +1408,8 @@
}

&-contrast {
background-size: 1rem 1rem;
background: $color-green url('.././images/contrast%20icon%20white.png') no-repeat calc(0% + 5px) 50%;
background-size: 1rem 1rem;

&.has-errors {
background-color: $color-red;
Expand All @@ -1418,12 +1418,12 @@
}

&-warning {
background-size: 1rem 1rem;
background: $color-green url('.././images/warning%20icon%20white.png') no-repeat calc(0% + 5px) 50%;
background-size: 1rem 1rem;

&.has-warning {
background-size: 1rem 1rem;
background: $color-yellow url('.././images/warning%20icon%20navy.png') no-repeat calc(0% + 5px) 50%;
background-size: 1rem 1rem;
color: $color-blue-dark;
}

Expand Down

0 comments on commit 70e3b53

Please sign in to comment.