Plugin Directory

Changeset 1920581


Ignore:
Timestamp:
08/06/2018 07:40:00 PM (8 years ago)
Author:
rveitch
Message:

Updating plugin 3.2.0

Location:
coschedule-by-todaymade/tags/3.2.0
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • coschedule-by-todaymade/tags/3.2.0/frame.php

    r1920580 r1920581  
    22if ( get_option( 'tm_coschedule_token' ) ) {
    33    if ( current_user_can( 'edit_posts' ) ) {
    4         $url = "@@APP_URL/#/authenticate?calendarID=" . urlencode( get_option( 'tm_coschedule_calendar_id' ) );
     4        $url = "https://app.coschedule.com/#/authenticate?calendarID=" . urlencode( get_option( 'tm_coschedule_calendar_id' ) );
    55        $url .= "&wordpressSiteID=" . urlencode( get_option( 'tm_coschedule_wordpress_site_id' ) );
    66        $url .= "&redirect=" . $redirect . "&build=" . $this->build;
  • coschedule-by-todaymade/tags/3.2.0/readme.txt

    r1920580 r1920581  
    55Requires at least: 3.5
    66Tested up to: 4.9.6
    7 Stable tag: @@plugin_version
     7Stable tag: 3.2.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • coschedule-by-todaymade/tags/3.2.0/tm-scheduler.php

    r1920580 r1920581  
    33Plugin Name: CoSchedule
    44Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution.
    5 Version: @@plugin_version
     5Version: 3.2.0
    66Author: CoSchedule
    77Author URI: http://coschedule.com/
     
    2020    /** @noinspection PhpUndefinedClassInspection */
    2121    class TM_CoSchedule {
    22         private $api = "@@API_URL";
    23         private $webhooks_url = "@@WEBHOOKS_URL";
    24         private $app = "@@APP_URL";
    25         private $assets = "@@ASSETS_URL";
    26         private $version = "@@plugin_version";
     22        private $api = "https://api.coschedule.com";
     23        private $webhooks_url = "https://webhooks.coschedule.com";
     24        private $app = "https://app.coschedule.com";
     25        private $assets = "https://assets.coschedule.com";
     26        private $version = "3.2.0";
    2727        private $build;
    2828        private $connected = false;
     
    4848
    4949            // Load variables
    50             $this->build                  = intval( "@@plugin_build" );
     50            $this->build                  = intval( "80" );
    5151            $this->token                  = get_option( 'tm_coschedule_token' );
    5252            $this->calendar_id            = get_option( 'tm_coschedule_calendar_id' );
Note: See TracChangeset for help on using the changeset viewer.