Skip to content

Commit

Permalink
Release new version 2.4.4
Browse files Browse the repository at this point in the history
= 2.4.4 - 2020/12/08 =
* This maintenance release has tweaks and a fix for compatibility with WordPress major version 5.6, PHP 7.4.8 and Gutenberg 9.4
* Tweak - Test for compatibility with PHP 7.4.8
* Tweak - Test for compatibility with WordPress 5.6
* Tweak - Test for compatibility with Gutenberg 9.4
* Fix - Update plugin framework script, remove jQuery.browser is deprecated to resolve conflict with jQuery Migrate Helper plugin
  • Loading branch information
alextuan committed Dec 8, 2020
1 parent c485e63 commit 0548bf3
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 79 deletions.
28 changes: 0 additions & 28 deletions admin/assets/js/iphone-style-checkboxes.js

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

28 changes: 0 additions & 28 deletions admin/assets/js/iphone-style-checkboxes.rtl.js

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

13 changes: 0 additions & 13 deletions admin/less/sass.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,8 @@ public function plugin_compile_less_mincss( $sass, $css_file_name = '' )
global $wp_filesystem;

$_upload_dir = wp_upload_dir();
$wp_filesystem->chmod($_upload_dir['basedir'], 0755);
if (! $wp_filesystem->is_dir($_upload_dir['basedir'] . '/sass')) {
$wp_filesystem->mkdir($_upload_dir['basedir'] . '/sass', 0755);
} else {
$wp_filesystem->chmod($_upload_dir['basedir'] . '/sass', 0755);
}

if ( trim( $css_file_name ) == '' ) $css_file_name = $this->css_file_name;
Expand All @@ -105,16 +102,6 @@ public function plugin_compile_less_mincss( $sass, $css_file_name = '' )
$wp_filesystem->copy($mixinsless, $a3rev_mixins_less, true );
}

$files = array_diff(scandir($_upload_dir['basedir'] . '/sass'), array(
'.',
'..'
));
if ($files) {
foreach ($files as $file) {
$wp_filesystem->chmod($_upload_dir['basedir'] . '/sass/' . $file, 0644);
}
}

$sass_data = '';

if ($sass != '') {
Expand Down
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.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"eject": "cgb-scripts eject"
},
"dependencies": {
"cgb-scripts": "1.13.0"
"cgb-scripts": "^1.23.1"
},
"devDependencies": {
"@svgr/webpack": "^4.3.2"
"@svgr/webpack": "^4.3.3"
}
}
8 changes: 3 additions & 5 deletions page-views-count.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@
/*
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.4.3
Version: 2.4.4
Requires at least: 5.0
Tested up to: 5.5
Tested up to: 5.6
Author: a3rev Software
Author URI: https://a3rev.com
Text Domain: page-views-count
Domain Path: /languages
WC requires at least: 3.0.0
WC tested up to: 4.3.1
License: A "Slug" license name e.g. GPL2
*/
?>
Expand All @@ -25,7 +23,7 @@

define( 'A3_PVC_KEY', 'a3_page_view_count' );
define( 'A3_PVC_PREFIX', 'wp_pvc_' );
define( 'A3_PVC_VERSION', '2.4.3' );
define( 'A3_PVC_VERSION', '2.4.4' );
define( 'A3_PVC_G_FONTS', false );

use \A3Rev\PageViewsCount\FrameWork;
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: 5.0
Tested up to: 5.5
Stable tag: 2.4.3
Tested up to: 5.6
Stable tag: 2.4.4
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl-3.0.html

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

== Changelog ==

= 2.4.4 - 2020/12/08 =
* This maintenance release has tweaks and a fix for compatibility with WordPress major version 5.6, PHP 7.4.8 and Gutenberg 9.4
* Tweak - Test for compatibility with PHP 7.4.8
* Tweak - Test for compatibility with WordPress 5.6
* Tweak - Test for compatibility with Gutenberg 9.4
* Fix - Update plugin framework script, remove jQuery.browser is deprecated to resolve conflict with jQuery Migrate Helper plugin

= 2.4.3 - 2020/08/08 =
* This maintenance release is for compatibility with WordPress major version 5.5 and WooCommerce 4.3.1.
* Tweak - Test for compatibility with WordPress 5.5
Expand Down Expand Up @@ -391,6 +398,9 @@ The manual installation method involves down loading our plugin and uploading it

== Upgrade Notice ==

= 2.4.4 =
This maintenance release has tweaks and a fix for compatibility with WordPress major version 5.6, PHP 7.4.8 and Gutenberg 9.4

= 2.4.3 =
This maintenance release is for compatibility with WordPress major version 5.5 and WooCommerce 4.3.1.

Expand Down

0 comments on commit 0548bf3

Please sign in to comment.