Skip to content

Commit d0af0fd

Browse files
committed
Release new version 2.4.13
= 2.4.13 - 2021/11/16 = * This maintenance release has a bug fix for compatibility with Gutenberg 10.8 and PHP 8.x * Tweak - Test for compatibility with PHP 8.x * Tweak - Test for compatibility with Gutenberg 10.8 * Fix - Change block_categories to block_categories_all for work on Gutenberg 10.8
1 parent 0cf5051 commit d0af0fd

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

page-views-count.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/*
33
Plugin Name: Page Views Count
44
Description: Show front end users all time views and views today on posts, pages, index pages and custom post types with the Page Views Count Plugin. Use the Page Views Count function to add page views to any content type or object created by your theme or plugins.
5-
Version: 2.4.12
5+
Version: 2.4.13
66
Requires at least: 5.0
77
Tested up to: 5.8
88
Author: a3rev Software
@@ -23,7 +23,7 @@
2323

2424
define( 'A3_PVC_KEY', 'a3_page_view_count' );
2525
define( 'A3_PVC_PREFIX', 'wp_pvc_' );
26-
define( 'A3_PVC_VERSION', '2.4.12' );
26+
define( 'A3_PVC_VERSION', '2.4.13' );
2727
define( 'A3_PVC_G_FONTS', false );
2828

2929
use \A3Rev\PageViewsCount\FrameWork;

readme.txt

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: wordpress page view, page view count , post views, post view count, gutenberg
44
Requires at least: 5.0
55
Tested up to: 5.8
6-
Stable tag: 2.4.12
6+
Stable tag: 2.4.13
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -103,6 +103,12 @@ The manual installation method involves down loading our plugin and uploading it
103103

104104
== Changelog ==
105105

106+
= 2.4.13 - 2021/11/16 =
107+
* This maintenance release has a bug fix for compatibility with Gutenberg 10.8 and PHP 8.x
108+
* Tweak - Test for compatibility with PHP 8.x
109+
* Tweak - Test for compatibility with Gutenberg 10.8
110+
* Fix - Change block_categories to block_categories_all for work on Gutenberg 10.8
111+
106112
= 2.4.12 - 2021/07/19 =
107113
* This maintenance release has code tweaks for WordPress 5.8 compatibility plus more Security hardening
108114
* Tweak - Test for compatibility with WordPress 5.8
@@ -473,6 +479,9 @@ The manual installation method involves down loading our plugin and uploading it
473479

474480
== Upgrade Notice ==
475481

482+
= 2.4.13 =
483+
This maintenance release has a bug fix for compatibility with Gutenberg 10.8 and PHP 8.x
484+
476485
= 2.4.12 =
477486
This maintenance release has code tweaks for WordPress 5.8 compatibility plus more Security hardening
478487

src/blocks.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function cgb_editor_assets() { // phpcs:ignore
7979

8080
public function create_a3blocks_section() {
8181

82-
add_filter( 'block_categories', function( $categories ) {
82+
add_filter( 'block_categories_all', function( $categories ) {
8383

8484
$category_slugs = wp_list_pluck( $categories, 'slug' );
8585

0 commit comments

Comments
 (0)