Skip to content

Commit

Permalink
Merge pull request #64 from GravityKit/develop
Browse files Browse the repository at this point in the history
Release 1.4.2
  • Loading branch information
mrcasual authored Jan 17, 2025
2 parents a91b63c + b140e80 commit f529865
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
15 changes: 5 additions & 10 deletions gravityview-az-filters-extension.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ) );

Expand Down Expand Up @@ -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' );
}
Expand Down
4 changes: 2 additions & 2 deletions gravityview-az-filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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__ );
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.
Expand Down

0 comments on commit f529865

Please sign in to comment.