Plugin Directory

Changeset 3323927


Ignore:
Timestamp:
07/07/2025 10:07:31 PM (9 months ago)
Author:
spapril
Message:

update to v4.0.2

Location:
showpass
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • showpass/trunk/readme.txt

    r3323882 r3323927  
    5656== Changelog ==
    5757
     58= 4.0.2 =
     59* Fix file caching
     60
    5861= 4.0.1 =
    5962* Added membership list shortcode
  • showpass/trunk/showpass-wordpress-plugin-shortcode.php

    r3323882 r3323927  
    10611061        wp_enqueue_script('showpass-sdk', plugins_url( '/js/showpass-sdk.js', __FILE__ ), array('jquery'), null, true );
    10621062      }
    1063         wp_register_script('showpass-calendar-script', plugins_url( '/js/showpass-calendar.js', __FILE__ ), array('jquery'), '3.8.7', true);
     1063        wp_register_script('showpass-calendar-script', plugins_url( '/js/showpass-calendar.js', __FILE__ ), array('jquery'), SHOWPASS_PLUGIN_VERSION, true);
    10641064        wp_register_script('moment-showpass', plugins_url( '/js/moment.js', __FILE__ ), array(), '1.0.1', true);
    10651065        wp_register_script('moment-timezone-showpass', plugins_url( '/js/moment-timezone.js', __FILE__ ), array(), '1.0.2', true);
     
    10691069        wp_enqueue_script('moment-timezone-showpass');
    10701070        wp_enqueue_script('js-cookie', plugins_url( '/js/vendor/js.cookie.js', __FILE__ ), array(), '2.2.0', true);
    1071         wp_enqueue_script('showpass-custom', plugins_url( '/js/showpass-custom.js', __FILE__ ), array('jquery'), '3.8.10', true);
     1071        wp_enqueue_script('showpass-custom', plugins_url( '/js/showpass-custom.js', __FILE__ ), array('jquery'), SHOWPASS_PLUGIN_VERSION, true);
    10721072    }
    10731073}
  • showpass/trunk/showpass-wordpress-plugin.php

    r3323882 r3323927  
    66 Description: List events, display event details and products. Use the Showpass purchase widget for on site ticket & product purchases all with easy to use shortcodes. See our git repo here for full documentation. https://github.com/showpass/showpass-wordpress-plugin
    77 Author: Showpass / Up In Code Inc.
    8  Version: 4.0.1
     8 Version: 4.0.2
    99 Author URI: https://www.showpass.com
    1010 */
     11
     12define('SHOWPASS_PLUGIN_VERSION', '4.0.2');
    1113
    1214if (! defined('ABSPATH')) {
Note: See TracChangeset for help on using the changeset viewer.