Changeset 2473271
- Timestamp:
- 02/11/2021 05:46:11 PM (5 years ago)
- Location:
- coschedule-by-todaymade
- Files:
-
- 7 added
- 3 edited
-
tags/3.3.3 (added)
-
tags/3.3.3/_access-denied.php (added)
-
tags/3.3.3/_missing-token.php (added)
-
tags/3.3.3/frame.php (added)
-
tags/3.3.3/plugin_setup.php (added)
-
tags/3.3.3/readme.txt (added)
-
tags/3.3.3/tm-scheduler.php (added)
-
trunk/plugin_setup.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tm-scheduler.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/trunk/plugin_setup.php
r2466625 r2473271 74 74 // NOTE: ajaxurl is a global variable that points to admin-ajax.php 75 75 /* global ajaxurl */ 76 window. onload =() => {76 window.addEventListener('load', () => { 77 77 const APP_URL = 'https://app.coschedule.com'; 78 78 … … 215 215 216 216 document.querySelector('.iframe-container').appendChild(iframe); 217 } 217 }); 218 218 </script> -
coschedule-by-todaymade/trunk/readme.txt
r2466625 r2473271 5 5 Requires at least: 3.5 6 6 Tested up to: 5.6 7 Stable tag: 3.3. 27 Stable tag: 3.3.3 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 97 97 98 98 == Changelog == 99 100 = 3.3.3 = 101 * Improve plugin activation compatibility. 99 102 100 103 = 3.3.2 = … … 369 372 == Upgrade Notice == 370 373 374 = 3.3.3 = 375 * Improve plugin activation compatibility. 376 371 377 = 3.3.2 = 372 378 * New plugin activation flow. -
coschedule-by-todaymade/trunk/tm-scheduler.php
r2466625 r2473271 3 3 Plugin Name: CoSchedule 4 4 Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution. 5 Version: 3.3. 25 Version: 3.3.3 6 6 Author: CoSchedule 7 7 Author URI: http://coschedule.com/ … … 24 24 private $app = "https://app.coschedule.com"; 25 25 private $assets = "https://assets.coschedule.com"; 26 private $version = "3.3. 2";26 private $version = "3.3.3"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( "9 2" );50 $this->build = intval( "93" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' );
Note: See TracChangeset
for help on using the changeset viewer.