Skip to content

Commit 131a67e

Browse files
committed
chore(release): 5.1.0
#### [Version 5.1.0](v5.0.10...v5.1.0) (2025-08-20) ### New Features - Added debug logging system for better troubleshooting - Custom cron schedules - create and manage custom import schedules (PRO) - OpenAI model selection per action in the Importer for granular control - URL-based filtering to exclude specific domains from feeds - YouTube Shorts embedding support in imported posts - Aspect ratio controls for thumbnail images - Improved fallback image options per import job ### Improvements - Major UI overhaul for the importer with tabbed interface and better organization - Enhanced feed validation system - Redesigned Dashboard (formerly Support page) - Improved onboarding and import setup experience - Better feed groups management interface - More features available in the free version - Added helper text for proxy and user-agent settings ### Bug Fixes - Fixed categories settings changing when installing the PRO version - Fixed action popup not closing when clicking outside - Fixed HTML tags in post titles when using paraphrasing - Fixed fallback images being ignored in classic block - Fixed integration tab showing incorrect license status - Fixed broken images in Feedzy Loop - Fixed various UI alignment and layout issues
1 parent 276e9c4 commit 131a67e

File tree

7 files changed

+149
-85
lines changed

7 files changed

+149
-85
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
#### [Version 5.1.0](https://github.com/Codeinwp/feedzy-rss-feeds/compare/v5.0.10...v5.1.0) (2025-08-20)
2+
3+
### New Features
4+
5+
- Added debug logging system for better troubleshooting
6+
- Custom cron schedules - create and manage custom import schedules (PRO)
7+
- OpenAI model selection per action in the Importer for granular control
8+
- URL-based filtering to exclude specific domains from feeds
9+
- YouTube Shorts embedding support in imported posts
10+
- Aspect ratio controls for thumbnail images
11+
- Improved fallback image options per import job
12+
13+
### Improvements
14+
15+
- Major UI overhaul for the importer with tabbed interface and better organization
16+
- Enhanced feed validation system
17+
- Redesigned Dashboard (formerly Support page)
18+
- Improved onboarding and import setup experience
19+
- Better feed groups management interface
20+
- More features available in the free version
21+
- Added helper text for proxy and user-agent settings
22+
23+
### Bug Fixes
24+
25+
- Fixed categories settings changing when installing the PRO version
26+
- Fixed action popup not closing when clicking outside
27+
- Fixed HTML tags in post titles when using paraphrasing
28+
- Fixed fallback images being ignored in classic block
29+
- Fixed integration tab showing incorrect license status
30+
- Fixed broken images in Feedzy Loop
31+
- Fixed various UI alignment and layout issues
32+
133
##### [Version 5.0.10](https://github.com/Codeinwp/feedzy-rss-feeds/compare/v5.0.9...v5.0.10) (2025-07-31)
234

335
- Fixed URL processing error for images containing optimization parameters.

css/feedzy-rss-feeds.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* feedzy-rss-feeds.css
33
* Feedzy RSS Feed
44
* Copyright: (c) 2016 Themeisle, themeisle.com
5-
* Version: 5.0.10
5+
* Version: 5.1.0
66
* Plugin Name: FEEDZY RSS Feeds
77
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds/
88
* Author: Themeisle

feedzy-rss-feed.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Plugin Name: Feedzy RSS Feeds Lite
1616
* Plugin URI: https://themeisle.com/plugins/feedzy-rss-feeds/
1717
* Description: A small and lightweight RSS aggregator plugin. Fast and very easy to use, it allows you to aggregate multiple RSS feeds into your WordPress site through fully customizable shortcodes & widgets.
18-
* Version: 5.0.10
18+
* Version: 5.1.0
1919
* Author: Themeisle
2020
* Author URI: http://themeisle.com
2121
* License: GPL-2.0+

includes/feedzy-rss-feeds.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static function instance() {
104104
*/
105105
public function init() {
106106
self::$plugin_name = 'feedzy-rss-feeds';
107-
self::$version = '5.0.10';
107+
self::$version = '5.1.0';
108108
self::$instance->load_dependencies();
109109
self::$instance->define_admin_hooks();
110110
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "feedzy-rss-feeds",
3-
"version": "5.0.10",
3+
"version": "5.1.0",
44
"description": "Feedzy RSS Feeds - lite version",
55
"repository": {
66
"type": "git",

readme.md

Lines changed: 81 additions & 77 deletions
Large diffs are not rendered by default.

readme.txt

Lines changed: 32 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Tags: rss aggregator, news aggregator, autoblogging, feed to post, rss import
44
Requires at least: 6.0
55
Requires PHP: 7.2
66
Tested up to: 6.8
7-
Stable tag: 5.0.10
7+
Stable tag: 5.1.0
88
License: GPLv2 or later
99
License URI: http://www.gnu.org/licenses/gpl-2.0.html
1010

@@ -469,9 +469,37 @@ You have to check first if your feed is valid. Please test it here: https://vali
469469

470470
== Changelog ==
471471

472-
##### [Version 5.0.10](https://github.com/Codeinwp/feedzy-rss-feeds/compare/v5.0.9...v5.0.10) (2025-07-31)
473-
474-
- Fixed URL processing error for images containing optimization parameters.
472+
#### [Version 5.1.0](https://github.com/Codeinwp/feedzy-rss-feeds/compare/v5.0.10...v5.1.0) (2025-08-20)
473+
474+
### New Features
475+
476+
- Added debug logging system for better troubleshooting
477+
- Custom cron schedules - create and manage custom import schedules (PRO)
478+
- OpenAI model selection per action in the Importer for granular control
479+
- URL-based filtering to exclude specific domains from feeds
480+
- YouTube Shorts embedding support in imported posts
481+
- Aspect ratio controls for thumbnail images
482+
- Improved fallback image options per import job
483+
484+
### Improvements
485+
486+
- Major UI overhaul for the importer with tabbed interface and better organization
487+
- Enhanced feed validation system
488+
- Redesigned Dashboard (formerly Support page)
489+
- Improved onboarding and import setup experience
490+
- Better feed groups management interface
491+
- More features available in the free version
492+
- Added helper text for proxy and user-agent settings
493+
494+
### Bug Fixes
495+
496+
- Fixed categories settings changing when installing the PRO version
497+
- Fixed action popup not closing when clicking outside
498+
- Fixed HTML tags in post titles when using paraphrasing
499+
- Fixed fallback images being ignored in classic block
500+
- Fixed integration tab showing incorrect license status
501+
- Fixed broken images in Feedzy Loop
502+
- Fixed various UI alignment and layout issues
475503

476504

477505

0 commit comments

Comments
 (0)