Changeset 2231096
- Timestamp:
- 01/21/2020 05:25:45 PM (6 years ago)
- Location:
- brightcove-video-connect/trunk
- Files:
-
- 4 edited
-
brightcove-video-connect.php (modified) (2 diffs)
-
includes/admin/class-bc-admin-settings-page.php (modified) (1 diff)
-
includes/class-bc-accounts.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
brightcove-video-connect/trunk/brightcove-video-connect.php
r2221227 r2231096 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.8. 06 * Version: 1.8.1 7 7 * Author: 10up 8 8 * Author URI: http://10up.com … … 30 30 */ 31 31 32 define( 'BRIGHTCOVE_VERSION', '1.8. 0' );32 define( 'BRIGHTCOVE_VERSION', '1.8.1' ); 33 33 define( 'BRIGHTCOVE_URL', plugin_dir_url( __FILE__ ) ); 34 34 define( 'BRIGHTCOVE_PATH', dirname( __FILE__ ) . '/' ); -
brightcove-video-connect/trunk/includes/admin/class-bc-admin-settings-page.php
r2221227 r2231096 95 95 </th> 96 96 <td> 97 <input type="number" name="bc_default_player_width" id="bc_default_player_width" size="5" value="<?php echo intval( get_option( 'bc_default_player_width', 640 ) ); ?>" class="right-col"> 97 <input type="number" name="bc_default_player_width" id="bc_default_player_width" size="5" value="<?php echo intval( get_option( 'bc_default_player_width', 640 ) ); ?>" class="right-col"> px 98 98 </td> 99 99 </tr> -
brightcove-video-connect/trunk/includes/class-bc-accounts.php
r1510166 r2231096 496 496 // For use through other Playlist test API calls. 497 497 $playlist_id = $playlist['id']; 498 $update_data = array( ' video_ids' => array( $video_id ), 'type' => 'EXPLICIT' );498 $update_data = array( 'name' => 'Brightcove WordPress plugin test playlist renamed' ); 499 499 500 500 $updated_playlist = $cms_api->playlist_update( $playlist_id, $update_data ); -
brightcove-video-connect/trunk/readme.txt
r2221227 r2231096 6 6 Requires at least: 4.2 7 7 Tested up to: 5.3 8 Stable tag: 1.8. 08 Stable tag: 1.8.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.8.1 = 26 27 * Fix: Adding a new brightcove account bug 24 28 25 29 = 1.8.0 =
Note: See TracChangeset
for help on using the changeset viewer.