Changeset 2261819
- Timestamp:
- 03/16/2020 01:55:28 PM (6 years ago)
- Location:
- ferret
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.0 (copied) (copied from ferret/trunk)
-
tags/2.1.0/README.txt (modified) (2 diffs)
-
tags/2.1.0/plugin.php (modified) (2 diffs)
-
tags/2.1.0/public/client.php (modified) (2 diffs)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/plugin.php (modified) (2 diffs)
-
trunk/public/client.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ferret/tags/2.1.0/README.txt
r2214487 r2261819 3 3 Tags: sentry, debugging, logging, errors, error handling 4 4 Requires at least: 3.0.1 5 Tested up to: 5.3. 16 Stable tag: 2. 0.15 Tested up to: 5.3.2 6 Stable tag: 2.1.0 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later … … 36 36 37 37 == Changelog == 38 39 = 2.1.0 = 40 * Fix JavaScript script element tag 41 * Upgrade JavaScript SDK to 5.14 38 42 39 43 = 2.0.0 = -
ferret/tags/2.1.0/plugin.php
r2214487 r2261819 10 10 * Plugin URI: https://wordpress.org/plugins/ferret 11 11 * Description: Reports all errors to the Sentry error logging service automatically. 12 * Version: 2. 0.112 * Version: 2.1.0 13 13 * Author: LEAP Spark 14 14 * Author URI: https://leapsparkagency.com … … 51 51 require_once __DIR__ . '/vendor/autoload.php'; 52 52 53 define( 'FERRET_VERSION', '2. 0.0' );53 define( 'FERRET_VERSION', '2.1.0' ); 54 54 define( 'FERRET_PLUGIN_NAME', 'ferret' ); 55 55 define( 'FERRET_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); -
ferret/tags/2.1.0/public/client.php
r2214487 r2261819 43 43 } 44 44 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', 46 46 array(), FERRET_VERSION, false ); 47 47 … … 53 53 add_filter( 'script_loader_tag', function ( $tag, $handle, $src ) { 54 54 if ( FERRET_PLUGIN_NAME === $handle ) { 55 $tag = '<script src= ' . $src . '" crossorigin="anonymous"></script>';55 $tag = '<script src="' . $src . '" crossorigin="anonymous"></script>'; 56 56 } 57 57 return $tag; -
ferret/trunk/README.txt
r2214487 r2261819 3 3 Tags: sentry, debugging, logging, errors, error handling 4 4 Requires at least: 3.0.1 5 Tested up to: 5.3. 16 Stable tag: 2. 0.15 Tested up to: 5.3.2 6 Stable tag: 2.1.0 7 7 Requires PHP: 7.1 8 8 License: GPLv2 or later … … 36 36 37 37 == Changelog == 38 39 = 2.1.0 = 40 * Fix JavaScript script element tag 41 * Upgrade JavaScript SDK to 5.14 38 42 39 43 = 2.0.0 = -
ferret/trunk/plugin.php
r2214487 r2261819 10 10 * Plugin URI: https://wordpress.org/plugins/ferret 11 11 * Description: Reports all errors to the Sentry error logging service automatically. 12 * Version: 2. 0.112 * Version: 2.1.0 13 13 * Author: LEAP Spark 14 14 * Author URI: https://leapsparkagency.com … … 51 51 require_once __DIR__ . '/vendor/autoload.php'; 52 52 53 define( 'FERRET_VERSION', '2. 0.0' );53 define( 'FERRET_VERSION', '2.1.0' ); 54 54 define( 'FERRET_PLUGIN_NAME', 'ferret' ); 55 55 define( 'FERRET_PLUGIN_PATH', plugin_dir_path( __FILE__ ) ); -
ferret/trunk/public/client.php
r2214487 r2261819 43 43 } 44 44 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', 46 46 array(), FERRET_VERSION, false ); 47 47 … … 53 53 add_filter( 'script_loader_tag', function ( $tag, $handle, $src ) { 54 54 if ( FERRET_PLUGIN_NAME === $handle ) { 55 $tag = '<script src= ' . $src . '" crossorigin="anonymous"></script>';55 $tag = '<script src="' . $src . '" crossorigin="anonymous"></script>'; 56 56 } 57 57 return $tag;
Note: See TracChangeset
for help on using the changeset viewer.