Changeset 1512969
- Timestamp:
- 10/11/2016 10:17:18 PM (9 years ago)
- Location:
- fast-page-switch
- Files:
-
- 1 deleted
- 3 edited
- 10 copied
-
tags/1.5.7 (copied) (copied from fast-page-switch/trunk)
-
tags/1.5.7/assets/css/select2.min.css (copied) (copied from fast-page-switch/trunk/assets/css/select2.min.css)
-
tags/1.5.7/assets/js/i18n (copied) (copied from fast-page-switch/trunk/assets/js/i18n)
-
tags/1.5.7/assets/js/select2.min.js (copied) (copied from fast-page-switch/trunk/assets/js/select2.min.js)
-
tags/1.5.7/fast-page-switch.php (copied) (copied from fast-page-switch/trunk/fast-page-switch.php) (4 diffs)
-
tags/1.5.7/fps-admin.php (copied) (copied from fast-page-switch/trunk/fps-admin.php) (1 diff)
-
tags/1.5.7/languages (copied) (copied from fast-page-switch/trunk/languages)
-
tags/1.5.7/languages/fast-page-switch.pot (copied) (copied from fast-page-switch/trunk/languages/fast-page-switch.pot)
-
tags/1.5.7/readme.txt (copied) (copied from fast-page-switch/trunk/readme.txt) (2 diffs)
-
tags/1.5.7/screenshot-1.jpg (deleted)
-
tags/1.5.7/uninstall.php (copied) (copied from fast-page-switch/trunk/uninstall.php)
-
trunk/fast-page-switch.php (modified) (4 diffs)
-
trunk/fps-admin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fast-page-switch/tags/1.5.7/fast-page-switch.php
r1512957 r1512969 4 4 Plugin URI: https://marcwiest.com 5 5 Description: Save time switching between posts of any post-type in wp-admin. 6 Version: 1.5. 66 Version: 1.5.7 7 7 Author: Marc Wiest 8 8 Author URI: https://marcwiest.com … … 51 51 unset($all_statuses['trash']); 52 52 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']); 53 72 54 73 return array_values( array_flip($all_statuses) ); … … 173 192 $all_posts = get_posts( array( 174 193 'post_type' => $type, 175 'post_status' => get_option( 'fps_post_statuses', array('private','draft','future','pending','publish')),194 'post_status' => fps_get_user_statuses(), 176 195 'posts_per_page' => -1, 177 196 'orderby' => 'title', … … 332 351 opacity: 1; 333 352 } 334 .select2-results __options{335 max-height: 3 33px !important;353 .select2-results { 354 max-height: 300px !important; 336 355 } 337 356 .fps-settings-link { -
fast-page-switch/tags/1.5.7/fps-admin.php
r1512957 r1512969 67 67 'revision', 68 68 'nav_menu_item', 69 // acf 69 70 'acf-field-group', 70 'feedback', // jetpack contact form module 71 // jetpack 72 'feedback', 73 // woocommerce 74 'shop_order', 75 'shop_coupon', 76 'shop_webhook', 71 77 ); 72 78 -
fast-page-switch/tags/1.5.7/readme.txt
r1512957 r1512969 4 4 Requires at least: 3.1 5 5 Tested up to: 4.7 6 Stable tag: 1.5. 66 Stable tag: 1.5.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == 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. 26 32 27 33 = 1.5.6 - October 11, 2016 = -
fast-page-switch/trunk/fast-page-switch.php
r1512957 r1512969 4 4 Plugin URI: https://marcwiest.com 5 5 Description: Save time switching between posts of any post-type in wp-admin. 6 Version: 1.5. 66 Version: 1.5.7 7 7 Author: Marc Wiest 8 8 Author URI: https://marcwiest.com … … 51 51 unset($all_statuses['trash']); 52 52 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']); 53 72 54 73 return array_values( array_flip($all_statuses) ); … … 173 192 $all_posts = get_posts( array( 174 193 'post_type' => $type, 175 'post_status' => get_option( 'fps_post_statuses', array('private','draft','future','pending','publish')),194 'post_status' => fps_get_user_statuses(), 176 195 'posts_per_page' => -1, 177 196 'orderby' => 'title', … … 332 351 opacity: 1; 333 352 } 334 .select2-results __options{335 max-height: 3 33px !important;353 .select2-results { 354 max-height: 300px !important; 336 355 } 337 356 .fps-settings-link { -
fast-page-switch/trunk/fps-admin.php
r1512957 r1512969 67 67 'revision', 68 68 'nav_menu_item', 69 // acf 69 70 'acf-field-group', 70 'feedback', // jetpack contact form module 71 // jetpack 72 'feedback', 73 // woocommerce 74 'shop_order', 75 'shop_coupon', 76 'shop_webhook', 71 77 ); 72 78 -
fast-page-switch/trunk/readme.txt
r1512957 r1512969 4 4 Requires at least: 3.1 5 5 Tested up to: 4.7 6 Stable tag: 1.5. 66 Stable tag: 1.5.7 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == 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. 26 32 27 33 = 1.5.6 - October 11, 2016 =
Note: See TracChangeset
for help on using the changeset viewer.