Plugin Directory

Changeset 2694828


Ignore:
Timestamp:
03/16/2022 01:19:40 PM (4 years ago)
Author:
wpmedialibrary
Message:

Update to version 1.4.2 from GitHub

Location:
media-library-organizer
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • media-library-organizer/tags/1.4.2/includes/class-media-library-organizer.php

    r2692053 r2694828  
    6464        $this->plugin->displayName       = 'Media Library Organizer';
    6565        $this->plugin->author_name       = 'Media Library Organizer';
    66         $this->plugin->version           = '1.4.1';
    67         $this->plugin->buildDate         = '2022-03-10 18:00:00';
     66        $this->plugin->version           = '1.4.2';
     67        $this->plugin->buildDate         = '2022-03-16 18:00:00';
    6868        $this->plugin->requires          = '5.0';
    69         $this->plugin->tested            = '5.9.1';
     69        $this->plugin->tested            = '5.9.2';
    7070        $this->plugin->folder            = MEDIA_LIBRARY_ORGANIZER_PLUGIN_PATH;
    7171        $this->plugin->url               = MEDIA_LIBRARY_ORGANIZER_PLUGIN_URL;
  • media-library-organizer/tags/1.4.2/includes/global/class-media-library-organizer-media.php

    r2692053 r2694828  
    13181318    public function show_attachment_count() {
    13191319
    1320         // By default, show attachment count for each Term.
    1321         $show_attachment_count = true;
     1320        // By default, don't show attachment count for each Term.
     1321        $show_attachment_count = false;
    13221322
    13231323        // Return if we can't determine the current screen.
     
    13281328        // Get screen.
    13291329        $screen = get_current_screen();
     1330
     1331        // Return if we can't determine the current screen.
     1332        if ( is_null( $screen ) ) {
     1333            return $show_attachment_count;
     1334        }
    13301335
    13311336        // Depending on the WordPress Admin screen, show or hide term counts.
  • media-library-organizer/tags/1.4.2/media-library-organizer.php

    r2692053 r2694828  
    99 * Plugin Name: Media Library Organizer
    1010 * Plugin URI: https://wpmedialibrary.com
    11  * Version: 1.4.1
     11 * Version: 1.4.2
    1212 * Author: WP Media Library
    1313 * Author URI: https://wpmedialibrary.com
  • media-library-organizer/tags/1.4.2/readme.txt

    r2692053 r2694828  
    173173== Changelog ==
    174174
     175= 1.4.2 (2022-03-16) =
     176* Fix: Category Dropdown Filter: Attachment Count: Improved checks to determine current screen and whether to show counts
     177
    175178= 1.4.1 (2022-03-10) =
    176179* Fix: Category Dropdown Filter: Don't show Attachment count for Terms when selecting media/files on Pages/Posts, as counts include all file types
  • media-library-organizer/trunk/includes/class-media-library-organizer.php

    r2692053 r2694828  
    6464        $this->plugin->displayName       = 'Media Library Organizer';
    6565        $this->plugin->author_name       = 'Media Library Organizer';
    66         $this->plugin->version           = '1.4.1';
    67         $this->plugin->buildDate         = '2022-03-10 18:00:00';
     66        $this->plugin->version           = '1.4.2';
     67        $this->plugin->buildDate         = '2022-03-16 18:00:00';
    6868        $this->plugin->requires          = '5.0';
    69         $this->plugin->tested            = '5.9.1';
     69        $this->plugin->tested            = '5.9.2';
    7070        $this->plugin->folder            = MEDIA_LIBRARY_ORGANIZER_PLUGIN_PATH;
    7171        $this->plugin->url               = MEDIA_LIBRARY_ORGANIZER_PLUGIN_URL;
  • media-library-organizer/trunk/includes/global/class-media-library-organizer-media.php

    r2692053 r2694828  
    13181318    public function show_attachment_count() {
    13191319
    1320         // By default, show attachment count for each Term.
    1321         $show_attachment_count = true;
     1320        // By default, don't show attachment count for each Term.
     1321        $show_attachment_count = false;
    13221322
    13231323        // Return if we can't determine the current screen.
     
    13281328        // Get screen.
    13291329        $screen = get_current_screen();
     1330
     1331        // Return if we can't determine the current screen.
     1332        if ( is_null( $screen ) ) {
     1333            return $show_attachment_count;
     1334        }
    13301335
    13311336        // Depending on the WordPress Admin screen, show or hide term counts.
  • media-library-organizer/trunk/media-library-organizer.php

    r2692053 r2694828  
    99 * Plugin Name: Media Library Organizer
    1010 * Plugin URI: https://wpmedialibrary.com
    11  * Version: 1.4.1
     11 * Version: 1.4.2
    1212 * Author: WP Media Library
    1313 * Author URI: https://wpmedialibrary.com
  • media-library-organizer/trunk/readme.txt

    r2692053 r2694828  
    173173== Changelog ==
    174174
     175= 1.4.2 (2022-03-16) =
     176* Fix: Category Dropdown Filter: Attachment Count: Improved checks to determine current screen and whether to show counts
     177
    175178= 1.4.1 (2022-03-10) =
    176179* Fix: Category Dropdown Filter: Don't show Attachment count for Terms when selecting media/files on Pages/Posts, as counts include all file types
Note: See TracChangeset for help on using the changeset viewer.