Plugin Directory

Changeset 2527180


Ignore:
Timestamp:
05/06/2021 10:23:16 AM (5 years ago)
Author:
simongomes02
Message:

Appsero tracker to track plugin analytics data, version 1.0.3 released

Location:
ship-to-ecourier
Files:
116 added
9 edited
11 copied

Legend:

Unmodified
Added
Removed
  • ship-to-ecourier/tags/1.0.3/composer.json

    r2525816 r2527180  
    1616      },
    1717      "files": [ "includes/functions.php" ]
     18    },
     19    "require": {
     20        "appsero/client": "dev-develop"
    1821    }
    1922}
  • ship-to-ecourier/tags/1.0.3/readme.txt

    r2526645 r2527180  
    66Tested up to: 5.7.1
    77Requires PHP: 5.6
    8 Stable tag: 1.0.2
     8Stable tag: 1.0.3
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    65656. eCourier parcel shipment statuses.
    6666
     67== Privacy Policy ==
     68
     69Ship To Ecourier uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
     70
     71Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users.
     72
     73Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     74
     75Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     76
    6777== Changelog ==
     78
     79= 1.0.3 =
     80* Added: Appsero tracker to track plugin analytics data
     81
     82= 1.0.2 =
     83* CSRF validation added for settings form, to protect against unnecessary security breach.
    6884
    6985= 1.0.1 =
    7086* 1.0.1 is the initial release of Parcel Tracker eCourier plugin.
    71 
    72 = 1.0.2 =
    73 * CSRF validation added for settings form, to protect against unnecessary security breach.
  • ship-to-ecourier/tags/1.0.3/ship-to-ecourier.php

    r2526645 r2527180  
    88 * Text Domain:     ship-to-ecourier
    99 * Domain Path:     /languages
    10  * Version:         1.0.2
     10 * Version:         1.0.3
    1111 * License:         GPLv3
    1212 * License URI:     https://www.gnu.org/licenses/gpl-3.0.html
     
    4141 */
    4242
     43use ShipToEcourier\Appsero_Tracker;
     44
    4345// Block direct access to the file.
    4446if ( ! defined( 'ABSPATH' ) ) {
     
    6365         * @var string
    6466         */
    65         const VERSION = '1.0.2';
     67        const VERSION = '1.0.3';
    6668
    6769        /**
     
    115117         */
    116118        public function init_plugin() {
     119            // Initialize the Appsero tracker for plugin analytics.
     120            Appsero_Tracker::init_tracker();
     121
    117122            // Call Assets class to load necessary assets for plugin ( JavaScript and CSS ).
    118123            new ShipToEcourier\Assets();
  • ship-to-ecourier/tags/1.0.3/vendor/composer/autoload_psr4.php

    r2525816 r2527180  
    88return array(
    99    'ShipToEcourier\\' => array($baseDir . '/includes'),
     10    'Appsero\\' => array($vendorDir . '/appsero/client/src'),
    1011);
  • ship-to-ecourier/tags/1.0.3/vendor/composer/autoload_real.php

    r2525816 r2527180  
    2222            return self::$loader;
    2323        }
     24
     25        require __DIR__ . '/platform_check.php';
    2426
    2527        spl_autoload_register(array('ComposerAutoloaderInit623e2aa6265ae73da9cc7e7f68ee232a', 'loadClassLoader'), true, true);
  • ship-to-ecourier/tags/1.0.3/vendor/composer/autoload_static.php

    r2525816 r2527180  
    1616            'ShipToEcourier\\' => 15,
    1717        ),
     18        'A' =>
     19        array (
     20            'Appsero\\' => 8,
     21        ),
    1822    );
    1923
     
    2226        array (
    2327            0 => __DIR__ . '/../..' . '/includes',
     28        ),
     29        'Appsero\\' =>
     30        array (
     31            0 => __DIR__ . '/..' . '/appsero/client/src',
    2432        ),
    2533    );
  • ship-to-ecourier/trunk/composer.json

    r2525816 r2527180  
    1616      },
    1717      "files": [ "includes/functions.php" ]
     18    },
     19    "require": {
     20        "appsero/client": "dev-develop"
    1821    }
    1922}
  • ship-to-ecourier/trunk/readme.txt

    r2526645 r2527180  
    66Tested up to: 5.7.1
    77Requires PHP: 5.6
    8 Stable tag: 1.0.2
     8Stable tag: 1.0.3
    99License: GPLv3
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    65656. eCourier parcel shipment statuses.
    6666
     67== Privacy Policy ==
     68
     69Ship To Ecourier uses [Appsero](https://appsero.com) SDK to collect some telemetry data upon user's confirmation. This helps us to troubleshoot problems faster & make product improvements.
     70
     71Appsero SDK **does not gather any data by default.** The SDK only starts gathering basic telemetry data **when a user allows it via the admin notice**. We collect the data to ensure a great user experience for all our users.
     72
     73Integrating Appsero SDK **DOES NOT IMMEDIATELY** start gathering data, **without confirmation from users in any case.**
     74
     75Learn more about how [Appsero collects and uses this data](https://appsero.com/privacy-policy/).
     76
    6777== Changelog ==
     78
     79= 1.0.3 =
     80* Added: Appsero tracker to track plugin analytics data
     81
     82= 1.0.2 =
     83* CSRF validation added for settings form, to protect against unnecessary security breach.
    6884
    6985= 1.0.1 =
    7086* 1.0.1 is the initial release of Parcel Tracker eCourier plugin.
    71 
    72 = 1.0.2 =
    73 * CSRF validation added for settings form, to protect against unnecessary security breach.
  • ship-to-ecourier/trunk/ship-to-ecourier.php

    r2526645 r2527180  
    88 * Text Domain:     ship-to-ecourier
    99 * Domain Path:     /languages
    10  * Version:         1.0.2
     10 * Version:         1.0.3
    1111 * License:         GPLv3
    1212 * License URI:     https://www.gnu.org/licenses/gpl-3.0.html
     
    4141 */
    4242
     43use ShipToEcourier\Appsero_Tracker;
     44
    4345// Block direct access to the file.
    4446if ( ! defined( 'ABSPATH' ) ) {
     
    6365         * @var string
    6466         */
    65         const VERSION = '1.0.2';
     67        const VERSION = '1.0.3';
    6668
    6769        /**
     
    115117         */
    116118        public function init_plugin() {
     119            // Initialize the Appsero tracker for plugin analytics.
     120            Appsero_Tracker::init_tracker();
     121
    117122            // Call Assets class to load necessary assets for plugin ( JavaScript and CSS ).
    118123            new ShipToEcourier\Assets();
  • ship-to-ecourier/trunk/vendor/composer/autoload_psr4.php

    r2525816 r2527180  
    88return array(
    99    'ShipToEcourier\\' => array($baseDir . '/includes'),
     10    'Appsero\\' => array($vendorDir . '/appsero/client/src'),
    1011);
  • ship-to-ecourier/trunk/vendor/composer/autoload_real.php

    r2525816 r2527180  
    2222            return self::$loader;
    2323        }
     24
     25        require __DIR__ . '/platform_check.php';
    2426
    2527        spl_autoload_register(array('ComposerAutoloaderInit623e2aa6265ae73da9cc7e7f68ee232a', 'loadClassLoader'), true, true);
  • ship-to-ecourier/trunk/vendor/composer/autoload_static.php

    r2525816 r2527180  
    1616            'ShipToEcourier\\' => 15,
    1717        ),
     18        'A' =>
     19        array (
     20            'Appsero\\' => 8,
     21        ),
    1822    );
    1923
     
    2226        array (
    2327            0 => __DIR__ . '/../..' . '/includes',
     28        ),
     29        'Appsero\\' =>
     30        array (
     31            0 => __DIR__ . '/..' . '/appsero/client/src',
    2432        ),
    2533    );
Note: See TracChangeset for help on using the changeset viewer.