Skip to content

Commit

Permalink
Merge pull request #616 from equalizedigital/release/1.11.2
Browse files Browse the repository at this point in the history
Release v1.11.2
  • Loading branch information
pattonwebz authored May 6, 2024
2 parents b654c37 + 4b08f53 commit 74ec4d3
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 4,870 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/deploy-on-release-to-dot-org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
cache: 'npm'

- name: NPM install, build and generate release artefacts
id: dist-build
run: |
npm install --ignore-scripts
npm run build
Expand All @@ -52,6 +53,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ${{ steps.deploy.outputs.zip-path }}
asset_path: ${{ steps.dist-build.outputs.zip-path }}
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip
3 changes: 0 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
# Exclude these files from the git repo
.sass-cache/
#.codekit-config.json
#config.codekit
config.codekit3
edac_log.txt
#composer.lock
package-lock.json
Expand Down
10 changes: 2 additions & 8 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.11.1
* Version: 1.11.2
* Author: Equalize Digital
* Author URI: https://equalizedigital.com
* License: GPL-2.0+
Expand All @@ -26,12 +26,6 @@
die;
}

// Check for WordPress Playground.
require_once plugin_dir_path( __FILE__ ) . 'includes/classes/class-playground-check.php';
if ( ! ( new EDAC\Inc\Playground_Check() )->should_load ) {
return;
}

// Include plugin dependency.
require_once ABSPATH . 'wp-admin/includes/plugin.php';

Expand All @@ -41,7 +35,7 @@

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

// Current database version.
Expand Down
6 changes: 3 additions & 3 deletions admin/class-admin-notices.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function edac_black_friday_notice() {
}

/**
* Get GAAD Promo Message
* Get Black Friday Promo Message
*
* @return string
*/
Expand Down Expand Up @@ -216,7 +216,7 @@ public function edac_get_gaad_promo_message() {
}

/**
* Review Admin Notice Ajax
* GAAD Admin Notice Ajax
*
* @return void
*
Expand Down Expand Up @@ -379,7 +379,7 @@ public function edac_password_protected_notice() {
}

/**
* Review Admin Notice Ajax
* Password Protected Admin Notice Ajax
*
* @return void
*
Expand Down
Loading

0 comments on commit 74ec4d3

Please sign in to comment.