Changeset 2122222
- Timestamp:
- 07/12/2019 06:43:49 PM (7 years ago)
- Location:
- brightcove-video-connect/trunk
- Files:
-
- 5 edited
-
assets/js/src/block.js (modified) (1 diff)
-
brightcove-video-connect.php (modified) (3 diffs)
-
includes/api/class-bc-cms-api.php (modified) (1 diff)
-
includes/class-bc-setup.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
brightcove-video-connect/trunk/assets/js/src/block.js
r1951003 r2122222 21 21 edit: function( props ) { 22 22 // Set the field we want to target 23 var target = 'brightcove-' + props. id;23 var target = 'brightcove-' + props.clientId; 24 24 25 25 // Attributes needed to render -
brightcove-video-connect/trunk/brightcove-video-connect.php
r2057701 r2122222 4 4 * Plugin URI: https://wordpress.org/plugins/brightcove-video-connect/ 5 5 * Description: A Brightcove™ Connector for WordPress that leverages enhanced APIs and Brightcove™ Capabilities 6 * Version: 1.7. 06 * Version: 1.7.1 7 7 * Author: 10up 8 8 * Author URI: http://10up.com … … 30 30 */ 31 31 32 define( 'BRIGHTCOVE_VERSION', '1.7. 0' );32 define( 'BRIGHTCOVE_VERSION', '1.7.1' ); 33 33 define( 'BRIGHTCOVE_URL', plugin_dir_url( __FILE__ ) ); 34 34 define( 'BRIGHTCOVE_PATH', dirname( __FILE__ ) . '/' ); … … 55 55 } 56 56 57 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-playlist-shortcode.php' ); 58 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-video-shortcode.php' ); 59 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-experiences-shortcode.php' ); 60 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-utility.php' ); 61 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-accounts.php' ); 62 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-api.php' ); 63 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-oauth.php' ); 64 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-player-management-api.php' ); 65 57 66 // Wireup actions. 58 global $pagenow; 59 60 if ( in_array( $pagenow, array( 'admin-ajax.php', 'admin.php', 'post-new.php', 'edit.php', 'post.php' ) ) ) { 61 67 if ( is_admin() ) { 62 68 add_action( 'init', array( 'BC_Setup', 'action_init' ) ); 63 69 add_action( 'init', array( 'BC_Setup', 'bc_check_minimum_wp_version' ) ); 64 65 70 } else { 66 67 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-playlist-shortcode.php' );68 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-video-shortcode.php' );69 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-experiences-shortcode.php' );70 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-utility.php' );71 require_once( BRIGHTCOVE_PATH . 'includes/class-bc-accounts.php' );72 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-api.php' );73 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-oauth.php' );74 require_once( BRIGHTCOVE_PATH . 'includes/api/class-bc-player-management-api.php' );75 71 76 72 global $bc_accounts; -
brightcove-video-connect/trunk/includes/api/class-bc-cms-api.php
r2057701 r2122222 717 717 $folders = array(); 718 718 719 foreach ( $request as $folder ) { 720 $folders[ $folder['id'] ] = $folder['name']; 719 if ( $request && ! is_wp_error( $request ) ) { 720 foreach ( $request as $folder ) { 721 $folders[ $folder['id'] ] = $folder['name']; 722 } 723 724 set_transient( $cache_key, $folders, 600 ); 721 725 } 722 723 set_transient( $cache_key, $folders, 600 );724 726 } 725 727 -
brightcove-video-connect/trunk/includes/class-bc-setup.php
r2057701 r2122222 113 113 'brightcove-block', 114 114 BRIGHTCOVE_URL . 'assets/js/src/block.js', 115 array( 'wp-blocks', 'wp-element', 'wp-components', 'wp-editor' ) 115 array( 'wp-blocks', 'wp-element', 'wp-components', 'wp-editor' ), 116 filemtime( BRIGHTCOVE_PATH . 'assets/js/src/block.js' ) 116 117 ); 117 118 -
brightcove-video-connect/trunk/readme.txt
r2057701 r2122222 1 1 === Brightcove Video Connect === 2 2 3 Contributors: 10up, collinsinternet, ivankk, technosailor, ChrisWiegman, tott, eduardmaghakyan, mattonomics, phoenixfireball, karinedo, foobuilder, helen, tlovett1, jonathantneal, brightcove, adamsilverstein, jonbellah, sudar, bctbaldwin3 Contributors: 10up, oscarssanchez, collinsinternet, ivankk, technosailor, ChrisWiegman, tott, eduardmaghakyan, mattonomics, phoenixfireball, karinedo, foobuilder, helen, tlovett1, jonathantneal, brightcove, adamsilverstein, jonbellah, sudar, bctbaldwin 4 4 Donate link: https://supporters.eff.org/donate 5 5 Tags: brightcove, 10up, videos, video 6 6 Requires at least: 4.2 7 Tested up to: 5. 18 Stable tag: 1.7. 07 Tested up to: 5.2 8 Stable tag: 1.7.1 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 22 22 23 23 == Changelog == 24 25 = 1.7.1 = 26 27 * Fix: Settings page not loading when plugin is network activated. 28 * Fix: Adding multiple Gutenberg blocks to a post causes videos to sync video content. 29 * Fix: PHP notice when information from Brightcove account not available. 24 30 25 31 = 1.7.0 =
Note: See TracChangeset
for help on using the changeset viewer.