Skip to content

Commit

Permalink
Release new version 3.2.1
Browse files Browse the repository at this point in the history
= 3.2.1 - 2024/01/18 =
* This release has a breaking bug fix that came out of the 3.2.0 major release.
* Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title.
  • Loading branch information
alextuan committed Jan 18, 2024
1 parent 1ac53c4 commit fa80c89
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions a3-portfolio.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/*
Plugin Name: a3 Portfolio
Description: Creates a beautiful fully mobile responsive, fully customizable, Google images style portfolio to showcase your work.
Version: 3.2.0
Version: 3.2.1
Author: a3rev Software
Author URI: https://a3rev.com/
Requires at least: 6.0
Expand Down Expand Up @@ -35,7 +35,7 @@

define( 'A3_PORTFOLIO_KEY', 'a3_portfolios' );
define( 'A3_PORTFOLIO_PREFIX', 'a3_portfolio_' );
define( 'A3_PORTFOLIO_VERSION', '3.2.0' );
define( 'A3_PORTFOLIO_VERSION', '3.2.1' );
define( 'A3_PORTFOLIO_G_FONTS', true );

if ( version_compare( PHP_VERSION, '5.6.0', '>=' ) ) {
Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
== Changelog ==

= 3.2.1 - 2024/01/18 =
* This release has a breaking bug fix that came out of the 3.2.0 major release.
* Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title.

= 3.2.0 - 2024/01/12 =
* This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts.
* Feature - new Portfolio Tags Meta block for use on Content or Single Portfolio Block Page
Expand Down
2 changes: 1 addition & 1 deletion includes/frontend/class-a3-portfolio-template-loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ public function portfolio_category_template( $content = '' ) {
}

public function a3_portfolio_filter_template() {
add_filter( 'the_title', array( $this, 'a3_portfolio_filter_content_template' ), 1000 );
add_filter( 'the_title', array( $this, 'a3_portfolio_title_filter_content_template' ), 1000 );
}

public function a3_portfolio_title_filter_content_template( $title ) {
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Contributors: a3rev, nguyencongtuan
Tags: a3 Portfolio, Portfolio, Post Portfolio, Showcase, Image Showcase, Image Portfolio, Gallery, Photo Gallery, Image Gallery
Requires at least: 6.0
Tested up to: 6.4.2
Stable tag: 3.2.0
Stable tag: 3.2.1
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

Expand Down Expand Up @@ -167,6 +167,10 @@ Automatic installation is the easiest option as WordPress handles the file trans

== Changelog ==

= 3.2.1 - 2024/01/18 =
* This release has a breaking bug fix that came out of the 3.2.0 major release.
* Fix - Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title.

= 3.2.0 - 2024/01/12 =
* This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts.
* Feature - new Portfolio Tags Meta block for use on Content or Single Portfolio Block Page
Expand Down Expand Up @@ -786,6 +790,9 @@ Automatic installation is the easiest option as WordPress handles the file trans

== Upgrade Notice ==

= 3.2.1 =
This release has a breaking bug fix that came out of the 3.2.0 major release.

= 3.2.0 =
This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts.

Expand Down

0 comments on commit fa80c89

Please sign in to comment.