Skip to content

Commit ecdc884

Browse files
committed
2.8.4
= 2.8.4 - 2024/07/15 = * This release has various tweaks for compatibility with WordPress 6.6 * Tweak - Tested for compatibility with WordPress 6.6 * Tweak - Validate and correct block.json based schema from WordPress Block * Tweak - Update block.json to v3 * Fix - Make page view count block work with block template and block part template
1 parent 507621d commit ecdc884

File tree

10 files changed

+212
-376
lines changed

10 files changed

+212
-376
lines changed

dist/blocks.build.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

page-views-count.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
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.8.3
5+
Version: 2.8.4
66
Requires at least: 6.0
7-
Tested up to: 6.5.3
7+
Tested up to: 6.6
88
Author: a3rev Software
99
Author URI: https://a3rev.com
1010
Text Domain: page-views-count
@@ -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.8.3' );
26+
define( 'A3_PVC_VERSION', '2.8.4' );
2727
define( 'A3_PVC_G_FONTS', false );
2828

2929
global $pvc_enable_ajax_load;
@@ -56,6 +56,7 @@
5656

5757
// Gutenberg blocks init
5858
new \A3Rev\PageViewsCount\Blocks();
59+
require 'src/blocks/stats/block.php';
5960

6061
new \A3Rev\PageViewsCount\Shortcode();
6162

readme.txt

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: wordpress page view, page view count , post views, post view count, gutenberg
44
Requires at least: 6.0
5-
Tested up to: 6.5.3
6-
Stable tag: 2.8.3
5+
Tested up to: 6.6
6+
Stable tag: 2.8.4
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -102,6 +102,13 @@ The manual installation method involves down loading our plugin and uploading it
102102

103103
== Changelog ==
104104

105+
= 2.8.4 - 2024/07/15 =
106+
* This release has various tweaks for compatibility with WordPress 6.6
107+
* Tweak - Tested for compatibility with WordPress 6.6
108+
* Tweak - Validate and correct block.json based schema from WordPress Block
109+
* Tweak - Update block.json to v3
110+
* Fix - Make page view count block work with block template and block part template
111+
105112
= 2.8.3 - 2024/05/10 =
106113
* This maintenance release has an edge case fix that means total views record is created again at 1 when a duplicate post ID exists in the database.
107114
* Tweak - Test for compatibility with WordPress 6.5.3
@@ -585,6 +592,9 @@ The manual installation method involves down loading our plugin and uploading it
585592

586593
== Upgrade Notice ==
587594

595+
= 2.8.4 =
596+
This release has various tweaks for compatibility with WordPress 6.6
597+
588598
= 2.8.3 =
589599
This maintenance release has an edge case fix that means total views record is created again at 1 when a duplicate post ID exists in the database.
590600

src/blocks.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,4 @@ updateCategory('a3rev-blocks', {
2020
icon: a3revBlocksIcon,
2121
});
2222

23-
import './blocks/stats/block';
24-
import './blocks/stats-editor/block';
23+
import './blocks/stats/block';

0 commit comments

Comments
 (0)