Plugin Directory

Changeset 1512969


Ignore:
Timestamp:
10/11/2016 10:17:18 PM (9 years ago)
Author:
marclarr
Message:

updated to 1.5.7

Location:
fast-page-switch
Files:
1 deleted
3 edited
10 copied

Legend:

Unmodified
Added
Removed
  • fast-page-switch/tags/1.5.7/fast-page-switch.php

    r1512957 r1512969  
    44Plugin URI:     https://marcwiest.com
    55Description:    Save time switching between posts of any post-type in wp-admin.
    6 Version:        1.5.6
     6Version:        1.5.7
    77Author:         Marc Wiest
    88Author URI:     https://marcwiest.com
     
    5151    unset($all_statuses['trash']);
    5252    unset($all_statuses['inherit']);
     53    // acf
     54    unset($all_statuses['acf-disabled']);
     55    // edd payment history
     56    unset($all_statuses['completed']);
     57    unset($all_statuses['refunded']);
     58    unset($all_statuses['revoked']);
     59    unset($all_statuses['failed']);
     60    unset($all_statuses['abandoned']);
     61    // edd coupons
     62    unset($all_statuses['active']);
     63    unset($all_statuses['inactive']);
     64    // woocommerce
     65    unset($all_statuses['wc-cancelled']);
     66    unset($all_statuses['wc-completed']);
     67    unset($all_statuses['wc-failed']);
     68    unset($all_statuses['wc-on-hold']);
     69    unset($all_statuses['wc-pending']);
     70    unset($all_statuses['wc-processing']);
     71    unset($all_statuses['wc-refunded']);
    5372
    5473    return array_values( array_flip($all_statuses) );
     
    173192        $all_posts = get_posts( array(
    174193            'post_type' => $type,
    175             'post_status' => get_option( 'fps_post_statuses', array('private','draft','future','pending','publish') ),
     194            'post_status' => fps_get_user_statuses(),
    176195            'posts_per_page' => -1,
    177196            'orderby' => 'title',
     
    332351                opacity: 1;
    333352            }
    334             .select2-results__options {
    335                 max-height: 333px !important;
     353            .select2-results {
     354                max-height: 300px !important;
    336355            }
    337356            .fps-settings-link {
  • fast-page-switch/tags/1.5.7/fps-admin.php

    r1512957 r1512969  
    6767        'revision',
    6868        'nav_menu_item',
     69        // acf
    6970        'acf-field-group',
    70         'feedback', // jetpack contact form module
     71        // jetpack
     72        'feedback',
     73        // woocommerce
     74        'shop_order',
     75        'shop_coupon',
     76        'shop_webhook',
    7177    );
    7278
  • fast-page-switch/tags/1.5.7/readme.txt

    r1512957 r1512969  
    44Requires at least: 3.1
    55Tested up to: 4.7
    6 Stable tag: 1.5.6
     6Stable tag: 1.5.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2424
    2525== Changelog ==
     26
     27= 1.5.7 - October 11, 2016 =
     28* Removed "acf-disabled" from post-statuses setting.
     29* Removed Easy Digital Download items from post-statuses setting.
     30* Removed WooCommerce items from post-statuses and post-type settings.
     31* Applied new CSS max-height to Select2 drop-down.
    2632
    2733= 1.5.6 - October 11, 2016 =
  • fast-page-switch/trunk/fast-page-switch.php

    r1512957 r1512969  
    44Plugin URI:     https://marcwiest.com
    55Description:    Save time switching between posts of any post-type in wp-admin.
    6 Version:        1.5.6
     6Version:        1.5.7
    77Author:         Marc Wiest
    88Author URI:     https://marcwiest.com
     
    5151    unset($all_statuses['trash']);
    5252    unset($all_statuses['inherit']);
     53    // acf
     54    unset($all_statuses['acf-disabled']);
     55    // edd payment history
     56    unset($all_statuses['completed']);
     57    unset($all_statuses['refunded']);
     58    unset($all_statuses['revoked']);
     59    unset($all_statuses['failed']);
     60    unset($all_statuses['abandoned']);
     61    // edd coupons
     62    unset($all_statuses['active']);
     63    unset($all_statuses['inactive']);
     64    // woocommerce
     65    unset($all_statuses['wc-cancelled']);
     66    unset($all_statuses['wc-completed']);
     67    unset($all_statuses['wc-failed']);
     68    unset($all_statuses['wc-on-hold']);
     69    unset($all_statuses['wc-pending']);
     70    unset($all_statuses['wc-processing']);
     71    unset($all_statuses['wc-refunded']);
    5372
    5473    return array_values( array_flip($all_statuses) );
     
    173192        $all_posts = get_posts( array(
    174193            'post_type' => $type,
    175             'post_status' => get_option( 'fps_post_statuses', array('private','draft','future','pending','publish') ),
     194            'post_status' => fps_get_user_statuses(),
    176195            'posts_per_page' => -1,
    177196            'orderby' => 'title',
     
    332351                opacity: 1;
    333352            }
    334             .select2-results__options {
    335                 max-height: 333px !important;
     353            .select2-results {
     354                max-height: 300px !important;
    336355            }
    337356            .fps-settings-link {
  • fast-page-switch/trunk/fps-admin.php

    r1512957 r1512969  
    6767        'revision',
    6868        'nav_menu_item',
     69        // acf
    6970        'acf-field-group',
    70         'feedback', // jetpack contact form module
     71        // jetpack
     72        'feedback',
     73        // woocommerce
     74        'shop_order',
     75        'shop_coupon',
     76        'shop_webhook',
    7177    );
    7278
  • fast-page-switch/trunk/readme.txt

    r1512957 r1512969  
    44Requires at least: 3.1
    55Tested up to: 4.7
    6 Stable tag: 1.5.6
     6Stable tag: 1.5.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2424
    2525== Changelog ==
     26
     27= 1.5.7 - October 11, 2016 =
     28* Removed "acf-disabled" from post-statuses setting.
     29* Removed Easy Digital Download items from post-statuses setting.
     30* Removed WooCommerce items from post-statuses and post-type settings.
     31* Applied new CSS max-height to Select2 drop-down.
    2632
    2733= 1.5.6 - October 11, 2016 =
Note: See TracChangeset for help on using the changeset viewer.