Plugin Directory

Changeset 3169558


Ignore:
Timestamp:
10/15/2024 07:53:35 PM (16 months ago)
Author:
kenjigarland
Message:

Release version 1.5.8

Location:
media-deduper
Files:
7 edited
2 copied

Legend:

Unmodified
Added
Removed
  • media-deduper/tags/1.5.8/inc/class-mdd-media-list-table.php

    r1998307 r3169558  
    1010 */
    1111class MDD_Media_List_Table extends WP_Media_List_Table {
     12
     13    // Dummy property to prevent deprecation warnings from line 23.
     14    public $is_trash;
    1215
    1316    /**
  • media-deduper/tags/1.5.8/inc/class-media-deduper.php

    r3106880 r3169558  
    1717     * Plugin version.
    1818     */
    19     const VERSION = '1.5.7';
     19    const VERSION = '1.5.8';
    2020
    2121    /**
     
    4747     */
    4848    protected $smart_skipped_count = 0;
     49
     50    /**
     51     * Compatibility manager instance. Set in constructor.
     52     *
     53     * @var MDD_Compat_Manager
     54     */
     55    public $compat_manager;
     56
     57    /**
     58     * Async tester instance. Set in constructor.
     59     *
     60     * @var MDD_Async_Test
     61     */
     62    public $async_test;
     63
     64    /**
     65     * Indexer instance. Set in constructor.
     66     *
     67     * @var MDD_Indexer
     68     */
     69    public $indexer;
     70
     71    /**
     72     * Capability required for browsing duplicates, Smart Deleting, etc. Set in constructor.
     73     *
     74     * @var string
     75     */
     76    public $capability;
     77
     78    /**
     79     * Hook suffix for the Manage Duplicates screen. Set in `add_admin_menu()`.
     80     *
     81     * @var string
     82     */
     83    public $hook;
    4984
    5085    /**
  • media-deduper/tags/1.5.8/media-deduper.php

    r3106880 r3169558  
    22/**
    33 * Plugin Name: Media Deduper
    4  * Version: 1.5.7
     4 * Version: 1.5.8
    55 * Description: Save disk space and bring some order to the chaos of your media library by removing and preventing duplicate files.
    66 * Plugin URI: https://www.mediadeduper.com/
  • media-deduper/tags/1.5.8/readme.txt

    r3159988 r3169558  
    33Tags: media, attachments, admin, upload
    44Requires at least: 4.3
    5 Tested up to: 6.6.2
    6 Stable tag: 1.5.7
     5Tested up to: 6.4
     6Stable tag: 1.5.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979
    8080== Changelog ==
     81= 1.5.8 =
     82* Fixed deprecation warnings ("Creation of dynamic property...") that appeared under PHP 8.0+.
     83* Fixed a deprecation from WP Core ("WP_List_Table::__set(): The property `is_trash` is not declared.").
     84
    8185= 1.5.7 =
    8286* Enhancement: instead of warning about Smart Deletion each time a Smart Delete operation is performed, Media Deduper will now only warn before the first operation. Users can now Smart Delete multiple pages' worth of items on the Manage Duplicates screen without repeatedly clicking through the Smart Delete warning.
  • media-deduper/trunk/inc/class-mdd-media-list-table.php

    r1998307 r3169558  
    1010 */
    1111class MDD_Media_List_Table extends WP_Media_List_Table {
     12
     13    // Dummy property to prevent deprecation warnings from line 23.
     14    public $is_trash;
    1215
    1316    /**
  • media-deduper/trunk/inc/class-media-deduper.php

    r3106880 r3169558  
    1717     * Plugin version.
    1818     */
    19     const VERSION = '1.5.7';
     19    const VERSION = '1.5.8';
    2020
    2121    /**
     
    4747     */
    4848    protected $smart_skipped_count = 0;
     49
     50    /**
     51     * Compatibility manager instance. Set in constructor.
     52     *
     53     * @var MDD_Compat_Manager
     54     */
     55    public $compat_manager;
     56
     57    /**
     58     * Async tester instance. Set in constructor.
     59     *
     60     * @var MDD_Async_Test
     61     */
     62    public $async_test;
     63
     64    /**
     65     * Indexer instance. Set in constructor.
     66     *
     67     * @var MDD_Indexer
     68     */
     69    public $indexer;
     70
     71    /**
     72     * Capability required for browsing duplicates, Smart Deleting, etc. Set in constructor.
     73     *
     74     * @var string
     75     */
     76    public $capability;
     77
     78    /**
     79     * Hook suffix for the Manage Duplicates screen. Set in `add_admin_menu()`.
     80     *
     81     * @var string
     82     */
     83    public $hook;
    4984
    5085    /**
  • media-deduper/trunk/media-deduper.php

    r3106880 r3169558  
    22/**
    33 * Plugin Name: Media Deduper
    4  * Version: 1.5.7
     4 * Version: 1.5.8
    55 * Description: Save disk space and bring some order to the chaos of your media library by removing and preventing duplicate files.
    66 * Plugin URI: https://www.mediadeduper.com/
  • media-deduper/trunk/readme.txt

    r3159988 r3169558  
    33Tags: media, attachments, admin, upload
    44Requires at least: 4.3
    5 Tested up to: 6.6.2
    6 Stable tag: 1.5.7
     5Tested up to: 6.4
     6Stable tag: 1.5.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7979
    8080== Changelog ==
     81= 1.5.8 =
     82* Fixed deprecation warnings ("Creation of dynamic property...") that appeared under PHP 8.0+.
     83* Fixed a deprecation from WP Core ("WP_List_Table::__set(): The property `is_trash` is not declared.").
     84
    8185= 1.5.7 =
    8286* Enhancement: instead of warning about Smart Deletion each time a Smart Delete operation is performed, Media Deduper will now only warn before the first operation. Users can now Smart Delete multiple pages' worth of items on the Manage Duplicates screen without repeatedly clicking through the Smart Delete warning.
Note: See TracChangeset for help on using the changeset viewer.