Plugin Directory

Changeset 3444834


Ignore:
Timestamp:
01/22/2026 12:43:52 PM (7 weeks ago)
Author:
codeconfig
Message:

Added v-1.3.3

Location:
integrate-dropbox
Files:
5 edited
82 copied

Legend:

Unmodified
Added
Removed
  • integrate-dropbox/tags/1.3.3/core/config.php

    r3444502 r3444834  
    88define('CCPIDB_DB_VERSION', '1.0.0');
    99define('CCPIDB_OPTIONS_VERSION', '1.0.0');
    10 define('CCPIDB_VERSION', '1.3.2');
     10define('CCPIDB_VERSION', '1.3.3');
    1111define('CCPIDB_PLUGIN_BASE', plugin_basename(CCPIDB_FILE));
    1212
  • integrate-dropbox/tags/1.3.3/includes/Updates/class-update-1.3.0.php

    r3444502 r3444834  
    8383            $this->setRewriteRules();
    8484        } else {
    85             add_action( 'plugin_loaded', [$this, 'mediaLibraryMigration'] );
    86             add_action( 'plugin_loaded', [$this, 'setRewriteRules'] );
     85            add_action( 'admin_init', [$this, 'mediaLibraryMigration'] );
     86            add_action( 'admin_init', [$this, 'setRewriteRules'] );
    8787        }
    8888        try {
  • integrate-dropbox/tags/1.3.3/includes/Utils/Helpers.php

    r3444502 r3444834  
    584584        $mimetype = $mimetypeOrExtension;
    585585
    586         if (false === strpos($mimetype, '/')) {
     586        if (false === strpos($mimetype ?? '', '/')) {
    587587            $mimetype = MimeTypeManager::getMimeType($mimetypeOrExtension);
    588588        }
  • integrate-dropbox/tags/1.3.3/integrate-dropbox.php

    r3444502 r3444834  
    88 * Plugin URI:        https://codeconfig.dev/integrate-dropbox/
    99 * Description:       Integrate Dropbox: user-friendly WordPress plugin beautifully displays Dropbox files on posts, pages, & products.
    10  * Version:           1.3.2
     10 * Version:           1.3.3
    1111 * Requires at least: 6.2
    1212 * Requires PHP:      7.4
  • integrate-dropbox/tags/1.3.3/readme.txt

    r3444560 r3444834  
    242242
    243243== Changelog ==
     244= 1.3.3 (22/01/2026) =
     245* Fix: Fix Minor issue.
     246
    244247= 1.3.2 (22/01/2026) =
    245248* Fix: Media library file rendering.
  • integrate-dropbox/trunk/core/config.php

    r3444502 r3444834  
    88define('CCPIDB_DB_VERSION', '1.0.0');
    99define('CCPIDB_OPTIONS_VERSION', '1.0.0');
    10 define('CCPIDB_VERSION', '1.3.2');
     10define('CCPIDB_VERSION', '1.3.3');
    1111define('CCPIDB_PLUGIN_BASE', plugin_basename(CCPIDB_FILE));
    1212
  • integrate-dropbox/trunk/includes/Updates/class-update-1.3.0.php

    r3444502 r3444834  
    8383            $this->setRewriteRules();
    8484        } else {
    85             add_action( 'plugin_loaded', [$this, 'mediaLibraryMigration'] );
    86             add_action( 'plugin_loaded', [$this, 'setRewriteRules'] );
     85            add_action( 'admin_init', [$this, 'mediaLibraryMigration'] );
     86            add_action( 'admin_init', [$this, 'setRewriteRules'] );
    8787        }
    8888        try {
  • integrate-dropbox/trunk/includes/Utils/Helpers.php

    r3444502 r3444834  
    584584        $mimetype = $mimetypeOrExtension;
    585585
    586         if (false === strpos($mimetype, '/')) {
     586        if (false === strpos($mimetype ?? '', '/')) {
    587587            $mimetype = MimeTypeManager::getMimeType($mimetypeOrExtension);
    588588        }
  • integrate-dropbox/trunk/integrate-dropbox.php

    r3444502 r3444834  
    88 * Plugin URI:        https://codeconfig.dev/integrate-dropbox/
    99 * Description:       Integrate Dropbox: user-friendly WordPress plugin beautifully displays Dropbox files on posts, pages, & products.
    10  * Version:           1.3.2
     10 * Version:           1.3.3
    1111 * Requires at least: 6.2
    1212 * Requires PHP:      7.4
  • integrate-dropbox/trunk/readme.txt

    r3444560 r3444834  
    242242
    243243== Changelog ==
     244= 1.3.3 (22/01/2026) =
     245* Fix: Fix Minor issue.
     246
    244247= 1.3.2 (22/01/2026) =
    245248* Fix: Media library file rendering.
Note: See TracChangeset for help on using the changeset viewer.