Plugin Directory

Changeset 3006142


Ignore:
Timestamp:
12/06/2023 11:08:13 AM (2 years ago)
Author:
sided
Message:

1.2.9 - Add version to Sided script

Location:
sided/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sided/trunk/partials/functions.php

    r2976952 r3006142  
    55function sided_include_sided_scripts()
    66{
     7    global $wp_version;
     8
    79    $sided_initiate_script = get_option('sided_sided_initiate_script');
    810    if ($sided_initiate_script == 'true') {
    9         wp_enqueue_script('Sided embed script', SIDED_AWS_S3_BASE_URL . '/embed-assets/load.min.js');
     11        wp_enqueue_script(
     12            'Sided embed script',
     13            sprintf('%s/embed-assets/load.min.js', SIDED_AWS_S3_BASE_URL),
     14            [],
     15            sprintf('%s_9.3.5', $wp_version)
     16        );
    1017
    1118        add_filter( 'script_loader_tag', function ( $tag, $handle ) {
  • sided/trunk/readme.txt

    r2986550 r3006142  
    55Requires at least: 4.7
    66Tested up to: 6.2
    7 Stable tag: 1.2.8
     7Stable tag: 1.2.9
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    3838
    3939== Changelog ==
     40= 1.2.9 =
     41* Set specific version for the Sided script
     42
    4043= 1.2.8 =
    4144* Added option to add link and tags to sides
  • sided/trunk/sided.php

    r2986550 r3006142  
    44* Plugin URI: https://sided.co/
    55* Description: It is a wordpress plugin to embed sided polls in your Wordpress website.
    6 * Version: 1.2.8
     6* Version: 1.2.9
    77* Author: Sided
    88**/
    99
    10 define( 'SIDED_VERSION', '1.2.8' );
     10define( 'SIDED_VERSION', '1.2.9' );
    1111define( 'SIDED_PLUGIN', __FILE__ );
    1212define( 'SIDED_PLUGIN_DIR', untrailingslashit( dirname( SIDED_PLUGIN ) ) );
Note: See TracChangeset for help on using the changeset viewer.