Changeset 2654287
- Timestamp:
- 01/07/2022 04:59:22 PM (4 years ago)
- Location:
- wecantrack
- Files:
-
- 27 added
- 3 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/README.md (added)
-
tags/1.3.0/WecantrackAdmin.php (added)
-
tags/1.3.0/WecantrackApp.php (added)
-
tags/1.3.0/WecantrackAppRedirectPage.php (added)
-
tags/1.3.0/WecantrackHelper.php (added)
-
tags/1.3.0/css (added)
-
tags/1.3.0/css/admin.css (added)
-
tags/1.3.0/images (added)
-
tags/1.3.0/images/favicon.png (added)
-
tags/1.3.0/images/favicon2.png (added)
-
tags/1.3.0/images/wct-logo-normal.svg (added)
-
tags/1.3.0/index.php (added)
-
tags/1.3.0/js (added)
-
tags/1.3.0/js/.gitignore (added)
-
tags/1.3.0/js/admin.js (added)
-
tags/1.3.0/js/advanced_settings.js (added)
-
tags/1.3.0/js/redirect_page.js (added)
-
tags/1.3.0/license.txt (added)
-
tags/1.3.0/locale (added)
-
tags/1.3.0/readme.txt (added)
-
tags/1.3.0/views (added)
-
tags/1.3.0/views/advanced_settings.php (added)
-
tags/1.3.0/views/redirect_page.php (added)
-
tags/1.3.0/views/settings.php (added)
-
tags/1.3.0/wecantrack.php (added)
-
tags/1.3.0/wecantrack.pot (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/wecantrack.php (modified) (3 diffs)
-
trunk/wecantrack.pot (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wecantrack/trunk/readme.txt
r2622887 r2654287 5 5 Tested up to: 5.8 6 6 Requires PHP: 5.6.20 7 Stable tag: 1. 2.127 Stable tag: 1.3.0 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.en.html … … 60 60 61 61 == Changelog == 62 63 = 1.3.0 - 20th December 2021 = 64 * Do not enqueue WCT JS Script in Thrive Architect 62 65 63 66 = 1.2.12 - 27th October 2021 = -
wecantrack/trunk/wecantrack.php
r2622887 r2654287 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. 2.129 Version: 1.3.0 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. 2.12');19 define('WECANTRACK_VERSION', '1.3.0'); 20 20 define('WECANTRACK_PLUGIN_NAME', 'wecantrack'); 21 21 define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME); … … 30 30 new WecantrackAdmin(); 31 31 } else if (filter_input(INPUT_SERVER, 'REQUEST_URI') !== '/wp-login.php') { 32 require_once(WECANTRACK_PATH . '/WecantrackApp.php'); 33 require_once(WECANTRACK_PATH . '/WecantrackAppRedirectPage.php'); 34 new WecantrackApp(); 32 // Do not enqueue our JS scripts in Thrive Architect's iframe. 33 if (!(defined( 'TVE_PLUGIN_FILE' ) && strpos(filter_input(INPUT_SERVER, 'REQUEST_URI'), 'tve=true&tcbf=') !== false)) { 34 require_once(WECANTRACK_PATH . '/WecantrackApp.php'); 35 require_once(WECANTRACK_PATH . '/WecantrackAppRedirectPage.php'); 36 new WecantrackApp(); 37 } 35 38 } 36 39 -
wecantrack/trunk/wecantrack.pot
r2622887 r2654287 1 # Copyright (C) 202 1wecantrack.com1 # Copyright (C) 2022 wecantrack.com 2 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. 2.12\n"5 "Project-Id-Version: WeCanTrack 1.3.0\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: 202 1-10-26T21:35:34+00:00\n"12 "POT-Creation-Date: 2022-01-05T15:23:52+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.4.0\n"
Note: See TracChangeset
for help on using the changeset viewer.