Plugin Directory

Changeset 3063597


Ignore:
Timestamp:
04/03/2024 10:37:46 AM (2 years ago)
Author:
codeflavors
Message:

Version 2.2.9

Location:
codeflavors-vimeo-video-post-lite/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • codeflavors-vimeo-video-post-lite/trunk/CHANGELOG.md

    r3010568 r3063597  
    11*** Vimeotheque Lite Changelog ***
     2
     32024-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.
    27
    382023-12-15 - Version 2.2.8
  • codeflavors-vimeo-video-post-lite/trunk/includes/libs/admin/editor/classic-editor.class.php

    r2671125 r3063597  
    697697        }
    698698
     699        $allow = apply_filters( 'vimeotheque-lite/enable-classic-editor-files', true );
     700
     701        if( !$allow ){
     702            return;
     703        }
     704
    699705        global $post;
    700706        if( ! $post ){
  • codeflavors-vimeo-video-post-lite/trunk/includes/libs/rest-api/rest-api.class.php

    r2671125 r3063597  
    107107                'type'  => $video->type,
    108108                'uri'   => $video->uri,
    109                 'link'  => $video->link
     109                'link'  => $video->link,
     110                'embed_url' => $video->get_embed_url(),
    110111            ];
    111112        }
  • codeflavors-vimeo-video-post-lite/trunk/main.php

    r3010568 r3063597  
    55 * 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.
    66 * Author: CodeFlavors
    7  * Version: 2.2.8
     7 * Version: 2.2.9
    88 * Author URI: https://codeflavors.com
    99 * Text Domain: codeflavors-vimeo-video-post-lite
     
    1717define( 'VIMEOTHEQUE_PATH', plugin_dir_path( __FILE__ ) );
    1818define( 'VIMEOTHEQUE_URL', plugin_dir_url( __FILE__ ) );
    19 define( 'VIMEOTHEQUE_VERSION', '2.2.8' );
     19define( 'VIMEOTHEQUE_VERSION', '2.2.9' );
    2020define( 'VIMEOTHEQUE_TEMPLATE_DEBUG_MODE', false );
    2121/**
     
    3838    add_action( 'admin_notices', 'vimeotheque_fail_wp_version' );
    3939}else{
     40
     41    // Start the timer:
     42    do_action( 'qm/start', 'Vimeotheque Lite' );
     43
    4044    require_once VIMEOTHEQUE_PATH . 'includes/libs/plugin.class.php';
     45
     46    // Stop the timer:
     47    do_action( 'qm/stop', 'Vimeotheque Lite' );
    4148}
    4249
  • codeflavors-vimeo-video-post-lite/trunk/readme.txt

    r3063524 r3063597  
    55Tested up to: 6.5
    66Requires PHP: 7.4
    7 Stable tag: 2.2.8
     7Stable tag: 2.2.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    136136
    137137== 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
    138143= 2.2.8 =
    139144- Modified Vimeotheque template styling to be less restrictive;
Note: See TracChangeset for help on using the changeset viewer.