Changeset 1414742
- Timestamp:
- 05/11/2016 01:24:32 PM (10 years ago)
- Location:
- rollbar-logging/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
lib/RollbarAdminConfig.php (modified) (1 diff)
-
lib/RollbarJSLogging.php (modified) (1 diff)
-
plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
rollbar-logging/trunk/README.txt
r1414159 r1414742 4 4 Tags: rollbar, developer, error logging, error tracking 5 5 Requires at least: 4.4 6 Tested up to: 4.5. 17 Stable tag: 1.1. 06 Tested up to: 4.5.2 7 Stable tag: 1.1.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 46 46 47 47 == Changelog == 48 = 1.1.1 = 49 * Version bumping plugin, js, and css 48 50 49 51 = 1.1.0 = -
rollbar-logging/trunk/lib/RollbarAdminConfig.php
r1414159 r1414742 41 41 } 42 42 43 wp_register_script( 'rollbar-logging', plugin_dir_url( dirname( __FILE__ ) ) . 'js/admin.js', array('jquery'), '1. 0.0' );43 wp_register_script( 'rollbar-logging', plugin_dir_url( dirname( __FILE__ ) ) . 'js/admin.js', array('jquery'), '1.1.1' ); 44 44 wp_enqueue_script('rollbar-logging'); 45 45 46 wp_register_style( 'rollbar-logging', plugin_dir_url( dirname( __FILE__ ) ) . 'css/style.css', array(), '1. 0.0' );46 wp_register_style( 'rollbar-logging', plugin_dir_url( dirname( __FILE__ ) ) . 'css/style.css', array(), '1.1.1' ); 47 47 wp_enqueue_style('rollbar-logging'); 48 48 -
rollbar-logging/trunk/lib/RollbarJSLogging.php
r1414159 r1414742 50 50 public function load_scripts() { 51 51 if( isset( $this->option ) && isset( $this->option['jquery'] ) ) { 52 wp_enqueue_script( 'rollbar-jquery', plugin_dir_url( dirname( __FILE__ ) ) . 'js/rollbar-jquery.min.js', array( 'jquery' ), '1. 0.0' );52 wp_enqueue_script( 'rollbar-jquery', plugin_dir_url( dirname( __FILE__ ) ) . 'js/rollbar-jquery.min.js', array( 'jquery' ), '1.1.1' ); 53 53 } 54 54 } -
rollbar-logging/trunk/plugin.php
r1370860 r1414742 4 4 * Plugin URI: http://wordpress.org/plugins/rollbar-logging/ 5 5 * Description: Activates Rollbar logging 6 * Version: 1. 0.06 * Version: 1.1.1 7 7 * Author: EMA 8 8 * Author URI: http://www.mower.com/
Note: See TracChangeset
for help on using the changeset viewer.