Changeset 3438853
- Timestamp:
- 01/13/2026 05:28:56 PM (3 months ago)
- Location:
- rss-to-post-generator
- Files:
-
- 4 edited
- 1 copied
-
tags/1.0.9 (copied) (copied from rss-to-post-generator/trunk)
-
tags/1.0.9/readme.txt (modified) (2 diffs)
-
tags/1.0.9/rss2post.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/rss2post.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rss-to-post-generator/tags/1.0.9/readme.txt
r3438847 r3438853 138 138 == Changelog == 139 139 140 = 1.0.9 = 141 * Fixing critical php error. 142 143 = 1.0.8 = 144 * Updated plugin version and minor improvements. 145 140 146 = 1.0.7 = 141 147 * **CRITICAL FIX: Automated posting now works correctly with Run Now and toggle features** … … 148 154 * Enhanced logging to track which feeds successfully posted articles 149 155 * **NEW: Post2Podcast cross-promotion section** - Discover our companion podcast creation plugin 150 151 = 1.0.8 =152 * Updated plugin version and minor improvements.153 156 154 157 = 1.0.6 = -
rss-to-post-generator/tags/1.0.9/rss2post.php
r3438847 r3438853 3 3 * Plugin Name: RSS to Post Generator 4 4 * Description: Generate blog posts from RSS feeds using AI content generation 5 * Version: 1.0. 85 * Version: 1.0.9 6 6 * Author: Samuel Bezerra Gomes 7 7 * License: GPL v2 or later … … 15 15 16 16 // Define plugin constants 17 define('RSS2POST_VERSION', '1.0. 8');17 define('RSS2POST_VERSION', '1.0.9'); 18 18 define('RSS2POST_PLUGIN_DIR', plugin_dir_path(__FILE__)); 19 19 define('RSS2POST_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 26 26 27 27 // Initialize the plugin 28 function rss2post_init() { 29 new RSS2Post_Admin(); 30 new RSS2Post_API(); 28 if (!function_exists('rss2post_init')) { 29 function rss2post_init() { 30 new RSS2Post_Admin(); 31 new RSS2Post_API(); 32 } 31 33 } 32 34 add_action('plugins_loaded', 'rss2post_init'); -
rss-to-post-generator/trunk/readme.txt
r3438847 r3438853 138 138 == Changelog == 139 139 140 = 1.0.9 = 141 * Fixing critical php error. 142 143 = 1.0.8 = 144 * Updated plugin version and minor improvements. 145 140 146 = 1.0.7 = 141 147 * **CRITICAL FIX: Automated posting now works correctly with Run Now and toggle features** … … 148 154 * Enhanced logging to track which feeds successfully posted articles 149 155 * **NEW: Post2Podcast cross-promotion section** - Discover our companion podcast creation plugin 150 151 = 1.0.8 =152 * Updated plugin version and minor improvements.153 156 154 157 = 1.0.6 = -
rss-to-post-generator/trunk/rss2post.php
r3438847 r3438853 3 3 * Plugin Name: RSS to Post Generator 4 4 * Description: Generate blog posts from RSS feeds using AI content generation 5 * Version: 1.0. 85 * Version: 1.0.9 6 6 * Author: Samuel Bezerra Gomes 7 7 * License: GPL v2 or later … … 15 15 16 16 // Define plugin constants 17 define('RSS2POST_VERSION', '1.0. 8');17 define('RSS2POST_VERSION', '1.0.9'); 18 18 define('RSS2POST_PLUGIN_DIR', plugin_dir_path(__FILE__)); 19 19 define('RSS2POST_PLUGIN_URL', plugin_dir_url(__FILE__)); … … 26 26 27 27 // Initialize the plugin 28 function rss2post_init() { 29 new RSS2Post_Admin(); 30 new RSS2Post_API(); 28 if (!function_exists('rss2post_init')) { 29 function rss2post_init() { 30 new RSS2Post_Admin(); 31 new RSS2Post_API(); 32 } 31 33 } 32 34 add_action('plugins_loaded', 'rss2post_init');
Note: See TracChangeset
for help on using the changeset viewer.