Plugin Directory

Changeset 3091452

Timestamp:
05/23/2024 11:31:04 AM (3 months ago)
Author:
nico23
Message:

Update plugin to version 10.0.10 with NextgenThemes WordPress Plugin Deploy

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

Legend:

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

    r3090527 r3091452  
    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:           10.0.9
     6 * Version:           10.0.
    77 * Requires PHP:      7.4
    88 * Requires at least: 6.2
     
    2121namespace Nextgenthemes\ARVE;
    2222
    23 const VERSION               = '10.0.9';
     23const VERSION               = '10.0.';
    2424const PRO_VERSION_REQUIRED  = '6.0.0-alpha3';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/tags/10.0.10/changelog.md

    r3090527 r3091452  
    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-05-22 10.0.9 ###
  • advanced-responsive-video-embedder/tags/10.0.10/php/fn-oembed.php

    r3089965 r3091452  
    6767
    6868    $data  = apply_filters( 'nextgenthemes/arve/oembed_dataparse', $data, $thumbnails );
    69     $html .= '<script type="application/json" data-arve-oembed>' . \wp_json_encode($data, JSON_UNESCAPED_UNICODE, 5) . '</script>';
     69    $html .= sprintf(
     70        '<script type="application/json" data-arve-oembed>%s</script>',
     71        \wp_json_encode($data, JSON_HEX_QUOT | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT, 5)
     72    );
    7073
    7174    return $html;
     
    128131
    129132        $error_code = __FUNCTION__;
    130 
    131         arve_errors()->add( $error_code, $e->getMessage() . ' URL: ' . $url );
     133        $function   = __FUNCTION__;
     134        $url        = $url; // to make intellisense happy
     135
     136        arve_errors()->add( $error_code, $e->getMessage());
    132137        arve_errors()->add_data(
    133             compact( 'html', 'url'),
     138            compact( 'html', 'url'),
    134139            $error_code
    135140        );
  • advanced-responsive-video-embedder/tags/10.0.10/php/fn-shortcodes.php

    r3090527 r3091452  
    4747}
    4848
    49 function error( string $messages, string $code = '' ): string {
    50 
    51     $hide        = false;
    52     $is_dev_mode = (
     49function is_dev_mode(): bool {
     50    return (
    5351        ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ||
    5452        wp_get_development_mode() || // Any 'theme', 'plugin', or 'all'
     
    5654        'local' === wp_get_environment_type()
    5755    );
    58 
    59     if ( str_contains( $code, 'hidden' ) && ! $is_dev_mode ) {
     56}
     57
     58function error( string $messages, string $code = '' ): string {
     59
     60    $hide = false;
     61
     62    if ( str_contains( $code, 'hidden' ) && ! is_dev_mode() ) {
    6063        $hide = true;
    6164    }
     
    9194        $data  = arve_errors()->get_error_data( $code );
    9295
    93         if ( ! empty( $data ) && ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) {
     96        if ( ! empty( $data ) && ) ) {
    9497            // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export
    95             $html .= sprintf( 'Data: %s', var_export( $data, true ) );
     98            $html .= sprintf( '', var_export( $data, true ) );
    9699        }
    97100
  • advanced-responsive-video-embedder/tags/10.0.10/readme.txt

    r3090527 r3091452  
    66Tested up to: 6.5.0
    77Requires PHP: 7.4
    8 Stable tag: 10.0.9
     8Stable tag: 10.0.
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    194194* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
    195195
     196
     197
     198
    196199### 2024-05-22 10.0.9 ###
    197200* Fix: Some Vimeo videos not working without cache working.
  • advanced-responsive-video-embedder/tags/10.0.10/src/block.json

    r3090527 r3091452  
    1414        "odysee"
    1515    ],
    16     "version": "10.0.9",
     16    "version": "10.0.",
    1717    "textdomain": "advanced-responsive-video-embedder",
    1818    "supports": {
  • advanced-responsive-video-embedder/tags/10.0.10/vendor/composer/installed.json

    r3090527 r3091452  
    7070        {
    7171            "name": "nextgenthemes/wp-shared",
    72             "version": "2024.05.22.06.30.34",
    73             "version_normalized": "2024.05.22.06.30.34",
     72            "version": "2024.05.2",
     73            "version_normalized": "2024.05.2",
    7474            "dist": {
    7575                "type": "path",
    7676                "url": "../nextgenthemes/wp-shared",
    77                 "reference": "7f63c35ac7b3da21772208e8523dc24396334932"
     77                "reference": ""
    7878            },
    7979            "require": {
  • advanced-responsive-video-embedder/tags/10.0.10/vendor/composer/installed.php

    r3090527 r3091452  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '3a6a67cc79ef8fb6c1204420b9b0c9a7009d8d23',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-master',
    2424            'version' => 'dev-master',
    25             'reference' => '3a6a67cc79ef8fb6c1204420b9b0c9a7009d8d23',
     25            'reference' => '',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'nextgenthemes/wp-shared' => array(
    32             'pretty_version' => '2024.05.22.06.30.34',
    33             'version' => '2024.05.22.06.30.34',
    34             'reference' => '7f63c35ac7b3da21772208e8523dc24396334932',
     32            'pretty_version' => '2024.05.2',
     33            'version' => '2024.05.2',
     34            'reference' => '',
    3535            'type' => 'wp-package',
    3636            'install_path' => __DIR__ . '/../nextgenthemes/wp-shared',
  • advanced-responsive-video-embedder/tags/10.0.10/vendor/composer/jetpack_autoload_filemap.php

    r3090527 r3091452  
    88return array(
    99    '2d1e3b3e432aed88c61afcb4f6d8c262' => array(
    10         'version' => '2024.05.22.06.30.34',
     10        'version' => '2024.05.2',
    1111        'path'    => $vendorDir . '/nextgenthemes/wp-shared/includes/WP/load-files.php'
    1212    ),
    1313    '83b8ee913c5d2d5a8f26b42bc5db8bfb' => array(
    14         'version' => '2024.05.22.06.30.34',
     14        'version' => '2024.05.2',
    1515        'path'    => $vendorDir . '/nextgenthemes/wp-shared/includes/WP/Admin/load-admin-files.php'
    1616    ),
  • advanced-responsive-video-embedder/tags/10.0.10/vendor/nextgenthemes/wp-shared/composer.json

    r3090527 r3091452  
    2020        "update-alpine": "wget https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js -O ./includes/WP/Admin/alpine.js"
    2121    },
    22     "version": "2024.05.22.06.30.34"
     22    "version": "2024.05.2"
    2323}
  • advanced-responsive-video-embedder/trunk/advanced-responsive-video-embedder.php

    r3090527 r3091452  
    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:           10.0.9
     6 * Version:           10.0.
    77 * Requires PHP:      7.4
    88 * Requires at least: 6.2
     
    2121namespace Nextgenthemes\ARVE;
    2222
    23 const VERSION               = '10.0.9';
     23const VERSION               = '10.0.';
    2424const PRO_VERSION_REQUIRED  = '6.0.0-alpha3';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/trunk/changelog.md

    r3090527 r3091452  
    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-05-22 10.0.9 ###
  • advanced-responsive-video-embedder/trunk/php/fn-oembed.php

    r3089965 r3091452  
    6767
    6868    $data  = apply_filters( 'nextgenthemes/arve/oembed_dataparse', $data, $thumbnails );
    69     $html .= '<script type="application/json" data-arve-oembed>' . \wp_json_encode($data, JSON_UNESCAPED_UNICODE, 5) . '</script>';
     69    $html .= sprintf(
     70        '<script type="application/json" data-arve-oembed>%s</script>',
     71        \wp_json_encode($data, JSON_HEX_QUOT | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT, 5)
     72    );
    7073
    7174    return $html;
     
    128131
    129132        $error_code = __FUNCTION__;
    130 
    131         arve_errors()->add( $error_code, $e->getMessage() . ' URL: ' . $url );
     133        $function   = __FUNCTION__;
     134        $url        = $url; // to make intellisense happy
     135
     136        arve_errors()->add( $error_code, $e->getMessage());
    132137        arve_errors()->add_data(
    133             compact( 'html', 'url'),
     138            compact( 'html', 'url'),
    134139            $error_code
    135140        );
  • advanced-responsive-video-embedder/trunk/php/fn-shortcodes.php

    r3090527 r3091452  
    4747}
    4848
    49 function error( string $messages, string $code = '' ): string {
    50 
    51     $hide        = false;
    52     $is_dev_mode = (
     49function is_dev_mode(): bool {
     50    return (
    5351        ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ||
    5452        wp_get_development_mode() || // Any 'theme', 'plugin', or 'all'
     
    5654        'local' === wp_get_environment_type()
    5755    );
    58 
    59     if ( str_contains( $code, 'hidden' ) && ! $is_dev_mode ) {
     56}
     57
     58function error( string $messages, string $code = '' ): string {
     59
     60    $hide = false;
     61
     62    if ( str_contains( $code, 'hidden' ) && ! is_dev_mode() ) {
    6063        $hide = true;
    6164    }
     
    9194        $data  = arve_errors()->get_error_data( $code );
    9295
    93         if ( ! empty( $data ) && ( defined( 'WP_DEBUG' ) && WP_DEBUG ) ) {
     96        if ( ! empty( $data ) && ) ) {
    9497            // phpcs:ignore WordPress.PHP.DevelopmentFunctions.error_log_var_export
    95             $html .= sprintf( 'Data: %s', var_export( $data, true ) );
     98            $html .= sprintf( '', var_export( $data, true ) );
    9699        }
    97100
  • advanced-responsive-video-embedder/trunk/readme.txt

    r3090527 r3091452  
    66Tested up to: 6.5.0
    77Requires PHP: 7.4
    8 Stable tag: 10.0.9
     8Stable tag: 10.0.
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    194194* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
    195195
     196
     197
     198
    196199### 2024-05-22 10.0.9 ###
    197200* Fix: Some Vimeo videos not working without cache working.
  • advanced-responsive-video-embedder/trunk/src/block.json

    r3090527 r3091452  
    1414        "odysee"
    1515    ],
    16     "version": "10.0.9",
     16    "version": "10.0.",
    1717    "textdomain": "advanced-responsive-video-embedder",
    1818    "supports": {
  • advanced-responsive-video-embedder/trunk/vendor/composer/installed.json

    r3090527 r3091452  
    7070        {
    7171            "name": "nextgenthemes/wp-shared",
    72             "version": "2024.05.22.06.30.34",
    73             "version_normalized": "2024.05.22.06.30.34",
     72            "version": "2024.05.2",
     73            "version_normalized": "2024.05.2",
    7474            "dist": {
    7575                "type": "path",
    7676                "url": "../nextgenthemes/wp-shared",
    77                 "reference": "7f63c35ac7b3da21772208e8523dc24396334932"
     77                "reference": ""
    7878            },
    7979            "require": {
  • advanced-responsive-video-embedder/trunk/vendor/composer/installed.php

    r3090527 r3091452  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '3a6a67cc79ef8fb6c1204420b9b0c9a7009d8d23',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-master',
    2424            'version' => 'dev-master',
    25             'reference' => '3a6a67cc79ef8fb6c1204420b9b0c9a7009d8d23',
     25            'reference' => '',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'nextgenthemes/wp-shared' => array(
    32             'pretty_version' => '2024.05.22.06.30.34',
    33             'version' => '2024.05.22.06.30.34',
    34             'reference' => '7f63c35ac7b3da21772208e8523dc24396334932',
     32            'pretty_version' => '2024.05.2',
     33            'version' => '2024.05.2',
     34            'reference' => '',
    3535            'type' => 'wp-package',
    3636            'install_path' => __DIR__ . '/../nextgenthemes/wp-shared',
  • advanced-responsive-video-embedder/trunk/vendor/composer/jetpack_autoload_filemap.php

    r3090527 r3091452  
    88return array(
    99    '2d1e3b3e432aed88c61afcb4f6d8c262' => array(
    10         'version' => '2024.05.22.06.30.34',
     10        'version' => '2024.05.2',
    1111        'path'    => $vendorDir . '/nextgenthemes/wp-shared/includes/WP/load-files.php'
    1212    ),
    1313    '83b8ee913c5d2d5a8f26b42bc5db8bfb' => array(
    14         'version' => '2024.05.22.06.30.34',
     14        'version' => '2024.05.2',
    1515        'path'    => $vendorDir . '/nextgenthemes/wp-shared/includes/WP/Admin/load-admin-files.php'
    1616    ),
  • advanced-responsive-video-embedder/trunk/vendor/nextgenthemes/wp-shared/composer.json

    r3090527 r3091452  
    2020        "update-alpine": "wget https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js -O ./includes/WP/Admin/alpine.js"
    2121    },
    22     "version": "2024.05.22.06.30.34"
     22    "version": "2024.05.2"
    2323}
Note: See TracChangeset for help on using the changeset viewer.