Changeset 3337714
- Timestamp:
- 08/01/2025 10:17:01 AM (8 months ago)
- Location:
- codeflavors-vimeo-video-post-lite/trunk
- Files:
-
- 6 edited
-
CHANGELOG.md (modified) (1 diff)
-
includes/libs/admin/admin.class.php (modified) (2 diffs)
-
includes/libs/extensions/remote-loader.class.php (modified) (1 diff)
-
includes/libs/vimeo-api/vimeo-api-query.class.php (modified) (1 diff)
-
main.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codeflavors-vimeo-video-post-lite/trunk/CHANGELOG.md
r3301523 r3337714 1 1 *** Vimeotheque Lite Changelog *** 2 3 2025-08-01 - Version 2.3.5.1 4 - Load plugin add-ons information only when needed; 5 - Changed timeout for the add-ons information to 3s; 6 - Manage errors returned from Vimeo API queries in a more granular way. 2 7 3 8 2025-05-27 - Version 2.3.4.4 -
codeflavors-vimeo-video-post-lite/trunk/includes/libs/admin/admin.class.php
r3305670 r3337714 64 64 // store object reference 65 65 $this->post_type = $post_type; 66 $this->extensions = new Extensions(); 67 68 add_action( 'wp_loaded', [ $this, 'init' ], -20 ); 66 67 add_action( 'wp_loaded', [ $this, 'init' ], -20 ); 69 68 70 69 // add admin capabilities … … 453 452 */ 454 453 public function get_extensions() { 455 return $this->extensions; 454 if( !is_null($this->extensions) ){ 455 return $this->extensions; 456 } 457 458 $this->extensions = new Extensions(); 459 return $this->extensions; 456 460 } 457 461 -
codeflavors-vimeo-video-post-lite/trunk/includes/libs/extensions/remote-loader.class.php
r3305670 r3337714 55 55 $this->get_rest_api_endpoint(), 56 56 [ 57 'timeout' => 3 0,57 'timeout' => 3, 58 58 'sslverify' => false, 59 59 ] -
codeflavors-vimeo-video-post-lite/trunk/includes/libs/vimeo-api/vimeo-api-query.class.php
r3075417 r3337714 181 181 ); 182 182 183 $data['response'] = $request['response']; 183 if( is_wp_error($request) ){ 184 $data['response'] = $request->get_error_message(); 185 }else if( isset( $request['response'] ) ){ 186 $data['response'] = $request['response']; 187 }else{ 188 $data['response'] = esc_html__( 'Unknown Vimeo API query error', 'codeflavors-vimeo-video-post-lite' ); 189 } 184 190 185 191 return parent::api_error( $data ); -
codeflavors-vimeo-video-post-lite/trunk/main.php
r3305670 r3337714 5 5 * Description: Vimeotheque imports public Vimeo videos as WordPress posts. It is a perfect fit for membership, portfolio, online courses or any type of video collection. 6 6 * Author: CodeFlavors 7 * Version: 2.3.5 7 * Version: 2.3.5.1 8 8 * Author URI: https://codeflavors.com 9 9 * Text Domain: codeflavors-vimeo-video-post-lite … … 17 17 define( 'VIMEOTHEQUE_PATH', plugin_dir_path( __FILE__ ) ); 18 18 define( 'VIMEOTHEQUE_URL', plugin_dir_url( __FILE__ ) ); 19 define( 'VIMEOTHEQUE_VERSION', '2.3.5 ' );19 define( 'VIMEOTHEQUE_VERSION', '2.3.5.1' ); 20 20 define( 'VIMEOTHEQUE_TEMPLATE_DEBUG_MODE', false ); 21 21 /** -
codeflavors-vimeo-video-post-lite/trunk/readme.txt
r3305670 r3337714 5 5 Tested up to: 6.8.1 6 6 Requires PHP: 7.4 7 Stable tag: 2.3.5 7 Stable tag: 2.3.5.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 136 136 137 137 == Changelog == 138 = 2.3.5.1 = 139 - Load plugin add-ons information only when needed; 140 - Changed timeout for the add-ons information to 3s; 141 - Manage errors returned from Vimeo API queries in a more granular way. 142 138 143 = 2.3.5 = 139 144 - Updated code formatting according to WP standards.
Note: See TracChangeset
for help on using the changeset viewer.