Plugin Directory

Changeset 2261819


Ignore:
Timestamp:
03/16/2020 01:55:28 PM (6 years ago)
Author:
leapspark
Message:

Update to version 2.1.0 from GitHub

Location:
ferret
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • ferret/tags/2.1.0/README.txt

    r2214487 r2261819  
    33Tags: sentry, debugging, logging, errors, error handling
    44Requires at least: 3.0.1
    5 Tested up to: 5.3.1
    6 Stable tag: 2.0.1
     5Tested up to: 5.3.2
     6Stable tag: 2.1.0
    77Requires PHP: 7.1
    88License: GPLv2 or later
     
    3636
    3737== Changelog ==
     38
     39= 2.1.0 =
     40* Fix JavaScript script element tag
     41* Upgrade JavaScript SDK to 5.14
    3842
    3943= 2.0.0 =
  • ferret/tags/2.1.0/plugin.php

    r2214487 r2261819  
    1010 * Plugin URI:        https://wordpress.org/plugins/ferret
    1111 * Description:       Reports all errors to the Sentry error logging service automatically.
    12  * Version:           2.0.1
     12 * Version:           2.1.0
    1313 * Author:            LEAP Spark
    1414 * Author URI:        https://leapsparkagency.com
     
    5151    require_once __DIR__ . '/vendor/autoload.php';
    5252
    53     define( 'FERRET_VERSION', '2.0.0' );
     53    define( 'FERRET_VERSION', '2.1.0' );
    5454    define( 'FERRET_PLUGIN_NAME', 'ferret' );
    5555    define( 'FERRET_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
  • ferret/tags/2.1.0/public/client.php

    r2214487 r2261819  
    4343        }
    4444
    45         wp_enqueue_script( FERRET_PLUGIN_NAME, 'https://browser.sentry-cdn.com/4.4.2/bundle.min.js',
     45        wp_enqueue_script( FERRET_PLUGIN_NAME, 'https://browser.sentry-cdn.com/5.14.1/bundle.min.js',
    4646            array(), FERRET_VERSION, false );
    4747
     
    5353        add_filter( 'script_loader_tag', function ( $tag, $handle, $src ) {
    5454            if ( FERRET_PLUGIN_NAME === $handle ) {
    55                 $tag = '<script src=' . $src . '" crossorigin="anonymous"></script>';
     55                $tag = '<script src="' . $src . '" crossorigin="anonymous"></script>';
    5656            }
    5757            return $tag;
  • ferret/trunk/README.txt

    r2214487 r2261819  
    33Tags: sentry, debugging, logging, errors, error handling
    44Requires at least: 3.0.1
    5 Tested up to: 5.3.1
    6 Stable tag: 2.0.1
     5Tested up to: 5.3.2
     6Stable tag: 2.1.0
    77Requires PHP: 7.1
    88License: GPLv2 or later
     
    3636
    3737== Changelog ==
     38
     39= 2.1.0 =
     40* Fix JavaScript script element tag
     41* Upgrade JavaScript SDK to 5.14
    3842
    3943= 2.0.0 =
  • ferret/trunk/plugin.php

    r2214487 r2261819  
    1010 * Plugin URI:        https://wordpress.org/plugins/ferret
    1111 * Description:       Reports all errors to the Sentry error logging service automatically.
    12  * Version:           2.0.1
     12 * Version:           2.1.0
    1313 * Author:            LEAP Spark
    1414 * Author URI:        https://leapsparkagency.com
     
    5151    require_once __DIR__ . '/vendor/autoload.php';
    5252
    53     define( 'FERRET_VERSION', '2.0.0' );
     53    define( 'FERRET_VERSION', '2.1.0' );
    5454    define( 'FERRET_PLUGIN_NAME', 'ferret' );
    5555    define( 'FERRET_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
  • ferret/trunk/public/client.php

    r2214487 r2261819  
    4343        }
    4444
    45         wp_enqueue_script( FERRET_PLUGIN_NAME, 'https://browser.sentry-cdn.com/4.4.2/bundle.min.js',
     45        wp_enqueue_script( FERRET_PLUGIN_NAME, 'https://browser.sentry-cdn.com/5.14.1/bundle.min.js',
    4646            array(), FERRET_VERSION, false );
    4747
     
    5353        add_filter( 'script_loader_tag', function ( $tag, $handle, $src ) {
    5454            if ( FERRET_PLUGIN_NAME === $handle ) {
    55                 $tag = '<script src=' . $src . '" crossorigin="anonymous"></script>';
     55                $tag = '<script src="' . $src . '" crossorigin="anonymous"></script>';
    5656            }
    5757            return $tag;
Note: See TracChangeset for help on using the changeset viewer.