Plugin Directory

Changeset 3193522


Ignore:
Timestamp:
11/20/2024 10:09:45 PM (17 months ago)
Author:
sharedvision
Message:

version bump

Location:
shared-vision-light
Files:
24 added
2 edited

Legend:

Unmodified
Added
Removed
  • shared-vision-light/trunk/readme.txt

    r3069265 r3193522  
    1 === Plugin Name ===
    2 Contributors: Shared Vision
     1=== Shared Vision ===
     2Contributors: sharedvision
    33Donate link: https://joinsharedvision.com/
    44Tags:
    55Requires at least: 2.1.0
    6 Tested up to: 6.5.0
    7 Stable tag: 1.1.1
     6Tested up to: 6.7.0
     7Stable tag: 1.1.2
    88Requires PHP: 5.4
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 The Shared Vision Light Wordpress plugin brings power of the Shared Vision platform to your site! We made this plugin specifically for older websites, where the Wordpress or PHP version are not current.
     12The Shared Vision Light Wordpress plugin connects to your Shared Vision account granting your Wordpress website direct access!
    1313
    1414== Description ==
     
    6767== Changelog ==
    6868
     69= 1.1.2 =
     70* Compatibility check for latest WordPress version
     71
    6972= 1.1.1 =
    7073* Compatibility check for latest WordPress version
  • shared-vision-light/trunk/sharedvision.php

    r3069265 r3193522  
    55 * Author: Shared Vision
    66 * Author URI: https://www.joinsharedvision.com/
    7  * Version: 1.1.0
     7 * Version: 1.1.2
    88 */
    99
    1010defined( 'ABSPATH' ) || exit;
    1111
    12 const SHARED_VISION_VERSION = '1.1.1';
     12const SHARED_VISION_VERSION = '1.1.2';
    1313const SHARED_VISION_BASE_FILE_PATH = __FILE__;
    1414
     
    2727
    2828if( !defined( 'SHARED_VISION_API_LIVE_URL' ) )
    29     define("SHARED_VISION_API_LIVE_URL", "https://api.creator.joinsharedvision.com/");
     29    define("SHARED_VISION_API_LIVE_URL", "https://ppl.adzen.ai/");
    3030
    3131if( !defined( 'SHARED_VISION_EMBED_DEV_URL' ) )
     
    3333
    3434if( !defined( 'SHARED_VISION_EMBED_LIVE_URL' ) )
    35     define("SHARED_VISION_EMBED_LIVE_URL", "https://list.joinsharedvision.com/static/embed/v1.js");
     35    define("SHARED_VISION_EMBED_LIVE_URL", "https:/w.sharedvision.io/static/embed/v1.js");
    3636
    3737require_once SHARED_VISION_BASE_PATH . "/autoload.php";
     
    4343// Client request, always load.
    4444function load_shared_vision_script() {
    45     wp_enqueue_script('shared-vision-light', 'https://list.joinsharedvision.com/static/embed/v1.js', array(), null, true);
     45    wp_enqueue_script('shared-vision-light', 'https:/w.sharedvision.io/static/embed/v1.js', array(), null, true);
    4646}
    4747add_action( "init", function() {
Note: See TracChangeset for help on using the changeset viewer.