Plugin Directory

Changeset 1602110


Ignore:
Timestamp:
02/23/2017 12:56:48 PM (9 years ago)
Author:
ghostmonitor
Message:

AUTOMATED COMMIT, PLUGIN VERSION: 1.9.0

Location:
ghostmonitor
Files:
78 added
5 edited

Legend:

Unmodified
Added
Removed
  • ghostmonitor/trunk/config.json

    r1557602 r1602110  
    33    "trackingUrl": "https://tracking.ghostmonitor.com",
    44    "cdnUrl": "https://cdn.ghostmonitor.com",
    5     "version": "v1.8.2",
     5    "version": "v1.9.0",
    66    "logentriesToken": "d3695c56-67af-4c86-8c7d-26c6c252987b",
    77    "env": "production"
  • ghostmonitor/trunk/includes/ghostmonitor_helper/vendor/autoload.php

    r1594827 r1602110  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit89f8fd844a638296410e67294065ee69::getLoader();
     7return ComposerAutoloaderInitb0cc2c0eadd713ae5d856dffbf91c575::getLoader();
  • ghostmonitor/trunk/includes/ghostmonitor_helper/vendor/composer/autoload_real.php

    r1594827 r1602110  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit89f8fd844a638296410e67294065ee69
     5class ComposerAutoloaderInitb0cc2c0eadd713ae5d856dffbf91c575
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit89f8fd844a638296410e67294065ee69', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInitb0cc2c0eadd713ae5d856dffbf91c575', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit89f8fd844a638296410e67294065ee69', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInitb0cc2c0eadd713ae5d856dffbf91c575', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4343        $includeFiles = require __DIR__ . '/autoload_files.php';
    4444        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequire89f8fd844a638296410e67294065ee69($fileIdentifier, $file);
     45            composerRequireb0cc2c0eadd713ae5d856dffbf91c575($fileIdentifier, $file);
    4646        }
    4747
     
    5050}
    5151
    52 function composerRequire89f8fd844a638296410e67294065ee69($fileIdentifier, $file)
     52function composerRequireb0cc2c0eadd713ae5d856dffbf91c575($fileIdentifier, $file)
    5353{
    5454    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • ghostmonitor/trunk/readme.txt

    r1591267 r1602110  
    44Requires at least: 3.9
    55Tested up to: 4.7.2
    6 Stable tag: 1.8.2
     6Stable tag: 1.9.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    243243== Changelog ==
    244244
     245= 1.9.0 =
     246* Add diagnostic endpoint
     247
    245248= 1.8.2 =
    246249* Minor fixes
  • ghostmonitor/trunk/woocommerce-ghostmonitor.php

    r1557602 r1602110  
    66 * Author: Ghostmonitor INC
    77 * Author URI: http://www.ghostmonitor.com
    8  * Version: v1.8.2
     8 * Version: v1.9.0
    99 */
    1010
     
    2323        add_filter( 'plugin_action_links_' . plugin_basename( __FILE__ ), array( $this, 'add_settings_link' ) );
    2424        add_action( 'admin_notices', array( $this, 'display_admin_notice' ) );
    25 
     25       
    2626        $this->config = file_exists( plugin_dir_path( __FILE__ ) . 'config.json' ) ? json_decode( file_get_contents( plugin_dir_path( __FILE__ ) . 'config.json' ) ) : false;
    2727    }
     
    4444        global $wp_version;
    4545
    46         $version = 'v1.8.2';
     46        $version = 'v1.9.0';
    4747
    4848        $discount_enabled = get_option( 'woocommerce_enable_coupons' ) === 'yes' ? 'true' : 'false';
     
    6868            define( 'GHOSTMONITOR_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
    6969            define( 'GHOSTMONITOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
     70            include_once( 'includes/class-wc-ghostmonitor-api.php' );
    7071            include_once( 'includes/class-wc-ghostmonitor.php' );
    7172            $integrations[] = 'wc_ghostmonitor';
Note: See TracChangeset for help on using the changeset viewer.