Changeset 3063597
- Timestamp:
- 04/03/2024 10:37:46 AM (2 years ago)
- Location:
- codeflavors-vimeo-video-post-lite/trunk
- Files:
-
- 5 edited
-
CHANGELOG.md (modified) (1 diff)
-
includes/libs/admin/editor/classic-editor.class.php (modified) (1 diff)
-
includes/libs/rest-api/rest-api.class.php (modified) (1 diff)
-
main.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
codeflavors-vimeo-video-post-lite/trunk/CHANGELOG.md
r3010568 r3063597 1 1 *** Vimeotheque Lite Changelog *** 2 3 2024-04-03 - Version 2.2.9 4 - Added "embed_url" to video Rest API fields; 5 - Introduced Query Monitor support; 6 - Introduced filter "vimeotheque-lite/enable-classic-editor-files" that can be used to prevent the plugin from loading the Classic Editor compatibility scripts. 2 7 3 8 2023-12-15 - Version 2.2.8 -
codeflavors-vimeo-video-post-lite/trunk/includes/libs/admin/editor/classic-editor.class.php
r2671125 r3063597 697 697 } 698 698 699 $allow = apply_filters( 'vimeotheque-lite/enable-classic-editor-files', true ); 700 701 if( !$allow ){ 702 return; 703 } 704 699 705 global $post; 700 706 if( ! $post ){ -
codeflavors-vimeo-video-post-lite/trunk/includes/libs/rest-api/rest-api.class.php
r2671125 r3063597 107 107 'type' => $video->type, 108 108 'uri' => $video->uri, 109 'link' => $video->link 109 'link' => $video->link, 110 'embed_url' => $video->get_embed_url(), 110 111 ]; 111 112 } -
codeflavors-vimeo-video-post-lite/trunk/main.php
r3010568 r3063597 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.2. 87 * Version: 2.2.9 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.2. 8' );19 define( 'VIMEOTHEQUE_VERSION', '2.2.9' ); 20 20 define( 'VIMEOTHEQUE_TEMPLATE_DEBUG_MODE', false ); 21 21 /** … … 38 38 add_action( 'admin_notices', 'vimeotheque_fail_wp_version' ); 39 39 }else{ 40 41 // Start the timer: 42 do_action( 'qm/start', 'Vimeotheque Lite' ); 43 40 44 require_once VIMEOTHEQUE_PATH . 'includes/libs/plugin.class.php'; 45 46 // Stop the timer: 47 do_action( 'qm/stop', 'Vimeotheque Lite' ); 41 48 } 42 49 -
codeflavors-vimeo-video-post-lite/trunk/readme.txt
r3063524 r3063597 5 5 Tested up to: 6.5 6 6 Requires PHP: 7.4 7 Stable tag: 2.2. 87 Stable tag: 2.2.9 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.2.9 = 139 - Added "embed_url" to video Rest API fields; 140 - Introduced Query Monitor support; 141 - Introduced filter "vimeotheque-lite/enable-classic-editor-files" that can be used to prevent the plugin from loading the Classic Editor compatibility scripts. 142 138 143 = 2.2.8 = 139 144 - Modified Vimeotheque template styling to be less restrictive;
Note: See TracChangeset
for help on using the changeset viewer.