Changeset 3094454
- Timestamp:
- 05/29/2024 10:03:45 AM (22 months ago)
- Location:
- wecantrack
- Files:
-
- 27 added
- 3 edited
-
tags/1.4.9 (added)
-
tags/1.4.9/README.md (added)
-
tags/1.4.9/WecantrackAdmin.php (added)
-
tags/1.4.9/WecantrackApp.php (added)
-
tags/1.4.9/WecantrackAppRedirectPage.php (added)
-
tags/1.4.9/WecantrackHelper.php (added)
-
tags/1.4.9/css (added)
-
tags/1.4.9/css/admin.css (added)
-
tags/1.4.9/images (added)
-
tags/1.4.9/images/favicon.png (added)
-
tags/1.4.9/images/favicon2.png (added)
-
tags/1.4.9/images/wct-logo-normal.svg (added)
-
tags/1.4.9/index.php (added)
-
tags/1.4.9/js (added)
-
tags/1.4.9/js/.gitignore (added)
-
tags/1.4.9/js/admin.js (added)
-
tags/1.4.9/js/advanced_settings.js (added)
-
tags/1.4.9/js/redirect_page.js (added)
-
tags/1.4.9/license.txt (added)
-
tags/1.4.9/locale (added)
-
tags/1.4.9/readme.txt (added)
-
tags/1.4.9/views (added)
-
tags/1.4.9/views/advanced_settings.php (added)
-
tags/1.4.9/views/redirect_page.php (added)
-
tags/1.4.9/views/settings.php (added)
-
tags/1.4.9/wecantrack.php (added)
-
tags/1.4.9/wecantrack.pot (added)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/wecantrack.php (modified) (3 diffs)
-
trunk/wecantrack.pot (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wecantrack/trunk/readme.txt
r3056236 r3094454 57 57 58 58 == Changelog == 59 60 = 1.4.9 - 29th May 2024 = 61 * Do not run WCT on a cron job 59 62 60 63 = 1.4.8 - 20th March 2024 = -
wecantrack/trunk/wecantrack.php
r3056236 r3094454 7 7 Plugin URI: https://wecantrack.com/wordpress 8 8 Description: Integrate all you affiliate sales in Google Analytics, Google Ads, Facebook, Data Studio and more! 9 Version: 1.4. 89 Version: 1.4.9 10 10 Author: wecantrack.com 11 11 Author URI: https://wecantrack.com … … 17 17 if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } 18 18 19 define('WECANTRACK_VERSION', '1.4. 8');19 define('WECANTRACK_VERSION', '1.4.9'); 20 20 define('WECANTRACK_PLUGIN_NAME', 'wecantrack'); 21 21 define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME); … … 28 28 require_once(WECANTRACK_PATH . '/WecantrackAdmin.php'); 29 29 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') { 31 31 // Do not enqueue our JS scripts in Thrive Architect's iframe. 32 32 $thriveIsActive = defined('TVE_PLUGIN_FILE') && strpos(filter_input(INPUT_SERVER, 'REQUEST_URI'), 'tve=true') !== false; -
wecantrack/trunk/wecantrack.pot
r3056236 r3094454 1 1 # 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. 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WeCanTrack 1.4. 8\n"5 "Project-Id-Version: WeCanTrack 1.4.9\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wecantrack\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2024-0 3-20T14:53:16+00:00\n"12 "POT-Creation-Date: 2024-05-29T09:53:19+00:00\n" 13 13 "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" 15 15 "X-Domain: wecantrack\n" 16 16
Note: See TracChangeset
for help on using the changeset viewer.