Plugin Directory

Changeset 3470434


Ignore:
Timestamp:
02/26/2026 03:36:55 PM (4 weeks ago)
Author:
fullworks
Message:

Update to version 6.5.9 from GitHub

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

Legend:

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

    r3465142 r3470434  
     1= 6.5.9 =
     2* Fix calendar date showing wrong day in non-UTC timezones (e.g. Brisbane)
     3* Fix event repetition after page 5 in paginated results (Pro Only)
     4
    15= 6.5.8 =
    26* Fix thumb_width constraint incorrectly applied to card layout
  • widget-for-eventbrite-api/tags/6.5.9/includes/class-freemius-config.php

    r3445634 r3470434  
    1616            require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . '/includes/vendor/freemius/wordpress-sdk/start.php';
    1717            $wfea_fs = fs_dynamic_init( array(
    18                 'id'             => '1330',
    19                 'slug'           => 'widget-for-eventbrite-api',
    20                 'type'           => 'plugin',
    21                 'public_key'     => 'pk_97d4242a859ccad67940512ad19ab',
    22                 'is_premium'     => false,
    23                 'premium_suffix' => '( Pro )',
    24                 'has_addons'     => false,
    25                 'has_paid_plans' => true,
    26                 'trial'          => array(
     18                'id'               => '1330',
     19                'slug'             => 'widget-for-eventbrite-api',
     20                'type'             => 'plugin',
     21                'public_key'       => 'pk_97d4242a859ccad67940512ad19ab',
     22                'is_premium'       => false,
     23                'premium_suffix'   => '( Pro )',
     24                'has_addons'       => false,
     25                'has_paid_plans'   => true,
     26                'trial'            => array(
    2727                    'days'               => 14,
    2828                    'is_require_payment' => true,
    2929                ),
    30                 'navigation'     => 'tabs',
    31                 'menu'           => array(
     30                'navigation'       => 'tabs',
     31                'menu'             => array(
    3232                    'slug'    => 'widget-for-eventbrite-api-settings',
    3333                    'contact' => false,
     
    3737                    ),
    3838                ),
    39                 'is_live'        => true,
     39                'is_live'          => true,
     40                'is_org_compliant' => true,
    4041            ) );
    4142        }
  • widget-for-eventbrite-api/tags/6.5.9/includes/vendor/composer/installed.php

    r3465142 r3470434  
    22    'root' => array(
    33        'name' => 'fullworks/widget-for-eventbrite-api',
    4         'pretty_version' => 'v6.5.8',
    5         'version' => '6.5.8.0',
    6         'reference' => 'c22286a7152d889ebe85a84909db5ba6b331210a',
     4        'pretty_version' => 'v6.5.9',
     5        'version' => '6.5.9.0',
     6        'reference' => '05bd32f14ce49738266fae3dfae0d66ebc145ea8',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../../',
     
    7070        ),
    7171        'fullworks/widget-for-eventbrite-api' => array(
    72             'pretty_version' => 'v6.5.8',
    73             'version' => '6.5.8.0',
    74             'reference' => 'c22286a7152d889ebe85a84909db5ba6b331210a',
     72            'pretty_version' => 'v6.5.9',
     73            'version' => '6.5.9.0',
     74            'reference' => '05bd32f14ce49738266fae3dfae0d66ebc145ea8',
    7575            'type' => 'wordpress-plugin',
    7676            'install_path' => __DIR__ . '/../../../',
  • widget-for-eventbrite-api/tags/6.5.9/readme.txt

    r3465142 r3470434  
    33Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode
    44Tested up to: 6.9
    5 Stable tag: 6.5.8
     5Stable tag: 6.5.9
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
  • widget-for-eventbrite-api/tags/6.5.9/templates__free/parts/calendar_date__free.php

    r3445634 r3470434  
    1010            $wfea_timestamp = strtotime( $data->utilities->get_event_start()->local );
    1111        ?>
    12         <div class="eaw-calendar-date-month"><?php echo wp_date('M', $wfea_timestamp); ?></div>
    13         <div class="eaw-calendar-date-day"><?php echo wp_date('j', $wfea_timestamp); ?></div>
     12        <div class="eaw-calendar-date-month"><?php echo date_i18n('M', $wfea_timestamp); ?></div>
     13        <div class="eaw-calendar-date-day"><?php echo date_i18n('j', $wfea_timestamp); ?></div>
    1414    </div>
    1515<?php endif;
  • widget-for-eventbrite-api/tags/6.5.9/widget-for-eventbrite-api.php

    r3465142 r3470434  
    77 * Plugin URI:        https://fullworksplugins.com/products/widget-for-eventbrite/
    88 * Description:       Easily display Eventbrite events on your WordPress site
    9  * Version:           6.5.8
     9 * Version:           6.5.9
    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.8' );
     45define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.9' );
    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

    r3465142 r3470434  
     1= 6.5.9 =
     2* Fix calendar date showing wrong day in non-UTC timezones (e.g. Brisbane)
     3* Fix event repetition after page 5 in paginated results (Pro Only)
     4
    15= 6.5.8 =
    26* Fix thumb_width constraint incorrectly applied to card layout
  • widget-for-eventbrite-api/trunk/includes/class-freemius-config.php

    r3445634 r3470434  
    1616            require_once WIDGET_FOR_EVENTBRITE_API_PLUGIN_DIR . '/includes/vendor/freemius/wordpress-sdk/start.php';
    1717            $wfea_fs = fs_dynamic_init( array(
    18                 'id'             => '1330',
    19                 'slug'           => 'widget-for-eventbrite-api',
    20                 'type'           => 'plugin',
    21                 'public_key'     => 'pk_97d4242a859ccad67940512ad19ab',
    22                 'is_premium'     => false,
    23                 'premium_suffix' => '( Pro )',
    24                 'has_addons'     => false,
    25                 'has_paid_plans' => true,
    26                 'trial'          => array(
     18                'id'               => '1330',
     19                'slug'             => 'widget-for-eventbrite-api',
     20                'type'             => 'plugin',
     21                'public_key'       => 'pk_97d4242a859ccad67940512ad19ab',
     22                'is_premium'       => false,
     23                'premium_suffix'   => '( Pro )',
     24                'has_addons'       => false,
     25                'has_paid_plans'   => true,
     26                'trial'            => array(
    2727                    'days'               => 14,
    2828                    'is_require_payment' => true,
    2929                ),
    30                 'navigation'     => 'tabs',
    31                 'menu'           => array(
     30                'navigation'       => 'tabs',
     31                'menu'             => array(
    3232                    'slug'    => 'widget-for-eventbrite-api-settings',
    3333                    'contact' => false,
     
    3737                    ),
    3838                ),
    39                 'is_live'        => true,
     39                'is_live'          => true,
     40                'is_org_compliant' => true,
    4041            ) );
    4142        }
  • widget-for-eventbrite-api/trunk/includes/vendor/composer/installed.php

    r3465142 r3470434  
    22    'root' => array(
    33        'name' => 'fullworks/widget-for-eventbrite-api',
    4         'pretty_version' => 'v6.5.8',
    5         'version' => '6.5.8.0',
    6         'reference' => 'c22286a7152d889ebe85a84909db5ba6b331210a',
     4        'pretty_version' => 'v6.5.9',
     5        'version' => '6.5.9.0',
     6        'reference' => '05bd32f14ce49738266fae3dfae0d66ebc145ea8',
    77        'type' => 'wordpress-plugin',
    88        'install_path' => __DIR__ . '/../../../',
     
    7070        ),
    7171        'fullworks/widget-for-eventbrite-api' => array(
    72             'pretty_version' => 'v6.5.8',
    73             'version' => '6.5.8.0',
    74             'reference' => 'c22286a7152d889ebe85a84909db5ba6b331210a',
     72            'pretty_version' => 'v6.5.9',
     73            'version' => '6.5.9.0',
     74            'reference' => '05bd32f14ce49738266fae3dfae0d66ebc145ea8',
    7575            'type' => 'wordpress-plugin',
    7676            'install_path' => __DIR__ . '/../../../',
  • widget-for-eventbrite-api/trunk/readme.txt

    r3465142 r3470434  
    33Tags: eventbrite, widget, events, eventbrite widget, eventbrite shortcode
    44Tested up to: 6.9
    5 Stable tag: 6.5.8
     5Stable tag: 6.5.9
    66Requires PHP: 7.4
    77License: GPL-2.0-or-later
  • widget-for-eventbrite-api/trunk/templates__free/parts/calendar_date__free.php

    r3445634 r3470434  
    1010            $wfea_timestamp = strtotime( $data->utilities->get_event_start()->local );
    1111        ?>
    12         <div class="eaw-calendar-date-month"><?php echo wp_date('M', $wfea_timestamp); ?></div>
    13         <div class="eaw-calendar-date-day"><?php echo wp_date('j', $wfea_timestamp); ?></div>
     12        <div class="eaw-calendar-date-month"><?php echo date_i18n('M', $wfea_timestamp); ?></div>
     13        <div class="eaw-calendar-date-day"><?php echo date_i18n('j', $wfea_timestamp); ?></div>
    1414    </div>
    1515<?php endif;
  • widget-for-eventbrite-api/trunk/widget-for-eventbrite-api.php

    r3465142 r3470434  
    77 * Plugin URI:        https://fullworksplugins.com/products/widget-for-eventbrite/
    88 * Description:       Easily display Eventbrite events on your WordPress site
    9  * Version:           6.5.8
     9 * Version:           6.5.9
    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.8' );
     45define( 'WIDGET_FOR_EVENTBRITE_API_PLUGIN_VERSION', '6.5.9' );
    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.