Plugin Directory

Changeset 2506265


Ignore:
Timestamp:
03/30/2021 09:35:24 PM (5 years ago)
Author:
seanchayes
Message:

Updating version to 1.6

Location:
featured-image-admin-thumb-fiat/tags/1.6
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • featured-image-admin-thumb-fiat/tags/1.6/README.txt

    r2370423 r2506265  
    55Requires at least: 3.5.1
    66Requires PHP: 7.0
    7 Tested up to: 5.5
    8 Stable tag: 1.5.3
     7Tested up to: 5.7
     8Stable tag: 1.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565
    6666== Changelog ==
     671.6 (2021-03-30)
     68* Addresses plugin conflict when using Gutenberg editor and  [Conflict with ACF](https://wordpress.org/support/topic/conflict-with-acf-11//)
     69
    67701.5.3 (2019-07-01)
    6871* Addresses thumb column dislay issue with EDD Frontend Submissions [Plugin not working with EDD](https://wordpress.org/support/topic/plugin-not-working-with-edd/)
  • featured-image-admin-thumb-fiat/tags/1.6/admin/class-featured-image-admin-thumb-admin.php

    r2425873 r2506265  
    188188            return;
    189189        }*/
    190         $screen               = get_current_screen();
     190        $screen = get_current_screen();
     191        // Check if we are on an "all posts" screen type.
     192        // If not then just return and do not load the JavaScript code
     193        if ( ! $screen || ( 'edit-' . $screen->post_type !== $screen->id ) ) {
     194            return;
     195        }
    191196        $available_post_types = array_diff( get_post_types(), apply_filters( 'fiat/restrict_post_types', $this->default_excluded_post_types ) );
    192197        // Add custom uploader css and js support for specific post types.
  • featured-image-admin-thumb-fiat/tags/1.6/featured-image-admin-thumb.php

    r2115825 r2506265  
    1212 * Plugin URI:        https://www.seanhayes.biz
    1313 * Description:       Adds inline thumbnail image to admin columns for All Post/post types view (where supported). Click to easily set/change the featured image for that content.
    14  * Version:           1.5.3
     14 * Version:           1.6
    1515 * Author:            Sean Hayes
    1616 * Author URI:        https://www.seanhayes.biz
  • featured-image-admin-thumb-fiat/tags/1.6/public/class-featured-image-admin-thumb.php

    r1761226 r2506265  
    3030     * @var     string
    3131     */
    32     const VERSION = '1.4.3';
     32    const VERSION = '1.6';
    3333
    3434    /**
Note: See TracChangeset for help on using the changeset viewer.