Plugin Directory

Changeset 3296660


Ignore:
Timestamp:
05/19/2025 04:31:02 PM (10 months ago)
Author:
slimndap
Message:

v1.31.4

Location:
jeero/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • jeero/trunk/Jeero.php

    r3296592 r3296660  
    66 * Author:          Slim & Dapper
    77 * Author URI:      https://slimndap.com
    8  * Version:         1.31.3
     8 * Version:         1.31.4
    99 * Text Domain:     jeero
    1010 *
     
    2424 *
    2525 * Defines plugin constants (version, path, URI), loads the main Jeero loader,
    26  * and seeds the first Inbox pickup into WP-Cron. Calling schedule_next_pickup()
     26 * registers calendar import filters, and seeds the first Inbox pickup into WP-Cron.
     27 * Calling add_import_filters() here ensures calendar import callbacks are attached
     28 * before any inbox items are processed. Calling schedule_next_pickup()
    2729 * on every init is safe (it no-ops if an event is already scheduled) and
    2830 * ensures that WP-Cron has a job to process incoming items shortly after activation.
     
    3032add_action( 'init', function() {
    3133
    32     define( 'Jeero\VERSION', '1.31.3' );
     34    define( 'Jeero\VERSION', '1.31.4' );
    3335    define( 'Jeero\PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    3436    define( 'Jeero\PLUGIN_URI', plugin_dir_url( __FILE__ ) );
    3537
    3638    include_once \Jeero\PLUGIN_PATH . 'includes/Jeero.php';
     39    \Jeero\Calendars\add_import_filters();
    3740    \Jeero\Inbox\schedule_next_pickup();
    3841} );
  • jeero/trunk/includes/Calendars/Calendars.php

    r2545093 r3296660  
    1010 */
    1111$_jeero_calendars = array();
    12 
    13 add_action( 'init', __NAMESPACE__.'\add_import_filters' );
    1412
    1513/**
  • jeero/trunk/readme.txt

    r3296592 r3296660  
    267267== Upgrade Notice ==
    268268
    269 = 1.31.3 =
     269= 1.31.4 =
    270270* Fixes an issue with stalling imports.
    271271
Note: See TracChangeset for help on using the changeset viewer.