Plugin Directory

Changeset 3246918


Ignore:
Timestamp:
02/26/2025 08:28:24 AM (13 months ago)
Author:
david.kane
Message:

Releasing v2.25.2

Location:
supapress/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • supapress/trunk/composer.json

    r3226885 r3246918  
    11{
    2     "name": "supadu/supapress",
    3     "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
    4     "type": "wordpress-plugin",
    5     "version": "2.25.1",
    6     "authors": [
    7         {
    8             "name": "Supadu"
    9         }
    10     ],
    11     "require": {
    12         "composer/installers": "~1.0"
    13     },
    14     "archive": {
    15         "exclude": [
    16             "/source",
    17             "package.json",
    18             "package-lock.json",
    19             "gulpfile.js"
    20         ]
     2  "name": "supadu/supapress",
     3  "description": "Quickly and easily connect your book metadata (ONIX) to your WordPress site.",
     4  "type": "wordpress-plugin",
     5  "version": "2.25.2",
     6  "authors": [
     7    {
     8      "name": "Supadu"
    219    }
     10  ],
     11  "require": {
     12    "composer/installers": "~1.0"
     13  },
     14  "archive": {
     15    "exclude": [
     16      "/source",
     17      "package.json",
     18      "package-lock.json",
     19      "gulpfile.js"
     20    ]
     21  }
    2222}
  • supapress/trunk/includes/filters.php

    r2389550 r3246918  
    260260        } else {
    261261            $html = supapress_add_value_to_html_attribute( $before, 'class', 'filter-option' );
    262             $html .= "<a href=\"javascript:void(0)\" data-name=\"{$this->filter_group_name}\" data-seo=\"{$this->filter->seo_name}\">";
     262            $ariaLabel = strip_tags($this->filter->name);
     263            $html .= "<a href=\"javascript:void(0)\" data-name=\"{$this->filter_group_name}\" data-seo=\"{$this->filter->seo_name}\" aria-label=\"{$ariaLabel}\">";
    263264            $html .= __($this->filter->name, 'supapress');
    264265            $html .= "</a>";
  • supapress/trunk/readme.txt

    r3226885 r3246918  
    44Requires at least: 6.0
    55Tested up to: 6.6.2
    6 Stable tag: 2.25.1
     6Stable tag: 2.25.2
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3838
    3939== Changelog ==
     40
     41= 2.25.2 =
     42Release Date: Feb 2024
     43* Update: add aria-label on search filters
    4044
    4145= 2.25.1 =
  • supapress/trunk/supapress.php

    r3226885 r3246918  
    77 * Plugin URI: https://www.supadu.com
    88 * Description: Quickly and easily connect your book metadata (ONIX) to your WordPress site.
    9  * Version: 2.25.1
     9 * Version: 2.25.2
    1010 * Author: Supadü
    1111 * Author URI: https://www.supadu.com
     
    3737defined( 'ABSPATH' ) or die( 'Illegal Access!' );
    3838
    39 define( 'SUPAPRESS_VERSION', '2.25.1' );
     39define( 'SUPAPRESS_VERSION', '2.25.2' );
    4040
    4141define( 'SUPAPRESS_SITE_URL', get_site_url() );
Note: See TracChangeset for help on using the changeset viewer.