diff --git a/gravityview-az-filters-extension.php b/gravityview-az-filters-extension.php index 8ad1710..a3eb269 100644 --- a/gravityview-az-filters-extension.php +++ b/gravityview-az-filters-extension.php @@ -12,24 +12,20 @@ * @extends \GV\Extension */ class A_Z_Entry_Filter_Extension extends Extension { - protected $_min_gravityview_version = '2.0-dev'; public function __construct() { - $this->_title = 'A-Z Filters'; - $this->_version = GRAVITYVIEW_AZ_FILTER_VERSION; - $this->_text_domain = 'gravityview-az-filters'; - $this->_path = __FILE__ ; - $this->_item_id = 266; - $this->plugin_file = GRAVITYVIEW_AZ_FILTER_FILE; - $this->plugin_version = GRAVITYVIEW_AZ_FILTER_VERSION; + $this->_title = 'A-Z Filters'; + $this->_version = GRAVITYVIEW_AZ_FILTER_VERSION; + $this->_text_domain = 'gravityview-az-filters'; + $this->_path = __FILE__ ; + $this->_item_id = 266; parent::__construct(); } public function add_hooks() { - // Load widget add_action( 'init', array( $this, 'register_az_entry_filter_widget' ) ); @@ -90,7 +86,6 @@ public function print_scripts( $hook ) { * @return void */ function print_styles() { - // Need to filter the CSS to load only when required. wp_enqueue_style( 'gravityview_az_entry_filter', GRAVITYVIEW_AZ_FILTER_URL . '/assets/css/gravityview-az-filters.css' ); } diff --git a/gravityview-az-filters.php b/gravityview-az-filters.php index a0504d8..9679153 100644 --- a/gravityview-az-filters.php +++ b/gravityview-az-filters.php @@ -3,7 +3,7 @@ * Plugin Name: GravityView - A-Z Filters Extension * Plugin URI: https://www.gravitykit.com/extensions/a-z-filter/ * Description: Filter your entries by letters of the alphabet. - * Version: 1.4.1 + * Version: 1.4.2 * Author: GravityKit * Author URI: https://www.gravitykit.com * Text Domain: gravityview-az-filters @@ -16,7 +16,7 @@ } // Exit if accessed directly /** @since 1.2 */ -define( 'GRAVITYVIEW_AZ_FILTER_VERSION', '1.4.1' ); +define( 'GRAVITYVIEW_AZ_FILTER_VERSION', '1.4.2 ' ); /** @since 1.3.2 */ define( 'GRAVITYVIEW_AZ_FILTER_FILE', __FILE__ ); diff --git a/readme.txt b/readme.txt index 3c191b5..bfe2de7 100644 --- a/readme.txt +++ b/readme.txt @@ -1,7 +1,7 @@ === GravityView - A-Z Filters Extension === Tags: gravityview Requires at least: 4.3 -Tested up to: 6.0.2 +Tested up to: 6.7.1 Stable tag: trunk Contributors: The GravityKit Team License: GPL 3 or higher @@ -16,6 +16,13 @@ Alphabetically filter your entries by letters of the alphabet. == Changelog == += 1.4.2 on January 16, 2025 = + +This update improves compatibility with PHP 8.2 or newer. + +#### 🐛 Fixed +* PHP 8.2 deprecation notices. + = 1.4.1 on June 6, 2024 = This release addresses a minor issue with the A-Z Filters widget.