Plugin Directory

Changeset 3490358


Ignore:
Timestamp:
03/24/2026 08:39:49 PM (8 days ago)
Author:
mervinpraison
Message:

Update to version 1.4.0 from GitHub

Location:
praison-file-content-git
Files:
2 added
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • praison-file-content-git/tags/1.4.0/praisonpressgit.php

    r3490347 r3490358  
    33 * Plugin Name: PraisonAI Git Posts
    44 * Description: Load WordPress content from files (Markdown, JSON, YAML) without database writes, with Git-based version control
    5  * Version: 1.3.0
     5 * Version: 1.4.0
    66 * Author: MervinPraison
    77 * Author URI: https://mer.vin
     
    1313
    1414// Define constants
    15 define('PRAISON_VERSION', '1.3.0');
     15define('PRAISON_VERSION', '1.4.0');
    1616define('PRAISON_PLUGIN_DIR', __DIR__);
    1717define('PRAISON_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__)));
  • praison-file-content-git/tags/1.4.0/src/Core/Bootstrap.php

    r3490347 r3490358  
    102102        // Admin notices
    103103        add_action('admin_notices', [$this, 'showAdminNotices']);
     104       
     105        // Auto-export on publish (requires [sync] config in site-config.ini)
     106        if (file_exists(PRAISON_PLUGIN_DIR . '/src/Export/AutoExporter.php')) {
     107            $autoExporter = new \PraisonPress\Export\AutoExporter();
     108            $autoExporter->register();
     109        }
    104110    }
    105111   
  • praison-file-content-git/trunk/praisonpressgit.php

    r3490347 r3490358  
    33 * Plugin Name: PraisonAI Git Posts
    44 * Description: Load WordPress content from files (Markdown, JSON, YAML) without database writes, with Git-based version control
    5  * Version: 1.3.0
     5 * Version: 1.4.0
    66 * Author: MervinPraison
    77 * Author URI: https://mer.vin
     
    1313
    1414// Define constants
    15 define('PRAISON_VERSION', '1.3.0');
     15define('PRAISON_VERSION', '1.4.0');
    1616define('PRAISON_PLUGIN_DIR', __DIR__);
    1717define('PRAISON_PLUGIN_URL', trailingslashit(plugins_url('', __FILE__)));
  • praison-file-content-git/trunk/src/Core/Bootstrap.php

    r3490347 r3490358  
    102102        // Admin notices
    103103        add_action('admin_notices', [$this, 'showAdminNotices']);
     104       
     105        // Auto-export on publish (requires [sync] config in site-config.ini)
     106        if (file_exists(PRAISON_PLUGIN_DIR . '/src/Export/AutoExporter.php')) {
     107            $autoExporter = new \PraisonPress\Export\AutoExporter();
     108            $autoExporter->register();
     109        }
    104110    }
    105111   
Note: See TracChangeset for help on using the changeset viewer.