Changeset 2694828
- Timestamp:
- 03/16/2022 01:19:40 PM (4 years ago)
- Location:
- media-library-organizer
- Files:
-
- 8 edited
- 1 copied
-
tags/1.4.2 (copied) (copied from media-library-organizer/trunk)
-
tags/1.4.2/includes/class-media-library-organizer.php (modified) (1 diff)
-
tags/1.4.2/includes/global/class-media-library-organizer-media.php (modified) (2 diffs)
-
tags/1.4.2/media-library-organizer.php (modified) (1 diff)
-
tags/1.4.2/readme.txt (modified) (1 diff)
-
trunk/includes/class-media-library-organizer.php (modified) (1 diff)
-
trunk/includes/global/class-media-library-organizer-media.php (modified) (2 diffs)
-
trunk/media-library-organizer.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
media-library-organizer/tags/1.4.2/includes/class-media-library-organizer.php
r2692053 r2694828 64 64 $this->plugin->displayName = 'Media Library Organizer'; 65 65 $this->plugin->author_name = 'Media Library Organizer'; 66 $this->plugin->version = '1.4. 1';67 $this->plugin->buildDate = '2022-03-1 018:00:00';66 $this->plugin->version = '1.4.2'; 67 $this->plugin->buildDate = '2022-03-16 18:00:00'; 68 68 $this->plugin->requires = '5.0'; 69 $this->plugin->tested = '5.9. 1';69 $this->plugin->tested = '5.9.2'; 70 70 $this->plugin->folder = MEDIA_LIBRARY_ORGANIZER_PLUGIN_PATH; 71 71 $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 1318 1318 public function show_attachment_count() { 1319 1319 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; 1322 1322 1323 1323 // Return if we can't determine the current screen. … … 1328 1328 // Get screen. 1329 1329 $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 } 1330 1335 1331 1336 // Depending on the WordPress Admin screen, show or hide term counts. -
media-library-organizer/tags/1.4.2/media-library-organizer.php
r2692053 r2694828 9 9 * Plugin Name: Media Library Organizer 10 10 * Plugin URI: https://wpmedialibrary.com 11 * Version: 1.4. 111 * Version: 1.4.2 12 12 * Author: WP Media Library 13 13 * Author URI: https://wpmedialibrary.com -
media-library-organizer/tags/1.4.2/readme.txt
r2692053 r2694828 173 173 == Changelog == 174 174 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 175 178 = 1.4.1 (2022-03-10) = 176 179 * 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 64 64 $this->plugin->displayName = 'Media Library Organizer'; 65 65 $this->plugin->author_name = 'Media Library Organizer'; 66 $this->plugin->version = '1.4. 1';67 $this->plugin->buildDate = '2022-03-1 018:00:00';66 $this->plugin->version = '1.4.2'; 67 $this->plugin->buildDate = '2022-03-16 18:00:00'; 68 68 $this->plugin->requires = '5.0'; 69 $this->plugin->tested = '5.9. 1';69 $this->plugin->tested = '5.9.2'; 70 70 $this->plugin->folder = MEDIA_LIBRARY_ORGANIZER_PLUGIN_PATH; 71 71 $this->plugin->url = MEDIA_LIBRARY_ORGANIZER_PLUGIN_URL; -
media-library-organizer/trunk/includes/global/class-media-library-organizer-media.php
r2692053 r2694828 1318 1318 public function show_attachment_count() { 1319 1319 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; 1322 1322 1323 1323 // Return if we can't determine the current screen. … … 1328 1328 // Get screen. 1329 1329 $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 } 1330 1335 1331 1336 // Depending on the WordPress Admin screen, show or hide term counts. -
media-library-organizer/trunk/media-library-organizer.php
r2692053 r2694828 9 9 * Plugin Name: Media Library Organizer 10 10 * Plugin URI: https://wpmedialibrary.com 11 * Version: 1.4. 111 * Version: 1.4.2 12 12 * Author: WP Media Library 13 13 * Author URI: https://wpmedialibrary.com -
media-library-organizer/trunk/readme.txt
r2692053 r2694828 173 173 == Changelog == 174 174 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 175 178 = 1.4.1 (2022-03-10) = 176 179 * 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.