Plugin Directory

Changeset 3438853


Ignore:
Timestamp:
01/13/2026 05:28:56 PM (3 months ago)
Author:
samukbg
Message:

Tagging version 1.0.9

Location:
rss-to-post-generator
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • rss-to-post-generator/tags/1.0.9/readme.txt

    r3438847 r3438853  
    138138== Changelog ==
    139139
     140= 1.0.9 =
     141* Fixing critical php error.
     142
     143= 1.0.8 =
     144* Updated plugin version and minor improvements.
     145
    140146= 1.0.7 =
    141147* **CRITICAL FIX: Automated posting now works correctly with Run Now and toggle features**
     
    148154* Enhanced logging to track which feeds successfully posted articles
    149155* **NEW: Post2Podcast cross-promotion section** - Discover our companion podcast creation plugin
    150 
    151 = 1.0.8 =
    152 * Updated plugin version and minor improvements.
    153156
    154157= 1.0.6 =
  • rss-to-post-generator/tags/1.0.9/rss2post.php

    r3438847 r3438853  
    33 * Plugin Name: RSS to Post Generator
    44 * Description: Generate blog posts from RSS feeds using AI content generation
    5  * Version: 1.0.8
     5 * Version: 1.0.9
    66 * Author: Samuel Bezerra Gomes
    77 * License: GPL v2 or later
     
    1515
    1616// Define plugin constants
    17 define('RSS2POST_VERSION', '1.0.8');
     17define('RSS2POST_VERSION', '1.0.9');
    1818define('RSS2POST_PLUGIN_DIR', plugin_dir_path(__FILE__));
    1919define('RSS2POST_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    2626
    2727// Initialize the plugin
    28 function rss2post_init() {
    29     new RSS2Post_Admin();
    30     new RSS2Post_API();
     28if (!function_exists('rss2post_init')) {
     29    function rss2post_init() {
     30        new RSS2Post_Admin();
     31        new RSS2Post_API();
     32    }
    3133}
    3234add_action('plugins_loaded', 'rss2post_init');
  • rss-to-post-generator/trunk/readme.txt

    r3438847 r3438853  
    138138== Changelog ==
    139139
     140= 1.0.9 =
     141* Fixing critical php error.
     142
     143= 1.0.8 =
     144* Updated plugin version and minor improvements.
     145
    140146= 1.0.7 =
    141147* **CRITICAL FIX: Automated posting now works correctly with Run Now and toggle features**
     
    148154* Enhanced logging to track which feeds successfully posted articles
    149155* **NEW: Post2Podcast cross-promotion section** - Discover our companion podcast creation plugin
    150 
    151 = 1.0.8 =
    152 * Updated plugin version and minor improvements.
    153156
    154157= 1.0.6 =
  • rss-to-post-generator/trunk/rss2post.php

    r3438847 r3438853  
    33 * Plugin Name: RSS to Post Generator
    44 * Description: Generate blog posts from RSS feeds using AI content generation
    5  * Version: 1.0.8
     5 * Version: 1.0.9
    66 * Author: Samuel Bezerra Gomes
    77 * License: GPL v2 or later
     
    1515
    1616// Define plugin constants
    17 define('RSS2POST_VERSION', '1.0.8');
     17define('RSS2POST_VERSION', '1.0.9');
    1818define('RSS2POST_PLUGIN_DIR', plugin_dir_path(__FILE__));
    1919define('RSS2POST_PLUGIN_URL', plugin_dir_url(__FILE__));
     
    2626
    2727// Initialize the plugin
    28 function rss2post_init() {
    29     new RSS2Post_Admin();
    30     new RSS2Post_API();
     28if (!function_exists('rss2post_init')) {
     29    function rss2post_init() {
     30        new RSS2Post_Admin();
     31        new RSS2Post_API();
     32    }
    3133}
    3234add_action('plugins_loaded', 'rss2post_init');
Note: See TracChangeset for help on using the changeset viewer.