Plugin Directory

Changeset 3418983


Ignore:
Timestamp:
12/13/2025 03:37:34 PM (3 months ago)
Author:
fullworks
Message:

Update to version 6.5.3 from GitHub

Location:
widget-for-eventbrite-api
Files:
10 edited
1 copied

Legend:

Unmodified
Added
Removed
  • widget-for-eventbrite-api/tags/6.5.3/changelog.txt

    r3416777 r3418983  
     1= 6.5.3 =
     2* Fix missing spacing between block elements when stripping HTML for excerpts
     3
    14= 6.5.2 =
    25* Fix long_description=true parameter not displaying full content in excerpts
  • widget-for-eventbrite-api/tags/6.5.3/includes/class-eventbrite-query.php

    r3416777 r3418983  
    166166        foreach ( $this->api_results->events as $wfea_key => $wfea_event ) {
    167167            if ( isset( $this->query_vars['long_description'] ) && true === $this->query_vars['long_description'] ) {
    168                 // Use full description (HTML stripped) for excerpt source
     168                // Use full description (HTML stripped) with breaks between div elements
    169169                $wfea_full_text = ( isset( $wfea_event->long_description ) ? $wfea_event->long_description : $wfea_event->post_content );
    170                 $this->api_results->events[$wfea_key]->wfea_excerpt_text = wp_strip_all_tags( $wfea_full_text );
     170                // Add space after block element boundaries before stripping tags
     171                $wfea_full_text = str_replace( array('</div>', '</p>'), array('</div> ', '</p> '), $wfea_full_text );
     172                $wfea_full_text = wp_strip_all_tags( $wfea_full_text );
     173                $this->api_results->events[$wfea_key]->wfea_excerpt_text = $wfea_full_text;
    171174            } else {
    172175                // Use summary for excerpt source
  • widget-for-eventbrite-api/tags/6.5.3/includes/vendor/composer/installed.php

    r3416777 r3418983  
    22    'root' => array(
    33        'name' => 'fullworks/widget-for-eventbrite-api',
    4         'pretty_version' => '6.5.2',
    5         'version' => '6.5.2.0',
    6         'reference' => '6e0304bf8eabadae1d7460c44ad9843174574d9a',
     4        'pretty_version' => 'v6.5.3',
     5        'version' => '6.5.3.0',
     6        'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../../',
     
    7070        ),
    7171        'fullworks/widget-for-eventbrite-api' => array(
    72             'pretty_version' => '6.5.2',
    73             'version' => '6.5.2.0',
    74             'reference' => '6e0304bf8eabadae1d7460c44ad9843174574d9a',
     72            'pretty_version' => 'v6.5.3',
     73            'version' => '6.5.3.0',
     74            'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c',
    7575            'type' => 'wordpress-plugin',
    7676            'install_path' => __DIR__ . '/../../../',
  • widget-for-eventbrite-api/tags/6.5.3/readme.txt

    r3416777 r3418983  
    33Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode
    44Tested up to: 6.9
    5 Stable tag: 6.5.2
     5Stable tag: 6.5.3
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
  • widget-for-eventbrite-api/tags/6.5.3/widget-for-eventbrite-api.php

    r3416777 r3418983  
    77 * Plugin URI:        https://fullworksplugins.com/products/widget-for-eventbrite/
    88 * Description:       Easily display Eventbrite events on your WordPress site
    9  * Version:           6.5.2
     9 * Version:           6.5.3
    1010 * Requires at least: 5.6
    1111 * Requires PHP:      7.4
     
    4343define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    4444define( 'WIDGET_FOR_EVENTBRITE_API_PLUGINS_TOP_DIR', plugin_dir_path( __DIR__ ) );
    45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.2' );
     45define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.3' );
    4646// Include the plugin autoloader, so we can dynamically include the classes.
    4747require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . 'includes/vendor/autoload.php';
  • widget-for-eventbrite-api/trunk/changelog.txt

    r3416777 r3418983  
     1= 6.5.3 =
     2* Fix missing spacing between block elements when stripping HTML for excerpts
     3
    14= 6.5.2 =
    25* Fix long_description=true parameter not displaying full content in excerpts
  • widget-for-eventbrite-api/trunk/includes/class-eventbrite-query.php

    r3416777 r3418983  
    166166        foreach ( $this->api_results->events as $wfea_key => $wfea_event ) {
    167167            if ( isset( $this->query_vars['long_description'] ) && true === $this->query_vars['long_description'] ) {
    168                 // Use full description (HTML stripped) for excerpt source
     168                // Use full description (HTML stripped) with breaks between div elements
    169169                $wfea_full_text = ( isset( $wfea_event->long_description ) ? $wfea_event->long_description : $wfea_event->post_content );
    170                 $this->api_results->events[$wfea_key]->wfea_excerpt_text = wp_strip_all_tags( $wfea_full_text );
     170                // Add space after block element boundaries before stripping tags
     171                $wfea_full_text = str_replace( array('</div>', '</p>'), array('</div> ', '</p> '), $wfea_full_text );
     172                $wfea_full_text = wp_strip_all_tags( $wfea_full_text );
     173                $this->api_results->events[$wfea_key]->wfea_excerpt_text = $wfea_full_text;
    171174            } else {
    172175                // Use summary for excerpt source
  • widget-for-eventbrite-api/trunk/includes/vendor/composer/installed.php

    r3416777 r3418983  
    22    'root' => array(
    33        'name' => 'fullworks/widget-for-eventbrite-api',
    4         'pretty_version' => '6.5.2',
    5         'version' => '6.5.2.0',
    6         'reference' => '6e0304bf8eabadae1d7460c44ad9843174574d9a',
     4        'pretty_version' => 'v6.5.3',
     5        'version' => '6.5.3.0',
     6        'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../../',
     
    7070        ),
    7171        'fullworks/widget-for-eventbrite-api' => array(
    72             'pretty_version' => '6.5.2',
    73             'version' => '6.5.2.0',
    74             'reference' => '6e0304bf8eabadae1d7460c44ad9843174574d9a',
     72            'pretty_version' => 'v6.5.3',
     73            'version' => '6.5.3.0',
     74            'reference' => 'bc7ee9985cdf4b63bf07b04d7640d9586e54c89c',
    7575            'type' => 'wordpress-plugin',
    7676            'install_path' => __DIR__ . '/../../../',
  • widget-for-eventbrite-api/trunk/readme.txt

    r3416777 r3418983  
    33Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode
    44Tested up to: 6.9
    5 Stable tag: 6.5.2
     5Stable tag: 6.5.3
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
  • widget-for-eventbrite-api/trunk/widget-for-eventbrite-api.php

    r3416777 r3418983  
    77 * Plugin URI:        https://fullworksplugins.com/products/widget-for-eventbrite/
    88 * Description:       Easily display Eventbrite events on your WordPress site
    9  * Version:           6.5.2
     9 * Version:           6.5.3
    1010 * Requires at least: 5.6
    1111 * Requires PHP:      7.4
     
    4343define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
    4444define( 'WIDGET_FOR_EVENTBRITE_API_PLUGINS_TOP_DIR', plugin_dir_path( __DIR__ ) );
    45 define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.2' );
     45define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.3' );
    4646// Include the plugin autoloader, so we can dynamically include the classes.
    4747require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . 'includes/vendor/autoload.php';
Note: See TracChangeset for help on using the changeset viewer.