Plugin Directory

Changeset 3088086

Timestamp:
05/17/2024 05:45:40 AM (2 months ago)
Author:
nico23
Message:

Update plugin to version 10.0.6 with NextgenThemes WordPress Plugin Deploy

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

Legend:

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

    r3086767 r3088086  
    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.5
     6 * Version:           10.0.
    77 * Requires PHP:      7.4
    88 * Requires at least: 6.2
     
    2121namespace Nextgenthemes\ARVE;
    2222
    23 const VERSION               = '10.0.5';
     23const VERSION               = '10.0.';
    2424const PRO_VERSION_REQUIRED  = '6.0.0-alpha3';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/tags/10.0.6/build/admin.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array(), 'version' => '7ad46dc593ab8195bd4a');
     1<?php return array('dependencies' => array(), 'version' => '');
  • advanced-responsive-video-embedder/tags/10.0.6/build/block.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'defa2432f5792c78d9d7');
     1<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => '7');
  • advanced-responsive-video-embedder/tags/10.0.6/build/main.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array(), 'version' => 'e54450763c31561930eb');
     1<?php return array('dependencies' => array(), 'version' => '');
  • advanced-responsive-video-embedder/tags/10.0.6/changelog.md

    r3086767 r3088086  
    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
     8
     9
     10
     11
    512### 2024-05-15 10.0.5 ###
    613* Fix?: Initialize deletion of oembed caches later.
  • advanced-responsive-video-embedder/tags/10.0.6/php/Admin/fn-settings-page.php

    r3086767 r3088086  
    3838
    3939    <div x-show="'debug' === tab">
    40         <?php require_once __DIR__ . '/partials/debug-info-textarea.php'; ?>
    4140
    42         <div>
    43             <button @click="deleteOembedCache();" class="button-primary" style="margin-inline-end: 1em;"><?php esc_html_e( 'Delete oEmbed Cache', 'advanced-responsive-video-embedder' ); ?></button>
     41        <div style="margin-top: 1.2rem; margin-bottom: 1.2rem;">
     42            <button @click="deleteOembedCache();" class="button-primary" style="margin-inline-end: 1em;">
     43                <?php esc_html_e( 'Delete oEmbed Cache', 'advanced-responsive-video-embedder' ); ?>
     44            </button>
    4445            <span x-text="message"></span>
    4546        </div>
     47
     48
    4649    </div>
    4750
     
    6568
    6669function settings_sidebar(): void {
    67     ?>
    6870
    69     <?php
    7071    if ( ! current_user_can('install_plugins') ) {
    7172        echo '<div class="ngt-sidebar-box">';
    72         esc_html_e( 'Note that you are logged in with a user who that can\'t install plugins, ask someone who can if you are interrested in ARVE Extensions.', 'advanced-responsive-video-embedder' );
     73        esc_html_e( 'Note that you are logged in with a user who that can\'t install plugins, ask someone who can if you are interested in ARVE Extensions.', 'advanced-responsive-video-embedder' );
    7374        echo '</div>';
    7475    }
     
    8990
    9091    print_arve_news();
    91     ?>
    92 
    93     <?php
    9492}
    9593
     
    158156}
    159157
    160 // unused, trigger recaching is rebuild is probably better, also there this leaves the times in the DB so will this even work?
     158// unused, trigger recaching is rebuild is probably better, also there this leaves the times in the DB so will this even work?
    161159function delete_oembed_caches(): void {
    162160
  • advanced-responsive-video-embedder/tags/10.0.6/php/Video.php

    r3086767 r3088086  
    118118    }
    119119
    120     public function build_video(): string {
     120    /**
     121     * @return string|WP_REST_Response The built video, error message or REST response.
     122     */
     123    public function build_video() {
    121124
    122125        $html = '';
     
    139142                }
    140143            }
    141 
    142             return apply_filters( 'nextgenthemes/arve/html', $html, get_object_vars($this) );
    143 
    144144        } catch ( \Exception $e ) {
    145145
     
    155155            $html .= get_error_html();
    156156            $html .= $this->get_debug_info();
    157 
    158             return $html;
    159         }
     157        }
     158
     159       
    160160    }
    161161
  • advanced-responsive-video-embedder/tags/10.0.6/php/fn-oembed.php

    r3084997 r3088086  
    6767
    6868    $data  = apply_filters( 'nextgenthemes/arve/oembed_dataparse', $data, $thumbnails );
    69     $html .= sprintf( "<template data-arve='%s'></template>", \wp_json_encode($data, JSON_HEX_APOS) );
     69    $html .= sprintf( "<template data-arve='%s'></template>", \wp_json_encode($data, JSON_HEX_ );
    7070
    7171    return $html;
     
    114114}
    115115
    116 /**
    117  * Undocumented function
    118  */
    119116function extract_oembed_json( string $html, string $url ): ?object {
    120117
     
    125122    }
    126123
    127     $data = json_decode( $data, false, 5, JSON_HEX_APOS );
    128 
    129     if ( json_last_error() !== JSON_ERROR_NONE ) {
    130 
    131         $error_code = esc_attr( "$url-extract-json" );
    132 
    133         arve_errors()->add( $error_code, 'json decode error code: ' . json_last_error() . '<br>From url: ' . $url );
    134         arve_errors()->add_data(
    135             compact('html', 'matches', 'data', 'a'),
    136             $error_code
    137         );
    138     }
    139 
    140     return $data;
    141 }
    142 
    143 /**
    144  * Undocumented function
    145  */
    146 function extract_oembed_json_old( string $html, string $url ): ?object {
    147 
    148     \preg_match( '#(?<=data-arve-oembed>).*?(?=</script>)#s', $html, $matches );
    149 
    150     if ( empty( $matches[0] ) ) {
    151         return null;
    152     }
    153 
    154     $data = json_decode( $matches[0], false, 512, JSON_UNESCAPED_UNICODE );
     124    $data = json_decode( $data, false, 5, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP );
    155125
    156126    if ( json_last_error() !== JSON_ERROR_NONE ) {
  • advanced-responsive-video-embedder/tags/10.0.6/php/fn-shortcodes.php

    r3086767 r3088086  
    55use const Nextgenthemes\ARVE\ALLOWED_HTML;
    66
    7 function shortcode( array $a ): string {
     7/**
     8 * Processes the shortcode attributes and builds the video html.
     9 *
     10 * @param array $a The array of shortcode attributes.
     11 * @return string|WP_REST_Response The generated video output.
     12 */
     13function shortcode( array $a ) {
    814
    915    $a['errors']              = new \WP_Error();
     
    94100}
    95101
    96 function build_video( array $input_atts ): string {
     102/**
     103 * Builds a video based on the input attributes.
     104 *
     105 * @param array $input_atts The input attributes for the video.
     106 * @return string|WP_REST_Response The built video.
     107 */
     108function build_video( array $input_atts ) {
    97109
    98110    if ( ! empty( $input_atts['errors'] ) ) {
  • advanced-responsive-video-embedder/tags/10.0.6/php/init.php

    r3086767 r3088086  
    118118    // Get post meta oEmbed caches
    119119    $oembed_post_meta_post_ids = (array) $wpdb->get_col(
    120         "SELECT DISTINCT post_id FROM $wpdb->postmeta WHERE meta_key LIKE '%_oembed_%'"
     120        $wpdb->prepare(
     121            "SELECT DISTINCT post_id FROM $wpdb->postmeta WHERE meta_key LIKE %s",
     122            $wpdb->esc_like( '_oembed_' ) . '%'
     123        )
    121124    );
    122125
     
    129132    // Get transient oEmbed caches
    130133    $oembed_transients = $wpdb->get_col(
    131         "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%_transient_oembed_%'"
     134        $wpdb->prepare(
     135            "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s",
     136            $wpdb->esc_like( '_transient_oembed_' ) . '%'
     137        )
    132138    );
    133139
  • advanced-responsive-video-embedder/tags/10.0.6/readme.md

    r3084997 r3088086  
    1414* [Privacy](https://nextgenthemes.com/plugins/arve-privacy) for DSGVO complienace, self hosted thumbnails, load YouTube videos via an invideo.us instance.
    1515* [Sticky Videos](https://nextgenthemes.com/plugins/arve-sticky-videos/)
    16 * [Random Video](https://nextgenthemes.com/plugins/arve-privacy)
     16* [Random Video](https://nextgenthemes.com/plugins/arve-)
    1717
    1818If you have an idea for a functionality or addon you like to pay for, please [reach out](https://nextgenthemes.com/contact/).
  • advanced-responsive-video-embedder/tags/10.0.6/readme.txt

    r3086767 r3088086  
    66Tested up to: 6.5.0
    77Requires PHP: 7.4
    8 Stable tag: 10.0.5
     8Stable tag: 10.0.
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    193193* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
    194194* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
     195
     196
     197
     198
     199
     200
     201
    195202### 2024-05-15 10.0.5 ###
    196203* Fix?: Initialize deletion of oembed caches later.
  • advanced-responsive-video-embedder/tags/10.0.6/src/block.json

    r3086767 r3088086  
    1414        "odysee"
    1515    ],
    16     "version": "10.0.4",
     16    "version": "10.0.",
    1717    "textdomain": "advanced-responsive-video-embedder",
    1818    "supports": {
  • advanced-responsive-video-embedder/tags/10.0.6/vendor/composer/installed.json

    r3086767 r3088086  
    7070        {
    7171            "name": "nextgenthemes/wp-shared",
    72             "version": "2024.05.15.01.56.34",
    73             "version_normalized": "2024.05.15.01.56.34",
     72            "version": "2024.05.1",
     73            "version_normalized": "2024.05.1",
    7474            "dist": {
    7575                "type": "path",
    7676                "url": "../nextgenthemes/wp-shared",
    77                 "reference": "71947c2cf5a951e2772522cd9b476447fb5f7e14"
     77                "reference": ""
    7878            },
    7979            "require": {
  • advanced-responsive-video-embedder/tags/10.0.6/vendor/composer/installed.php

    r3086767 r3088086  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '7e933292795842b8afefa6861d282ff86296baf0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-master',
    2424            'version' => 'dev-master',
    25             'reference' => '7e933292795842b8afefa6861d282ff86296baf0',
     25            'reference' => '',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'nextgenthemes/wp-shared' => array(
    32             'pretty_version' => '2024.05.15.01.56.34',
    33             'version' => '2024.05.15.01.56.34',
    34             'reference' => '71947c2cf5a951e2772522cd9b476447fb5f7e14',
     32            'pretty_version' => '2024.05.1',
     33            'version' => '2024.05.1',
     34            'reference' => '',
    3535            'type' => 'wp-package',
    3636            'install_path' => __DIR__ . '/../nextgenthemes/wp-shared',
  • advanced-responsive-video-embedder/tags/10.0.6/vendor/composer/jetpack_autoload_filemap.php

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

    r3086767 r3088086  
    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.15.01.56.34"
     22    "version": "2024.05.1"
    2323}
  • advanced-responsive-video-embedder/tags/10.0.6/vendor/nextgenthemes/wp-shared/includes/WP/Admin/fn-settings.php

    r3084997 r3088086  
    293293                        printf(
    294294                            '<option %s>%s</option>',
    295                             [   
     295                            [ 
    296296                                'value' => $k,
    297297                                'selected' => $first
    298                             ],
     298                            ],
    299299                            esc_html( $v )
    300300                        );
  • advanced-responsive-video-embedder/tags/10.0.6/vendor/nextgenthemes/wp-shared/includes/WP/Admin/settings.css

    r3084997 r3088086  
    2626        text-underline-offset: 2px;
    2727    }
    28 
    2928}
    3029
     
    10099    height: 1000px;
    101100    max-height: calc(100vh - 150px);
    102     margin-top: 2em;
    103101    font-family: monospace;
    104102}
  • advanced-responsive-video-embedder/trunk/advanced-responsive-video-embedder.php

    r3086767 r3088086  
    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.5
     6 * Version:           10.0.
    77 * Requires PHP:      7.4
    88 * Requires at least: 6.2
     
    2121namespace Nextgenthemes\ARVE;
    2222
    23 const VERSION               = '10.0.5';
     23const VERSION               = '10.0.';
    2424const PRO_VERSION_REQUIRED  = '6.0.0-alpha3';
    2525const NUM_TRACKS            = 3;
  • advanced-responsive-video-embedder/trunk/build/admin.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array(), 'version' => '7ad46dc593ab8195bd4a');
     1<?php return array('dependencies' => array(), 'version' => '');
  • advanced-responsive-video-embedder/trunk/build/block.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => 'defa2432f5792c78d9d7');
     1<?php return array('dependencies' => array('react', 'wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n', 'wp-server-side-render'), 'version' => '7');
  • advanced-responsive-video-embedder/trunk/build/main.asset.php

    r3084997 r3088086  
    1 <?php return array('dependencies' => array(), 'version' => 'e54450763c31561930eb');
     1<?php return array('dependencies' => array(), 'version' => '');
  • advanced-responsive-video-embedder/trunk/changelog.md

    r3086767 r3088086  
    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
     8
     9
     10
     11
    512### 2024-05-15 10.0.5 ###
    613* Fix?: Initialize deletion of oembed caches later.
  • advanced-responsive-video-embedder/trunk/php/Admin/fn-settings-page.php

    r3086767 r3088086  
    3838
    3939    <div x-show="'debug' === tab">
    40         <?php require_once __DIR__ . '/partials/debug-info-textarea.php'; ?>
    4140
    42         <div>
    43             <button @click="deleteOembedCache();" class="button-primary" style="margin-inline-end: 1em;"><?php esc_html_e( 'Delete oEmbed Cache', 'advanced-responsive-video-embedder' ); ?></button>
     41        <div style="margin-top: 1.2rem; margin-bottom: 1.2rem;">
     42            <button @click="deleteOembedCache();" class="button-primary" style="margin-inline-end: 1em;">
     43                <?php esc_html_e( 'Delete oEmbed Cache', 'advanced-responsive-video-embedder' ); ?>
     44            </button>
    4445            <span x-text="message"></span>
    4546        </div>
     47
     48
    4649    </div>
    4750
     
    6568
    6669function settings_sidebar(): void {
    67     ?>
    6870
    69     <?php
    7071    if ( ! current_user_can('install_plugins') ) {
    7172        echo '<div class="ngt-sidebar-box">';
    72         esc_html_e( 'Note that you are logged in with a user who that can\'t install plugins, ask someone who can if you are interrested in ARVE Extensions.', 'advanced-responsive-video-embedder' );
     73        esc_html_e( 'Note that you are logged in with a user who that can\'t install plugins, ask someone who can if you are interested in ARVE Extensions.', 'advanced-responsive-video-embedder' );
    7374        echo '</div>';
    7475    }
     
    8990
    9091    print_arve_news();
    91     ?>
    92 
    93     <?php
    9492}
    9593
     
    158156}
    159157
    160 // unused, trigger recaching is rebuild is probably better, also there this leaves the times in the DB so will this even work?
     158// unused, trigger recaching is rebuild is probably better, also there this leaves the times in the DB so will this even work?
    161159function delete_oembed_caches(): void {
    162160
  • advanced-responsive-video-embedder/trunk/php/Video.php

    r3086767 r3088086  
    118118    }
    119119
    120     public function build_video(): string {
     120    /**
     121     * @return string|WP_REST_Response The built video, error message or REST response.
     122     */
     123    public function build_video() {
    121124
    122125        $html = '';
     
    139142                }
    140143            }
    141 
    142             return apply_filters( 'nextgenthemes/arve/html', $html, get_object_vars($this) );
    143 
    144144        } catch ( \Exception $e ) {
    145145
     
    155155            $html .= get_error_html();
    156156            $html .= $this->get_debug_info();
    157 
    158             return $html;
    159         }
     157        }
     158
     159       
    160160    }
    161161
  • advanced-responsive-video-embedder/trunk/php/fn-oembed.php

    r3084997 r3088086  
    6767
    6868    $data  = apply_filters( 'nextgenthemes/arve/oembed_dataparse', $data, $thumbnails );
    69     $html .= sprintf( "<template data-arve='%s'></template>", \wp_json_encode($data, JSON_HEX_APOS) );
     69    $html .= sprintf( "<template data-arve='%s'></template>", \wp_json_encode($data, JSON_HEX_ );
    7070
    7171    return $html;
     
    114114}
    115115
    116 /**
    117  * Undocumented function
    118  */
    119116function extract_oembed_json( string $html, string $url ): ?object {
    120117
     
    125122    }
    126123
    127     $data = json_decode( $data, false, 5, JSON_HEX_APOS );
    128 
    129     if ( json_last_error() !== JSON_ERROR_NONE ) {
    130 
    131         $error_code = esc_attr( "$url-extract-json" );
    132 
    133         arve_errors()->add( $error_code, 'json decode error code: ' . json_last_error() . '<br>From url: ' . $url );
    134         arve_errors()->add_data(
    135             compact('html', 'matches', 'data', 'a'),
    136             $error_code
    137         );
    138     }
    139 
    140     return $data;
    141 }
    142 
    143 /**
    144  * Undocumented function
    145  */
    146 function extract_oembed_json_old( string $html, string $url ): ?object {
    147 
    148     \preg_match( '#(?<=data-arve-oembed>).*?(?=</script>)#s', $html, $matches );
    149 
    150     if ( empty( $matches[0] ) ) {
    151         return null;
    152     }
    153 
    154     $data = json_decode( $matches[0], false, 512, JSON_UNESCAPED_UNICODE );
     124    $data = json_decode( $data, false, 5, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP );
    155125
    156126    if ( json_last_error() !== JSON_ERROR_NONE ) {
  • advanced-responsive-video-embedder/trunk/php/fn-shortcodes.php

    r3086767 r3088086  
    55use const Nextgenthemes\ARVE\ALLOWED_HTML;
    66
    7 function shortcode( array $a ): string {
     7/**
     8 * Processes the shortcode attributes and builds the video html.
     9 *
     10 * @param array $a The array of shortcode attributes.
     11 * @return string|WP_REST_Response The generated video output.
     12 */
     13function shortcode( array $a ) {
    814
    915    $a['errors']              = new \WP_Error();
     
    94100}
    95101
    96 function build_video( array $input_atts ): string {
     102/**
     103 * Builds a video based on the input attributes.
     104 *
     105 * @param array $input_atts The input attributes for the video.
     106 * @return string|WP_REST_Response The built video.
     107 */
     108function build_video( array $input_atts ) {
    97109
    98110    if ( ! empty( $input_atts['errors'] ) ) {
  • advanced-responsive-video-embedder/trunk/php/init.php

    r3086767 r3088086  
    118118    // Get post meta oEmbed caches
    119119    $oembed_post_meta_post_ids = (array) $wpdb->get_col(
    120         "SELECT DISTINCT post_id FROM $wpdb->postmeta WHERE meta_key LIKE '%_oembed_%'"
     120        $wpdb->prepare(
     121            "SELECT DISTINCT post_id FROM $wpdb->postmeta WHERE meta_key LIKE %s",
     122            $wpdb->esc_like( '_oembed_' ) . '%'
     123        )
    121124    );
    122125
     
    129132    // Get transient oEmbed caches
    130133    $oembed_transients = $wpdb->get_col(
    131         "SELECT option_name FROM $wpdb->options WHERE option_name LIKE '%_transient_oembed_%'"
     134        $wpdb->prepare(
     135            "SELECT option_name FROM $wpdb->options WHERE option_name LIKE %s",
     136            $wpdb->esc_like( '_transient_oembed_' ) . '%'
     137        )
    132138    );
    133139
  • advanced-responsive-video-embedder/trunk/readme.md

    r3084997 r3088086  
    1414* [Privacy](https://nextgenthemes.com/plugins/arve-privacy) for DSGVO complienace, self hosted thumbnails, load YouTube videos via an invideo.us instance.
    1515* [Sticky Videos](https://nextgenthemes.com/plugins/arve-sticky-videos/)
    16 * [Random Video](https://nextgenthemes.com/plugins/arve-privacy)
     16* [Random Video](https://nextgenthemes.com/plugins/arve-)
    1717
    1818If you have an idea for a functionality or addon you like to pay for, please [reach out](https://nextgenthemes.com/contact/).
  • advanced-responsive-video-embedder/trunk/readme.txt

    r3086767 r3088086  
    66Tested up to: 6.5.0
    77Requires PHP: 7.4
    8 Stable tag: 10.0.5
     8Stable tag: 10.0.
    99License: GPL-3.0
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    193193* [ARVE Pro changelog](https://nextgenthemes.com/plugins/arve-pro/#changelog)
    194194* [ARVE Random Videos changelog](https://nextgenthemes.com/plugins/arve-random-video/#changelog)
     195
     196
     197
     198
     199
     200
     201
    195202### 2024-05-15 10.0.5 ###
    196203* Fix?: Initialize deletion of oembed caches later.
  • advanced-responsive-video-embedder/trunk/src/block.json

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

    r3086767 r3088086  
    7070        {
    7171            "name": "nextgenthemes/wp-shared",
    72             "version": "2024.05.15.01.56.34",
    73             "version_normalized": "2024.05.15.01.56.34",
     72            "version": "2024.05.1",
     73            "version_normalized": "2024.05.1",
    7474            "dist": {
    7575                "type": "path",
    7676                "url": "../nextgenthemes/wp-shared",
    77                 "reference": "71947c2cf5a951e2772522cd9b476447fb5f7e14"
     77                "reference": ""
    7878            },
    7979            "require": {
  • advanced-responsive-video-embedder/trunk/vendor/composer/installed.php

    r3086767 r3088086  
    44        'pretty_version' => 'dev-master',
    55        'version' => 'dev-master',
    6         'reference' => '7e933292795842b8afefa6861d282ff86296baf0',
     6        'reference' => '',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../',
     
    2323            'pretty_version' => 'dev-master',
    2424            'version' => 'dev-master',
    25             'reference' => '7e933292795842b8afefa6861d282ff86296baf0',
     25            'reference' => '',
    2626            'type' => 'wordpress-plugin',
    2727            'install_path' => __DIR__ . '/../../',
     
    3030        ),
    3131        'nextgenthemes/wp-shared' => array(
    32             'pretty_version' => '2024.05.15.01.56.34',
    33             'version' => '2024.05.15.01.56.34',
    34             'reference' => '71947c2cf5a951e2772522cd9b476447fb5f7e14',
     32            'pretty_version' => '2024.05.1',
     33            'version' => '2024.05.1',
     34            'reference' => '',
    3535            'type' => 'wp-package',
    3636            'install_path' => __DIR__ . '/../nextgenthemes/wp-shared',
  • advanced-responsive-video-embedder/trunk/vendor/composer/jetpack_autoload_filemap.php

    r3086767 r3088086  
    88return array(
    99    '2d1e3b3e432aed88c61afcb4f6d8c262' => array(
    10         'version' => '2024.05.15.01.56.34',
     10        'version' => '2024.05.1',
    1111        'path'    => $vendorDir . '/nextgenthemes/wp-shared/includes/WP/load-files.php'
    1212    ),
    1313    '83b8ee913c5d2d5a8f26b42bc5db8bfb' => array(
    14         'version' => '2024.05.15.01.56.34',
     14        'version' => '2024.05.1',
    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

    r3086767 r3088086  
    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.15.01.56.34"
     22    "version": "2024.05.1"
    2323}
  • advanced-responsive-video-embedder/trunk/vendor/nextgenthemes/wp-shared/includes/WP/Admin/fn-settings.php

    r3084997 r3088086  
    293293                        printf(
    294294                            '<option %s>%s</option>',
    295                             [   
     295                            [ 
    296296                                'value' => $k,
    297297                                'selected' => $first
    298                             ],
     298                            ],
    299299                            esc_html( $v )
    300300                        );
  • advanced-responsive-video-embedder/trunk/vendor/nextgenthemes/wp-shared/includes/WP/Admin/settings.css

    r3084997 r3088086  
    2626        text-underline-offset: 2px;
    2727    }
    28 
    2928}
    3029
     
    10099    height: 1000px;
    101100    max-height: calc(100vh - 150px);
    102     margin-top: 2em;
    103101    font-family: monospace;
    104102}
Note: See TracChangeset for help on using the changeset viewer.