Changeset 3463749
- Timestamp:
- 02/17/2026 06:42:03 PM (45 hours ago)
- Location:
- wordpress-popular-posts
- Files:
-
- 3 edited
- 10 copied
-
tags/7.3.8 (copied) (copied from wordpress-popular-posts/trunk)
-
tags/7.3.8/assets/css/wpp.css (copied) (copied from wordpress-popular-posts/trunk/assets/css/wpp.css)
-
tags/7.3.8/assets/js/chart.js (copied) (copied from wordpress-popular-posts/trunk/assets/js/chart.js)
-
tags/7.3.8/i18n/wordpress-popular-posts.pot (copied) (copied from wordpress-popular-posts/trunk/i18n/wordpress-popular-posts.pot)
-
tags/7.3.8/readme.txt (copied) (copied from wordpress-popular-posts/trunk/readme.txt) (3 diffs)
-
tags/7.3.8/src/Admin/admin-page.php (copied) (copied from wordpress-popular-posts/trunk/src/Admin/admin-page.php)
-
tags/7.3.8/src/Admin/screen-stats.php (copied) (copied from wordpress-popular-posts/trunk/src/Admin/screen-stats.php)
-
tags/7.3.8/src/Output.php (copied) (copied from wordpress-popular-posts/trunk/src/Output.php) (1 diff)
-
tags/7.3.8/src/Settings.php (copied) (copied from wordpress-popular-posts/trunk/src/Settings.php)
-
tags/7.3.8/wordpress-popular-posts.php (copied) (copied from wordpress-popular-posts/trunk/wordpress-popular-posts.php) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/src/Output.php (modified) (1 diff)
-
trunk/wordpress-popular-posts.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wordpress-popular-posts/tags/7.3.8/readme.txt
r3461887 r3463749 6 6 Tested up to: 6.9.1 7 7 Requires PHP: 7.4 8 Stable tag: 7.3. 78 Stable tag: 7.3.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 * **Custom themes** - Out of the box, WP Popular Posts includes some themes so you can style your popular posts list (see [Widget Themes](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list#themes) for more details). 30 30 * **Use your own layout!** - WPP is flexible enough to let you customize the look and feel of your popular posts! (see [customizing WPP's HTML markup](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#how-can-i-use-my-own-html-markup-with-your-plugin) and [How to style WP Popular Posts](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list) for more.) 31 * ** Advanced caching features!** - WP Popular Posts includes a few options to make sure your site's performance stays as good as ever! (see [Performance](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more details.)32 * **REST API Support** - Embed your popular posts in your (web) app! (see [REST API Endpoints](https://github.com/cabrerahector/wordpress-popular-posts/wiki/8.-REST-API-Endpoints) for more.)31 * **Performance Tools!** - WP Popular Posts includes a few options to make sure your site's performance stays as good as ever! (see [Performance](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more details.) 32 * **REST API support** - Embed your popular posts in your (web) app! (see [REST API Endpoints](https://github.com/cabrerahector/wordpress-popular-posts/wiki/8.-REST-API-Endpoints) for more.) 33 33 * **Elementor support** - Are you building sites with Elementor? There's a popular posts widget for it too! 34 34 * **Disqus support** - Sort your popular posts by Disqus comments count! … … 116 116 117 117 == Changelog == 118 119 = 7.3.8 = 120 121 - Fixes a character encoding issue that can happen under some circumstances (props to qwe987299 for the report!) 122 123 [Release notes](https://cabrerahector.com/wordpress/wordpress-popular-posts-7-3-experimental-elementor-support/#7.3.8) 118 124 119 125 = 7.3.7 = -
wordpress-popular-posts/tags/7.3.8/src/Output.php
r3461887 r3463749 239 239 240 240 // Remove excess line jumps 241 $this->output = preg_replace('/\R+/', "\n", $this->output); 241 // @TODO 242 // Causes encoding artifacts in some languages 243 // See: https://wordpress.org/support/topic/encoding-issue-with-titles-and-excerpts-in-wpp-shortcode/ 244 // Using the /u modifier may fix this, requires further testing 245 // $this->output = preg_replace('/\R+/', "\n", $this->output); 242 246 243 247 // Sanitize HTML -
wordpress-popular-posts/tags/7.3.8/wordpress-popular-posts.php
r3461887 r3463749 17 17 * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/ 18 18 * Description: A highly customizable plugin that displays your most popular posts. 19 * Version: 7.3. 719 * Version: 7.3.8 20 20 * Requires at least: 6.2 21 21 * Requires PHP: 7.4 … … 32 32 } 33 33 34 define('WPP_VERSION', '7.3. 7');34 define('WPP_VERSION', '7.3.8'); 35 35 36 36 $wpp_main_plugin_file = __FILE__; -
wordpress-popular-posts/trunk/readme.txt
r3461887 r3463749 6 6 Tested up to: 6.9.1 7 7 Requires PHP: 7.4 8 Stable tag: 7.3. 78 Stable tag: 7.3.8 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 29 29 * **Custom themes** - Out of the box, WP Popular Posts includes some themes so you can style your popular posts list (see [Widget Themes](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list#themes) for more details). 30 30 * **Use your own layout!** - WPP is flexible enough to let you customize the look and feel of your popular posts! (see [customizing WPP's HTML markup](https://github.com/cabrerahector/wordpress-popular-posts/wiki/5.-FAQ#how-can-i-use-my-own-html-markup-with-your-plugin) and [How to style WP Popular Posts](https://github.com/cabrerahector/wordpress-popular-posts/wiki/6.-Styling-the-list) for more.) 31 * ** Advanced caching features!** - WP Popular Posts includes a few options to make sure your site's performance stays as good as ever! (see [Performance](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more details.)32 * **REST API Support** - Embed your popular posts in your (web) app! (see [REST API Endpoints](https://github.com/cabrerahector/wordpress-popular-posts/wiki/8.-REST-API-Endpoints) for more.)31 * **Performance Tools!** - WP Popular Posts includes a few options to make sure your site's performance stays as good as ever! (see [Performance](https://github.com/cabrerahector/wordpress-popular-posts/wiki/7.-Performance) for more details.) 32 * **REST API support** - Embed your popular posts in your (web) app! (see [REST API Endpoints](https://github.com/cabrerahector/wordpress-popular-posts/wiki/8.-REST-API-Endpoints) for more.) 33 33 * **Elementor support** - Are you building sites with Elementor? There's a popular posts widget for it too! 34 34 * **Disqus support** - Sort your popular posts by Disqus comments count! … … 116 116 117 117 == Changelog == 118 119 = 7.3.8 = 120 121 - Fixes a character encoding issue that can happen under some circumstances (props to qwe987299 for the report!) 122 123 [Release notes](https://cabrerahector.com/wordpress/wordpress-popular-posts-7-3-experimental-elementor-support/#7.3.8) 118 124 119 125 = 7.3.7 = -
wordpress-popular-posts/trunk/src/Output.php
r3461887 r3463749 239 239 240 240 // Remove excess line jumps 241 $this->output = preg_replace('/\R+/', "\n", $this->output); 241 // @TODO 242 // Causes encoding artifacts in some languages 243 // See: https://wordpress.org/support/topic/encoding-issue-with-titles-and-excerpts-in-wpp-shortcode/ 244 // Using the /u modifier may fix this, requires further testing 245 // $this->output = preg_replace('/\R+/', "\n", $this->output); 242 246 243 247 // Sanitize HTML -
wordpress-popular-posts/trunk/wordpress-popular-posts.php
r3461887 r3463749 17 17 * Plugin URI: https://wordpress.org/plugins/wordpress-popular-posts/ 18 18 * Description: A highly customizable plugin that displays your most popular posts. 19 * Version: 7.3. 719 * Version: 7.3.8 20 20 * Requires at least: 6.2 21 21 * Requires PHP: 7.4 … … 32 32 } 33 33 34 define('WPP_VERSION', '7.3. 7');34 define('WPP_VERSION', '7.3.8'); 35 35 36 36 $wpp_main_plugin_file = __FILE__;
Note: See TracChangeset
for help on using the changeset viewer.