Plugin Directory

Changeset 3059372

Timestamp:
03/26/2024 10:26:24 PM (4 months ago)
Author:
nico23
Message:

Update plugin to version 9.10.16 with NextgenThemes WordPress Plugin Deploy

Location:
advanced-responsive-video-embedder
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • advanced-responsive-video-embedder/tags/9.10.16/advanced-responsive-video-embedder.php

    r3048345 r3059372  
    44 * Plugin URI:        https://nextgenthemes.com/plugins/arve-pro/
    55 * Description:       Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
    6  * Version:           9.10.15
     6 * Version:           9.10.1
    77 * Author:            Nicolas Jonas
    88 * Author URI:        https://nextgenthemes.com
     
    2121// phpcs:disable SlevomatCodingStandard.TypeHints
    2222
    23 const VERSION               = '9.10.15';
     23const VERSION               = '9.10.1';
    2424const PRO_VERSION_REQUIRED  = '5.3.0-alpha1';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/tags/9.10.16/changelog.md

    r3048345 r3059372  
    33* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
    44* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
     5
     6
     7
    58
    69### 2024-02-29 9.10.15 ###
  • advanced-responsive-video-embedder/tags/9.10.16/php/Admin/functions-admin.php

    r3043373 r3059372  
    33namespace Nextgenthemes\ARVE\Admin;
    44
     5
     6
     7
     8
     9
     10
    511use const Nextgenthemes\ARVE\PRO_VERSION_REQUIRED;
    6 
    7 use Nextgenthemes\ARVE;
    8 use Nextgenthemes\ARVE\Common\Admin\Notices;
    9 
    10 use function Nextgenthemes\ARVE\Common\ver;
    11 use function Nextgenthemes\ARVE\Common\attr;
    12 use function Nextgenthemes\ARVE\Common\kses_basic;
    13 use function Nextgenthemes\ARVE\Common\enqueue_asset;
    1412
    1513const ALLOWED_HTML = array(
     
    6967    }
    7068
    71     if ( PHP_VERSION_ID < 70400 ) {
    72 
    73         $msg = esc_html__(
    74             'Your php version is very outdated, the next version of ARVE will require 7.4+ please update (ask your host to update).',
    75             'advanced-responsive-video-embedder'
    76         );
    77 
     69    if ( version_compare( VERSION, '10.0.0-alpha1', '<' ) ) {
    7870        Notices::instance()->register_notice(
    79             'arve-php-outdated-warn-7-4',
    80             'notice-error',
    81             $msg
     71            'ngt-arve-beta',
     72            'notice-info',
     73            wp_kses(
     74                sprintf(
     75                    // Translators: %1$s URL, %2$s version tag.
     76                    __( 'If you can, please help testing the upcoming ARVE version.<br>(1) Download <a href="%1$s">arve.zip</a> (2) Go to Plugins > Add New > Upload Plugin. (3) Install. (4) <a href="%3$s">nextgenthemes.com/support/</a> if something goes wrong.', 'advanced-responsive-video-embedder' ),
     77                    esc_url( 'https://github.com/nextgenthemes/advanced-responsive-video-embedder/releases/latest/download/arve.zip' ),
     78                    esc_url( 'https://nextgenthemes.com/support/' )
     79                ),
     80                ALLOWED_HTML,
     81                array( 'htts', 'https' )
     82            ),
     83            array(
     84                'cap' => 'install_plugins',
     85            )
    8286        );
    8387    }
  • advanced-responsive-video-embedder/tags/9.10.16/readme.txt

    r3048345 r3059372  
    66Tested up to: 6.5
    77Requires PHP: 5.6
    8 Stable tag: 9.10.15
     8Stable tag: 9.10.1
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • advanced-responsive-video-embedder/trunk/advanced-responsive-video-embedder.php

    r3048345 r3059372  
    44 * Plugin URI:        https://nextgenthemes.com/plugins/arve-pro/
    55 * Description:       Easy responsive video embeds via URL (like WordPress) or Shortcodes. Supports almost anything you can imagine.
    6  * Version:           9.10.15
     6 * Version:           9.10.1
    77 * Author:            Nicolas Jonas
    88 * Author URI:        https://nextgenthemes.com
     
    2121// phpcs:disable SlevomatCodingStandard.TypeHints
    2222
    23 const VERSION               = '9.10.15';
     23const VERSION               = '9.10.1';
    2424const PRO_VERSION_REQUIRED  = '5.3.0-alpha1';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/trunk/changelog.md

    r3048345 r3059372  
    33* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
    44* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
     5
     6
     7
    58
    69### 2024-02-29 9.10.15 ###
  • advanced-responsive-video-embedder/trunk/php/Admin/functions-admin.php

    r3043373 r3059372  
    33namespace Nextgenthemes\ARVE\Admin;
    44
     5
     6
     7
     8
     9
     10
    511use const Nextgenthemes\ARVE\PRO_VERSION_REQUIRED;
    6 
    7 use Nextgenthemes\ARVE;
    8 use Nextgenthemes\ARVE\Common\Admin\Notices;
    9 
    10 use function Nextgenthemes\ARVE\Common\ver;
    11 use function Nextgenthemes\ARVE\Common\attr;
    12 use function Nextgenthemes\ARVE\Common\kses_basic;
    13 use function Nextgenthemes\ARVE\Common\enqueue_asset;
    1412
    1513const ALLOWED_HTML = array(
     
    6967    }
    7068
    71     if ( PHP_VERSION_ID < 70400 ) {
    72 
    73         $msg = esc_html__(
    74             'Your php version is very outdated, the next version of ARVE will require 7.4+ please update (ask your host to update).',
    75             'advanced-responsive-video-embedder'
    76         );
    77 
     69    if ( version_compare( VERSION, '10.0.0-alpha1', '<' ) ) {
    7870        Notices::instance()->register_notice(
    79             'arve-php-outdated-warn-7-4',
    80             'notice-error',
    81             $msg
     71            'ngt-arve-beta',
     72            'notice-info',
     73            wp_kses(
     74                sprintf(
     75                    // Translators: %1$s URL, %2$s version tag.
     76                    __( 'If you can, please help testing the upcoming ARVE version.<br>(1) Download <a href="%1$s">arve.zip</a> (2) Go to Plugins > Add New > Upload Plugin. (3) Install. (4) <a href="%3$s">nextgenthemes.com/support/</a> if something goes wrong.', 'advanced-responsive-video-embedder' ),
     77                    esc_url( 'https://github.com/nextgenthemes/advanced-responsive-video-embedder/releases/latest/download/arve.zip' ),
     78                    esc_url( 'https://nextgenthemes.com/support/' )
     79                ),
     80                ALLOWED_HTML,
     81                array( 'htts', 'https' )
     82            ),
     83            array(
     84                'cap' => 'install_plugins',
     85            )
    8286        );
    8387    }
  • advanced-responsive-video-embedder/trunk/readme.txt

    r3048345 r3059372  
    66Tested up to: 6.5
    77Requires PHP: 5.6
    8 Stable tag: 9.10.15
     8Stable tag: 9.10.1
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.