Changeset 3368930
- Timestamp:
- 09/27/2025 05:06:53 PM (6 months ago)
- Location:
- wpecounter
- Files:
-
- 40 added
- 3 edited
-
tags/2.1.1 (added)
-
tags/2.1.1/.gitignore (added)
-
tags/2.1.1/LICENSE (added)
-
tags/2.1.1/README.md (added)
-
tags/2.1.1/assets (added)
-
tags/2.1.1/assets/css (added)
-
tags/2.1.1/assets/css/settings.css (added)
-
tags/2.1.1/assets/js (added)
-
tags/2.1.1/assets/js/reset-views.js (added)
-
tags/2.1.1/assets/js/settings.js (added)
-
tags/2.1.1/block.json (added)
-
tags/2.1.1/build (added)
-
tags/2.1.1/build/index.asset.php (added)
-
tags/2.1.1/build/index.js (added)
-
tags/2.1.1/includes (added)
-
tags/2.1.1/includes/class-views.php (added)
-
tags/2.1.1/includes/functions.php (added)
-
tags/2.1.1/includes/plugin-utils.php (added)
-
tags/2.1.1/includes/scripts.php (added)
-
tags/2.1.1/includes/settings.php (added)
-
tags/2.1.1/includes/version.php (added)
-
tags/2.1.1/includes/widget.php (added)
-
tags/2.1.1/index.php (added)
-
tags/2.1.1/languages (added)
-
tags/2.1.1/languages/wpecounter-en_US.pot (added)
-
tags/2.1.1/languages/wpecounter-es_ES.mo (added)
-
tags/2.1.1/languages/wpecounter-es_ES.po (added)
-
tags/2.1.1/languages/wpecounter-sr_RS.mo (added)
-
tags/2.1.1/languages/wpecounter-sr_RS.po (added)
-
tags/2.1.1/package-lock.json (added)
-
tags/2.1.1/package.json (added)
-
tags/2.1.1/readme.txt (added)
-
tags/2.1.1/screenshot-1.png (added)
-
tags/2.1.1/screenshot-2.png (added)
-
tags/2.1.1/screenshot-3.png (added)
-
tags/2.1.1/screenshot-4.png (added)
-
tags/2.1.1/src (added)
-
tags/2.1.1/src/index.js (added)
-
tags/2.1.1/src/style-index.css (added)
-
tags/2.1.1/wpecounter.php (added)
-
trunk/includes/class-views.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/wpecounter.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wpecounter/trunk/includes/class-views.php
r3311724 r3368930 416 416 $post_types = get_post_types($args, $output); 417 417 foreach ($post_types as $post_type) { 418 if ( @$cpostypes[$post_type]) {418 if (isset($cpostypes[$post_type]) && $cpostypes[$post_type]) { 419 419 add_filter('manage_edit-' . $post_type . '_columns', array($this, 'posts_columns_id'), 10); 420 420 add_action('manage_' . $post_type . '_posts_custom_column', array($this, 'posts_custom_id_columns'), 10, 2); -
wpecounter/trunk/readme.txt
r3311724 r3368930 6 6 Tested up to: 6.8.2 7 7 Requires PHP: 5.6 8 Stable tag: 2.1 8 Stable tag: 2.1.1 9 9 License: GPLv2 10 10 … … 55 55 56 56 == Changelog == 57 58 = 2.1.1 – Sep 25, 2025 = 59 * Fixed PHP Warnings displayed in DEBUG mode for Undefined array keys of non-public post-types. 57 60 58 61 = 2.1 – Jun 13, 2025 = … … 114 117 115 118 == Upgrade Notice == 116 = 2.1 = 117 Major update: Adds Gutenberg block, per-post view metabox with reset, role-based view filtering, and tools to reset counters. Fully compatible with WP 6.8.2. 119 Fully compatible with WP 6.8.2. Fixed PHP Warnings displayed in DEBUG mode -
wpecounter/trunk/wpecounter.php
r3311724 r3368930 4 4 * Plugin URI: https://etruel.com/downloads/wpecounter 5 5 * Description: Counts visits on post lists, pages and/or custom post types. It also displays them in posts, pages or text widget content, shortcode [WPeCounter]. 6 * Version: 2.1 6 * Version: 2.1.1 7 7 * Author: Etruel Developments LLC 8 8 * Author URI: https://etruel.com … … 15 15 // Plugin version 16 16 if (!defined('WPECOUNTER_VERSION')) 17 define('WPECOUNTER_VERSION', '2.1 ');17 define('WPECOUNTER_VERSION', '2.1.1'); 18 18 19 19 if (!class_exists('WPeCounter')) :
Note: See TracChangeset
for help on using the changeset viewer.