Skip to content

Commit

Permalink
Merge pull request #727 from equalizedigital/release/1.15.2
Browse files Browse the repository at this point in the history
Hotfix: Release v1.15.2
  • Loading branch information
pattonwebz authored Aug 7, 2024
2 parents 2c6b533 + fda6d5b commit 6c753fc
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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.15.1
* Version: 1.15.2
* 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.15.1' );
define( 'EDAC_VERSION', '1.15.2' );
}

// Current database version.
Expand Down
2 changes: 1 addition & 1 deletion admin/class-settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public static function get_scannable_post_types() {
// Check if the new settings class exists. This is added to allow for backwards compatibility
// with the old settings class. The old settings class check should be removed after a few releases.
$new_settings_class_exists = class_exists( 'EqualizeDigital\AccessibilityCheckerPro\Admin\Settings' );
if ( ! class_exists( '\EDACP\Settings' ) || ! $new_settings_class_exists ) {
if ( ! class_exists( '\EDACP\Settings' ) && ! $new_settings_class_exists ) {

$post_types = Helpers::get_option_as_array( 'edac_post_types' );

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.15.1",
"version": "1.15.2",
"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
5 changes: 4 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: equalizedigital, alh0319, stevejonesdev
Tags: accessibility, accessible, wcag, ada, WP accessibility
Requires at least: 6.2
Tested up to: 6.6.1
Stable tag: 1.15.1
Stable tag: 1.15.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.15.2 =
* Fixed: Issue where CPT results would not be reflected in dashboard widgets and reports

= 1.15.1 =
* Fixed: Issue where a modal could result in JS error preventing display
* Fixed: Situations where Gutenberg created new posts may not trigger the JS scan when publishing
Expand Down

0 comments on commit 6c753fc

Please sign in to comment.