Plugin Directory

Changeset 3104023


Ignore:
Timestamp:
06/18/2024 10:57:00 AM (22 months ago)
Author:
roberthoward
Message:

version 2.1.1

Location:
dailystory/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • dailystory/trunk/dailystory.php

    r3102916 r3104023  
    44Plugin URI: https://docs.dailystory.com/article/8omibw2171-integrations-wordpress
    55Description: The DailyStory plugin simplifies the process of adding popups, web forms, conversion tracking, and other features to your WordPress website.
    6 Version: 2.1.0
     6Version: 2.1.1
    77Author: DailyStory
    88Author URI: https://www.dailystory.com/integrations/wordpress/
  • dailystory/trunk/includes/class-dailystory-shortcodes.php

    r3102915 r3104023  
    2121        }
    2222    }
     23
    2324    // ──────────────────────────────────────────────
    2425    // Returns the body content from a URL
     
    9394        // normalize attribute keys, lowercase
    9495        $atts = array_change_key_case((array)$atts, CASE_LOWER);
     96        $version = "2.1.1";
    9597 
    9698        // override default attributes with user attributes
     
    100102
    101103        // Add the script reference, pulled from DailyStory, but eventually will be served from a CDN
    102         wp_register_script('ds-landingpages', 'https://pages.dailystory.com/bundles/dailystory-landingpage', null,'2.0.6', true);
     104        wp_register_script('ds-landingpages', 'https://pages.dailystory.com/bundles/dailystory-landingpage', null,$version, true);
    103105        wp_enqueue_script('ds-landingpages');
    104106
    105107        // enqueue css
    106         wp_enqueue_style('ds-webform','https://forms.dailystory.com/content/hosted-webform-min', null, '2.0.6', 'all');
     108        wp_enqueue_style('ds-webform','https://forms.dailystory.com/content/hosted-webform-min', null, $version, 'all');
    107109
    108110            // get the tenant uid
  • dailystory/trunk/readme.txt

    r3102916 r3104023  
    44Requires at least: 4.0
    55Tested up to: 6.5.3
    6 Stable tag: 2.1.0
     6Stable tag: 2.1.1
    77License: GNU General Public License v2.0 or later
    88
     
    9393## Changelog
    9494
     95### 2.1.1
     96* Support for redirect url in web form and new javascript events
     97
    9598### 2.0.6
    9699* Minor updates to support minified CSS
Note: See TracChangeset for help on using the changeset viewer.