Changeset 1189503
- Timestamp:
- 06/29/2015 11:51:25 AM (10 years ago)
- Location:
- brightcove-video-connect/trunk
- Files:
-
- 6 deleted
- 4 edited
-
assets/css/brightcove_playlist.min.css (deleted)
-
assets/css/brightcove_video_cloud.css (deleted)
-
assets/css/brightcove_video_cloud.css.map (deleted)
-
assets/css/brightcove_video_cloud.min.css (deleted)
-
assets/scss/brightcove_video_cloud.scss (deleted)
-
bin (deleted)
-
brightcove-video-connect.php (modified) (2 diffs)
-
includes/classes/api/class-bc-api.php (modified) (2 diffs)
-
includes/classes/class-bc-accounts.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
brightcove-video-connect/trunk/brightcove-video-connect.php
r1181264 r1189503 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.0. 16 * Version: 1.0.2 7 7 * Author: 10up 8 8 * Author URI: http://10up.com … … 27 27 * You should have received a copy of the GNU General Public License 28 28 * along with this program; if not, write to the Free Software 29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 021 10-1301 USA29 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 021.0.2301 USA 30 30 */ 31 31 32 define( 'BRIGHTCOVE_VERSION', '1.0. 1' );32 define( 'BRIGHTCOVE_VERSION', '1.0.2' ); 33 33 define( 'BRIGHTCOVE_URL', plugin_dir_url( __FILE__ ) ); 34 34 define( 'BRIGHTCOVE_PATH', dirname( __FILE__ ) . '/' ); -
brightcove-video-connect/trunk/includes/classes/api/class-bc-api.php
r1181264 r1189503 162 162 } 163 163 164 add_filter( 'http_request_timeout', array( $this, 'increase_http_timeout' ) ); 165 164 166 $headers = array( 'Authorization' => $auth_header ); 165 167 … … 273 275 274 276 } 277 /** 278 * Increase the http timeout for API requests 279 */ 280 281 public function increase_http_timeout( $timeout ) { 282 $timeout += 5; 283 return $timeout; 284 } 275 285 276 286 /** -
brightcove-video-connect/trunk/includes/classes/class-bc-accounts.php
r1181181 r1189503 139 139 $is_valid_account = $this->is_valid_account( $account_id, $client_id, $client_secret, $account_name ); 140 140 141 if ( is_wp_error( $is_valid_account ) ) { 142 return $is_valid_account->get_error_messages(); 143 } 141 if ( is_array( $is_valid_account ) ) { 142 foreach ( $is_valid_account as $wp_error ) { 143 if ( is_wp_error( $wp_error ) ) { 144 BC_Utility::admin_notice_messages( array( 145 array( 146 'message' => $wp_error->get_error_message(), 147 'type' => 'error' 148 ) 149 ) ); 150 } 151 } 152 153 return false; 154 } 144 155 145 156 if ( true !== $is_valid_account ) { -
brightcove-video-connect/trunk/readme.txt
r1181264 r1189503 6 6 Requires at least: 4.0 7 7 Tested up to: 4.2 8 Stable tag: 1.0. 18 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 188 188 == Changelog == 189 189 190 = 1.0.2 = 191 * Increasing HTTP timeout to fix sporadic issues when adding sources 192 190 193 = 1.0.1 = 191 194 * Cleanup of references from /brightcove_video_cloud to /brightcove_video_connect.
Note: See TracChangeset
for help on using the changeset viewer.