Changeset 3193522
- Timestamp:
- 11/20/2024 10:09:45 PM (17 months ago)
- Location:
- shared-vision-light
- Files:
-
- 24 added
- 2 edited
-
tags/1.1.2 (added)
-
tags/1.1.2/_functions (added)
-
tags/1.1.2/_functions/utility.php (added)
-
tags/1.1.2/app (added)
-
tags/1.1.2/app/API (added)
-
tags/1.1.2/app/API/SharedVision (added)
-
tags/1.1.2/app/API/SharedVision/Plugins.php (added)
-
tags/1.1.2/app/API/SharedVision/Request.php (added)
-
tags/1.1.2/app/AdminController.php (added)
-
tags/1.1.2/app/AdminCoordinator (added)
-
tags/1.1.2/app/AdminCoordinator/Settings.php (added)
-
tags/1.1.2/app/Settings.php (added)
-
tags/1.1.2/app/Template.php (added)
-
tags/1.1.2/assets (added)
-
tags/1.1.2/assets/screenshot-1.png (added)
-
tags/1.1.2/assets/screenshot-2.png (added)
-
tags/1.1.2/assets/screenshot-3.png (added)
-
tags/1.1.2/autoload.php (added)
-
tags/1.1.2/readme.txt (added)
-
tags/1.1.2/sharedvision.php (added)
-
tags/1.1.2/templates (added)
-
tags/1.1.2/templates/admin (added)
-
tags/1.1.2/templates/admin/settings.php (added)
-
tags/1.1.2/templates/embed.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sharedvision.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
shared-vision-light/trunk/readme.txt
r3069265 r3193522 1 === Plugin Name===2 Contributors: Shared Vision1 === Shared Vision === 2 Contributors: sharedvision 3 3 Donate link: https://joinsharedvision.com/ 4 4 Tags: 5 5 Requires at least: 2.1.0 6 Tested up to: 6. 5.07 Stable tag: 1.1. 16 Tested up to: 6.7.0 7 Stable tag: 1.1.2 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 11 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.12 The Shared Vision Light Wordpress plugin connects to your Shared Vision account granting your Wordpress website direct access! 13 13 14 14 == Description == … … 67 67 == Changelog == 68 68 69 = 1.1.2 = 70 * Compatibility check for latest WordPress version 71 69 72 = 1.1.1 = 70 73 * Compatibility check for latest WordPress version -
shared-vision-light/trunk/sharedvision.php
r3069265 r3193522 5 5 * Author: Shared Vision 6 6 * Author URI: https://www.joinsharedvision.com/ 7 * Version: 1.1. 07 * Version: 1.1.2 8 8 */ 9 9 10 10 defined( 'ABSPATH' ) || exit; 11 11 12 const SHARED_VISION_VERSION = '1.1. 1';12 const SHARED_VISION_VERSION = '1.1.2'; 13 13 const SHARED_VISION_BASE_FILE_PATH = __FILE__; 14 14 … … 27 27 28 28 if( !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/"); 30 30 31 31 if( !defined( 'SHARED_VISION_EMBED_DEV_URL' ) ) … … 33 33 34 34 if( !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"); 36 36 37 37 require_once SHARED_VISION_BASE_PATH . "/autoload.php"; … … 43 43 // Client request, always load. 44 44 function 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); 46 46 } 47 47 add_action( "init", function() {
Note: See TracChangeset
for help on using the changeset viewer.