Plugin Directory

Changeset 3094454


Ignore:
Timestamp:
05/29/2024 10:03:45 AM (22 months ago)
Author:
wecantrack
Message:

Release 1.4.9

Location:
wecantrack
Files:
27 added
3 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/readme.txt

    r3056236 r3094454  
    5757
    5858== Changelog ==
     59
     60= 1.4.9 - 29th May 2024 =
     61* Do not run WCT on a cron job
    5962
    6063= 1.4.8 - 20th March 2024 =
  • wecantrack/trunk/wecantrack.php

    r3056236 r3094454  
    77Plugin URI: https://wecantrack.com/wordpress
    88Description: Integrate all you affiliate sales in Google Analytics, Google Ads, Facebook, Data Studio and more!
    9 Version: 1.4.8
     9Version: 1.4.9
    1010Author: wecantrack.com
    1111Author URI: https://wecantrack.com
     
    1717if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
    1818
    19 define('WECANTRACK_VERSION', '1.4.8');
     19define('WECANTRACK_VERSION', '1.4.9');
    2020define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2121define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME);
     
    2828    require_once(WECANTRACK_PATH . '/WecantrackAdmin.php');
    2929    new WecantrackAdmin();
    30 } else if (filter_input(INPUT_SERVER, 'REQUEST_URI') !== '/wp-login.php') {
     30} else if ((! defined('DOING_CRON') || ! DOING_CRON) && filter_input(INPUT_SERVER, 'REQUEST_URI') !== '/wp-login.php') {
    3131    // Do not enqueue our JS scripts in Thrive Architect's iframe.
    3232    $thriveIsActive = defined('TVE_PLUGIN_FILE') && strpos(filter_input(INPUT_SERVER, 'REQUEST_URI'), 'tve=true') !== false;
  • wecantrack/trunk/wecantrack.pot

    r3056236 r3094454  
    11# Copyright (C) 2024 wecantrack.com
    2 # This file is distributed under the GPLv3.
     2# This file is distributed under the same license as the WeCanTrack plugin.
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 1.4.8\n"
     5"Project-Id-Version: WeCanTrack 1.4.9\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2024-03-20T14:53:16+00:00\n"
     12"POT-Creation-Date: 2024-05-29T09:53:19+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.8.1\n"
     14"X-Generator: WP-CLI 2.4.0\n"
    1515"X-Domain: wecantrack\n"
    1616
Note: See TracChangeset for help on using the changeset viewer.