Plugin Directory

Changeset 3470736


Ignore:
Timestamp:
02/26/2026 11:04:52 PM (12 days ago)
Author:
ultradevs
Message:

Update to version 2.0.1 from GitHub

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

Legend:

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

    r3465437 r3470736  
    2828 * Plugin URI:        https://ultradevs.com/easy-dropbox-integration/
    2929 * Description:       Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily.
    30  * Version: 2.0.0
     30 * Version: 2.0.1
    3131 * Author:            ultraDevs
    3232 * Author URI:        https://ultradevs.com
     
    4141
    4242// Constant.
    43 define( 'EDBI_VERSION', '2.0.0' );
     43define( 'EDBI_VERSION', '2.0.1' );
    4444define( 'EDBI_NAME', 'Easy Dropbox Integration' );
    4545define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) );
  • easy-dropbox-integration/tags/2.0.1/includes/Ajax.php

    r3465437 r3470736  
    147147        }
    148148
    149         if ( ! current_user_can( 'manage_options' ) ) {
    150             wp_send_json_error( array( 'message' => __( 'You do not have permission to perform this action', 'easy-dropbox-integration' ) ) );
    151         }
     149        // if ( ! current_user_can( 'manage_options' ) ) {
     150        // wp_send_json_error( array( 'message' => __( 'You do not have permission to perform this action', 'easy-dropbox-integration' ) ) );
     151        // }
    152152
    153153        // Set current shortcode data if available.
  • easy-dropbox-integration/tags/2.0.1/includes/Review.php

    r3424111 r3470736  
    101101        $nonce = wp_create_nonce( 'edbi_admin_action_nonce' );
    102102
    103         $review_url = 'https://wordpress.org/support/plugin/easy-dropbox-integration/reviews/?filter=5#new-post';
     103        $review_url = 'https://wordpress.org/support/plugin/easy-dropbox-integration/reviews';
    104104
    105105        $review_later_link       = add_query_arg(
  • easy-dropbox-integration/tags/2.0.1/includes/functions.php

    r3465437 r3470736  
    44 *
    55 * @package EDBI
    6  * @author ultraDevs <contact@ultradevs.com>
     6 * @author ultraDevs <hello@ultradevs.com>
    77 * @license GPL-2.0+
    88 * @link https://ultradevs.com
     
    331331
    332332/**
     333 * Get Active Account ID
     334 *
     335 * @return string Account ID or empty string.
     336 */
     337function edbi_get_active_account_id() {
     338    $active_account = Account::get_active_account();
     339
     340    if ( ! $active_account ) {
     341        return '';
     342    }
     343
     344    return $active_account['id'];
     345}
     346
     347/**
    333348 * Cleanup Account Data
    334349 *
  • easy-dropbox-integration/tags/2.0.1/readme.txt

    r3465437 r3470736  
    33Donate link: https://ultradevs.com/donate
    44Tags: dropbox, file manager, embed, shortcode, form
    5 Requires at least: 5.3.2
    6 Tested up to:      6.9
    7 Stable tag:       2.0.0
     5Requires at least: 6.2
     6Tested up to:      6.9.1
     7Stable tag:       2.0.1
    88Requires PHP:      7.4.0
    99License: GPLv2 or later
     
    168168== Changelog ==
    169169
     170= 2.0.1 - 27 February, 2026 =
     171- **Fix:** Ajax Error.
     172
    170173= 2.0.0 - 20 February, 2026 =
    171174- **Fix:** Some Issues.
  • easy-dropbox-integration/tags/2.0.1/vendor/composer/installed.php

    r3366399 r3470736  
    22    'root' => array(
    33        'name' => 'ultradevs/easy-dropbox-integration',
    4         'pretty_version' => 'dev-develop',
    5         'version' => 'dev-develop',
    6         'reference' => '4219912f2fdda6a17ff4cfb22372fd8a9364f27b',
     4        'pretty_version' => 'dev-main',
     5        'version' => 'dev-main',
     6        'reference' => 'efcacd7a0771b20043811ecb76dfeda0694873c3',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    162162        ),
    163163        'ultradevs/easy-dropbox-integration' => array(
    164             'pretty_version' => 'dev-develop',
    165             'version' => 'dev-develop',
    166             'reference' => '4219912f2fdda6a17ff4cfb22372fd8a9364f27b',
     164            'pretty_version' => 'dev-main',
     165            'version' => 'dev-main',
     166            'reference' => 'efcacd7a0771b20043811ecb76dfeda0694873c3',
    167167            'type' => 'library',
    168168            'install_path' => __DIR__ . '/../../',
  • easy-dropbox-integration/trunk/easy-dropbox-integration.php

    r3465437 r3470736  
    2828 * Plugin URI:        https://ultradevs.com/easy-dropbox-integration/
    2929 * Description:       Easy DropBox Integration - Browse, Upload, Manage Your Dropbox Files from Your Website Easily.
    30  * Version: 2.0.0
     30 * Version: 2.0.1
    3131 * Author:            ultraDevs
    3232 * Author URI:        https://ultradevs.com
     
    4141
    4242// Constant.
    43 define( 'EDBI_VERSION', '2.0.0' );
     43define( 'EDBI_VERSION', '2.0.1' );
    4444define( 'EDBI_NAME', 'Easy Dropbox Integration' );
    4545define( 'EDBI_DIR_PATH', plugin_dir_path( __FILE__ ) );
  • easy-dropbox-integration/trunk/includes/Ajax.php

    r3465437 r3470736  
    147147        }
    148148
    149         if ( ! current_user_can( 'manage_options' ) ) {
    150             wp_send_json_error( array( 'message' => __( 'You do not have permission to perform this action', 'easy-dropbox-integration' ) ) );
    151         }
     149        // if ( ! current_user_can( 'manage_options' ) ) {
     150        // wp_send_json_error( array( 'message' => __( 'You do not have permission to perform this action', 'easy-dropbox-integration' ) ) );
     151        // }
    152152
    153153        // Set current shortcode data if available.
  • easy-dropbox-integration/trunk/includes/Review.php

    r3424111 r3470736  
    101101        $nonce = wp_create_nonce( 'edbi_admin_action_nonce' );
    102102
    103         $review_url = 'https://wordpress.org/support/plugin/easy-dropbox-integration/reviews/?filter=5#new-post';
     103        $review_url = 'https://wordpress.org/support/plugin/easy-dropbox-integration/reviews';
    104104
    105105        $review_later_link       = add_query_arg(
  • easy-dropbox-integration/trunk/includes/functions.php

    r3465437 r3470736  
    44 *
    55 * @package EDBI
    6  * @author ultraDevs <contact@ultradevs.com>
     6 * @author ultraDevs <hello@ultradevs.com>
    77 * @license GPL-2.0+
    88 * @link https://ultradevs.com
     
    331331
    332332/**
     333 * Get Active Account ID
     334 *
     335 * @return string Account ID or empty string.
     336 */
     337function edbi_get_active_account_id() {
     338    $active_account = Account::get_active_account();
     339
     340    if ( ! $active_account ) {
     341        return '';
     342    }
     343
     344    return $active_account['id'];
     345}
     346
     347/**
    333348 * Cleanup Account Data
    334349 *
  • easy-dropbox-integration/trunk/readme.txt

    r3465437 r3470736  
    33Donate link: https://ultradevs.com/donate
    44Tags: dropbox, file manager, embed, shortcode, form
    5 Requires at least: 5.3.2
    6 Tested up to:      6.9
    7 Stable tag:       2.0.0
     5Requires at least: 6.2
     6Tested up to:      6.9.1
     7Stable tag:       2.0.1
    88Requires PHP:      7.4.0
    99License: GPLv2 or later
     
    168168== Changelog ==
    169169
     170= 2.0.1 - 27 February, 2026 =
     171- **Fix:** Ajax Error.
     172
    170173= 2.0.0 - 20 February, 2026 =
    171174- **Fix:** Some Issues.
  • easy-dropbox-integration/trunk/vendor/composer/installed.php

    r3366399 r3470736  
    22    'root' => array(
    33        'name' => 'ultradevs/easy-dropbox-integration',
    4         'pretty_version' => 'dev-develop',
    5         'version' => 'dev-develop',
    6         'reference' => '4219912f2fdda6a17ff4cfb22372fd8a9364f27b',
     4        'pretty_version' => 'dev-main',
     5        'version' => 'dev-main',
     6        'reference' => 'efcacd7a0771b20043811ecb76dfeda0694873c3',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    162162        ),
    163163        'ultradevs/easy-dropbox-integration' => array(
    164             'pretty_version' => 'dev-develop',
    165             'version' => 'dev-develop',
    166             'reference' => '4219912f2fdda6a17ff4cfb22372fd8a9364f27b',
     164            'pretty_version' => 'dev-main',
     165            'version' => 'dev-main',
     166            'reference' => 'efcacd7a0771b20043811ecb76dfeda0694873c3',
    167167            'type' => 'library',
    168168            'install_path' => __DIR__ . '/../../',
Note: See TracChangeset for help on using the changeset viewer.