Plugin Directory

Changeset 2545106


Ignore:
Timestamp:
06/09/2021 02:07:09 PM (5 years ago)
Author:
wecantrack
Message:

1.2.9 release

Location:
wecantrack
Files:
25 added
4 edited

Legend:

Unmodified
Added
Removed
  • wecantrack/trunk/WecantrackApp.php

    r2468989 r2545106  
    224224            // checked if URL schema is OK
    225225            // todo notify this error so that the user knows that there's an invalid URL on this page
    226             error_log('WCT Plugin: wecantrack plugin parsed a likely faulty URL: '.$original_url);
     226            error_log('WeCanTrack Plugin tried to parse a faulty URL: '.$original_url);
    227227            return false;
    228228        }
     
    307307
    308308        } catch (Exception $e) {
    309             error_log('WCT Plugin: Clickout API: '.$e->getMessage());
     309            if (empty($post_data)) {
     310                $post_data = [];
     311            }
     312
     313            if (empty($response)) {
     314                $response = null;
     315            }
     316
     317            $error_msg = [
     318                'e_msg' => $e->getMessage(),
     319                'post_data' => $post_data,
     320                'response' => $response
     321            ];
     322
     323            error_log('WeCanTrack Plugin Clickout API exception: '.json_encode($error_msg));
    310324        }
    311325
     
    389403
    390404        } catch (Exception $e) {
    391             error_log('WCT Plugin: wecantrack_update_data_fetch() error: ' . $e->getMessage());
     405            $error_msg = [
     406                'e_msg' => $e->getMessage()
     407            ];
     408            error_log('WeCanTrack Plugin wecantrack_update_data_fetch() exception: ' . json_encode($error_msg));
    392409            update_option('wecantrack_domain_patterns', NULL);// maybe something went wrong with unserialize(), so clear it
    393410            return false;
  • wecantrack/trunk/readme.txt

    r2471612 r2545106  
    55Tested up to: 5.6
    66Requires PHP: 5.6.20
    7 Stable tag: 1.2.8
     7Stable tag: 1.2.9
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
     
    6060
    6161== Changelog ==
     62
     63= 1.2.9 - 21st June 2021 =
     64 * Update JS snippet when Plugin Updates. No need to click on Save on plugin update anymore.
    6265
    6366= 1.2.8 - 9th February 2021 =
  • wecantrack/trunk/wecantrack.php

    r2471612 r2545106  
    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.2.8
     9Version: 1.2.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.2.8');
     19define('WECANTRACK_VERSION', '1.2.9');
    2020define('WECANTRACK_PLUGIN_NAME', 'wecantrack');
    2121define('WECANTRACK_PATH', WP_PLUGIN_DIR.'/'.WECANTRACK_PLUGIN_NAME);
  • wecantrack/trunk/wecantrack.pot

    r2468989 r2545106  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WeCanTrack 1.2.7\n"
     5"Project-Id-Version: WeCanTrack 1.2.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: 2021-02-04T16:07:06+00:00\n"
     12"POT-Creation-Date: 2021-06-09T13:56:46+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.4.0\n"
     
    126126msgstr ""
    127127
    128 #: WecantrackAdmin.php:171
     128#: WecantrackAdmin.php:184
    129129msgid "Something went wrong with the request"
    130130msgstr ""
    131131
    132 #: WecantrackAdmin.php:172
     132#: WecantrackAdmin.php:185
    133133msgid "Added at least 1 active network account"
    134134msgstr ""
    135135
    136 #: WecantrackAdmin.php:173
     136#: WecantrackAdmin.php:186
    137137msgid "You have not added at least 1 active network account. To add a network, click here."
    138138msgstr ""
    139139
    140 #: WecantrackAdmin.php:176
     140#: WecantrackAdmin.php:189
    141141msgid "verified"
    142142msgstr ""
    143143
    144 #: WecantrackAdmin.php:177
     144#: WecantrackAdmin.php:190
    145145msgid "Invalid API Key"
    146146msgstr ""
    147147
    148 #: WecantrackAdmin.php:178
     148#: WecantrackAdmin.php:191
    149149msgid "Invalid Request"
    150150msgstr ""
    151151
    152 #: WecantrackAdmin.php:179
     152#: WecantrackAdmin.php:192
    153153msgid "Valid API Key"
    154154msgstr ""
    155155
    156 #: WecantrackAdmin.php:180
     156#: WecantrackAdmin.php:193
    157157msgid "Your changes have been saved"
    158158msgstr ""
    159159
    160 #: WecantrackAdmin.php:181
     160#: WecantrackAdmin.php:194
    161161msgid "Something went wrong."
    162162msgstr ""
Note: See TracChangeset for help on using the changeset viewer.