Plugin Directory

Changeset 3431689


Ignore:
Timestamp:
01/03/2026 02:41:22 PM (2 months ago)
Author:
ultradevs
Message:

Update to version 1.12.5 from GitHub

Location:
easy-dropbox-integration
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-dropbox-integration/tags/1.12.5/easy-dropbox-integration.php

    r3431687 r3431689  
    2323 * Plugin URI:        https://ultradevs.com/easy-dropbox-integration/
    2424 * Description:       Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily.
    25  * Version: 1.12.4
     25 * Version: 1.12.5
    2626 * Author:            ultraDevs
    2727 * Author URI:        https://ultradevs.com
     
    3535
    3636// Constant.
    37 define( 'EDBI_VERSION', '1.12.4' );
     37define( 'EDBI_VERSION', '1.12.5' );
    3838define( 'EDBI_NAME', 'Easy Dropbox Integration' );
    3939define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    117117        add_action( 'plugins_loaded', array( $this, 'on_plugins_loaded' ) );
    118118        add_action( 'edbi_loaded', array( $this, 'init' ) );
     119        add_action( 'edbi_after_init', array( $this, 'modules_manager' ) );
    119120    }
    120121
     
    218219        }
    219220
    220         // Modules.
     221        do_action( 'edbi_after_init' );
     222    }
     223
     224    /**
     225     * Modules Manager.
     226     *
     227     * @return void
     228     */
     229    public function modules_manager() {
    221230        $modules_manager = Module_Manager::get_instance();
    222231        $modules_manager->register();
    223 
    224         do_action( 'edbi_after_init' );
    225232    }
    226233
  • easy-dropbox-integration/tags/1.12.5/readme.txt

    r3431687 r3431689  
    55Requires at least: 5.3.2
    66Tested up to:      6.9
    7 Stable tag:        1.12.4
     7Stable tag:       1.12.5
    88Requires PHP:      7.4.0
    99License: GPLv2 or later
     
    147147
    148148== Changelog ==
     149
     150= 1.12.5 - 3 January, 2026 =
     151- **Fix:** Module Manager.
    149152
    150153= 1.12.4 - 3 January, 2026 =
  • easy-dropbox-integration/trunk/easy-dropbox-integration.php

    r3431687 r3431689  
    2323 * Plugin URI:        https://ultradevs.com/easy-dropbox-integration/
    2424 * Description:       Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily.
    25  * Version: 1.12.4
     25 * Version: 1.12.5
    2626 * Author:            ultraDevs
    2727 * Author URI:        https://ultradevs.com
     
    3535
    3636// Constant.
    37 define( 'EDBI_VERSION', '1.12.4' );
     37define( 'EDBI_VERSION', '1.12.5' );
    3838define( 'EDBI_NAME', 'Easy Dropbox Integration' );
    3939define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) );
     
    117117        add_action( 'plugins_loaded', array( $this, 'on_plugins_loaded' ) );
    118118        add_action( 'edbi_loaded', array( $this, 'init' ) );
     119        add_action( 'edbi_after_init', array( $this, 'modules_manager' ) );
    119120    }
    120121
     
    218219        }
    219220
    220         // Modules.
     221        do_action( 'edbi_after_init' );
     222    }
     223
     224    /**
     225     * Modules Manager.
     226     *
     227     * @return void
     228     */
     229    public function modules_manager() {
    221230        $modules_manager = Module_Manager::get_instance();
    222231        $modules_manager->register();
    223 
    224         do_action( 'edbi_after_init' );
    225232    }
    226233
  • easy-dropbox-integration/trunk/readme.txt

    r3431687 r3431689  
    55Requires at least: 5.3.2
    66Tested up to:      6.9
    7 Stable tag:        1.12.4
     7Stable tag:       1.12.5
    88Requires PHP:      7.4.0
    99License: GPLv2 or later
     
    147147
    148148== Changelog ==
     149
     150= 1.12.5 - 3 January, 2026 =
     151- **Fix:** Module Manager.
    149152
    150153= 1.12.4 - 3 January, 2026 =
Note: See TracChangeset for help on using the changeset viewer.