Skip to content

Commit

Permalink
2.8.4
Browse files Browse the repository at this point in the history
= 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
  • Loading branch information
alextuan committed Jul 15, 2024
1 parent 507621d commit ecdc884
Show file tree
Hide file tree
Showing 10 changed files with 212 additions and 376 deletions.
2 changes: 1 addition & 1 deletion dist/blocks.build.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions page-views-count.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
/*
Plugin Name: Page Views Count
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.
Version: 2.8.3
Version: 2.8.4
Requires at least: 6.0
Tested up to: 6.5.3
Tested up to: 6.6
Author: a3rev Software
Author URI: https://a3rev.com
Text Domain: page-views-count
Expand All @@ -23,7 +23,7 @@

define( 'A3_PVC_KEY', 'a3_page_view_count' );
define( 'A3_PVC_PREFIX', 'wp_pvc_' );
define( 'A3_PVC_VERSION', '2.8.3' );
define( 'A3_PVC_VERSION', '2.8.4' );
define( 'A3_PVC_G_FONTS', false );

global $pvc_enable_ajax_load;
Expand Down Expand Up @@ -56,6 +56,7 @@

// Gutenberg blocks init
new \A3Rev\PageViewsCount\Blocks();
require 'src/blocks/stats/block.php';

new \A3Rev\PageViewsCount\Shortcode();

Expand Down
14 changes: 12 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: a3rev, a3rev Software, nguyencongtuan
Tags: wordpress page view, page view count , post views, post view count, gutenberg
Requires at least: 6.0
Tested up to: 6.5.3
Stable tag: 2.8.3
Tested up to: 6.6
Stable tag: 2.8.4
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 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

= 2.8.3 - 2024/05/10 =
* 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.
* Tweak - Test for compatibility with WordPress 6.5.3
Expand Down Expand Up @@ -585,6 +592,9 @@ The manual installation method involves down loading our plugin and uploading it

== Upgrade Notice ==

= 2.8.4 =
This release has various tweaks for compatibility with WordPress 6.6

= 2.8.3 =
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.

Expand Down
3 changes: 1 addition & 2 deletions src/blocks.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ updateCategory('a3rev-blocks', {
icon: a3revBlocksIcon,
});

import './blocks/stats/block';
import './blocks/stats-editor/block';
import './blocks/stats/block';
Loading

0 comments on commit ecdc884

Please sign in to comment.