Changeset 3176468
- Timestamp:
- 10/27/2024 08:42:24 PM (17 months ago)
- Location:
- debug-bar-console
- Files:
-
- 4 edited
- 1 copied
-
tags/0.3.1 (copied) (copied from debug-bar-console/trunk)
-
tags/0.3.1/debug-bar-console.php (modified) (2 diffs)
-
tags/0.3.1/readme.txt (modified) (1 diff)
-
trunk/debug-bar-console.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
debug-bar-console/tags/0.3.1/debug-bar-console.php
r520555 r3176468 1 1 <?php 2 /** 3 * Plugin Name: Debug Bar Console 4 * Plugin URI: http://wordpress.org/extend/plugins/debug-bar-console/ 5 * Description: Adds a PHP/SQL console panel to the Debug Bar plugin. Requires the Debug Bar plugin. 6 * Author: Drew Jaynes 7 * Author URI: https://werdswords.com 8 * Version: 0.3.1 9 * License: GPLv2 10 */ 11 2 12 /* 3 Plugin Name: Debug Bar Console 4 Plugin URI: http://wordpress.org/extend/plugins/debug-bar-console/ 5 Description: Adds a PHP/SQL console to the debug bar. Requires the debug bar plugin. 6 Author: koopersmith 7 Version: 0.4-alpha 8 Author URI: http://darylkoop.com/ 13 * Copyright (c) 2024, Drew Jaynes 14 * Copyright (c) 2011-2024, Daryl Koopersmith 15 * http://opensource.org/licenses/gpl-2.0.php GNU Public License 9 16 */ 10 17 … … 24 31 wp_enqueue_script( 'debug-bar-codemirror', plugins_url( "codemirror/debug-bar-codemirror.js", __FILE__ ), array(), '2.22' ); 25 32 26 wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20 120317' );27 wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20 120318' );33 wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20240827' ); 34 wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20240827' ); 28 35 } 29 36 -
debug-bar-console/tags/0.3.1/readme.txt
r520340 r3176468 1 1 === Debug Bar Console === 2 Contributors: koopersmith3 Tags: debug , developer, console4 Tested up to: 3.45 Stable tag: 0.3 2 Contributors: drewapicture, koopersmith 3 Tags: debugging, developer, console 4 Tested up to: 6.7 5 Stable tag: 0.3.1 6 6 Requires at least: 3.1 7 License: GPLv2 7 8 8 Adds a PHP/ MySQL console to the debug bar. Requires the debug bar plugin.9 Adds a PHP/SQL console to the Debug Bar. Requires the Debug Bar plugin. 9 10 10 11 == Description == 11 12 12 Adds a PHP/ MySQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later).13 Adds a PHP/SQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later). 13 14 14 15 == Upgrade Notice == 15 16 16 = 0.3 = 17 Added syntax highlighting using the CodeMirror text editor. 18 Explicit PHP/SQL modes. 19 UI changes to reflect updated debug bar UI. 20 21 = 0.2 = 22 Improvements to MySQL detection and display. 23 Bug fixes. 24 25 = 0.1 = 26 Initial Release 17 = 0.3.1 = 18 * Adopted by DrewAPicture 27 19 28 20 == Changelog == 29 21 22 = 0.3.1 = 23 * Tested up to WordPress 6.7 24 30 25 = 0.3 = 31 Added syntax highlighting using the CodeMirror text editor.32 Explicit PHP/SQL modes.33 UI changes to reflect updated debug bar UI.26 * Added syntax highlighting using the CodeMirror text editor. 27 * Explicit PHP/SQL modes. 28 * UI changes to reflect updated debug bar UI. 34 29 35 30 = 0.2 = 36 Improvements to MySQL detection and display.37 Bug fixes.31 * Improvements to MySQL detection and display. 32 * Bug fixes. 38 33 39 34 = 0.1 = 40 Initial Release35 * Initial Release 41 36 42 37 == Installation == -
debug-bar-console/trunk/debug-bar-console.php
r520555 r3176468 1 1 <?php 2 /** 3 * Plugin Name: Debug Bar Console 4 * Plugin URI: http://wordpress.org/extend/plugins/debug-bar-console/ 5 * Description: Adds a PHP/SQL console panel to the Debug Bar plugin. Requires the Debug Bar plugin. 6 * Author: Drew Jaynes 7 * Author URI: https://werdswords.com 8 * Version: 0.3.1 9 * License: GPLv2 10 */ 11 2 12 /* 3 Plugin Name: Debug Bar Console 4 Plugin URI: http://wordpress.org/extend/plugins/debug-bar-console/ 5 Description: Adds a PHP/SQL console to the debug bar. Requires the debug bar plugin. 6 Author: koopersmith 7 Version: 0.4-alpha 8 Author URI: http://darylkoop.com/ 13 * Copyright (c) 2024, Drew Jaynes 14 * Copyright (c) 2011-2024, Daryl Koopersmith 15 * http://opensource.org/licenses/gpl-2.0.php GNU Public License 9 16 */ 10 17 … … 24 31 wp_enqueue_script( 'debug-bar-codemirror', plugins_url( "codemirror/debug-bar-codemirror.js", __FILE__ ), array(), '2.22' ); 25 32 26 wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20 120317' );27 wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20 120318' );33 wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20240827' ); 34 wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20240827' ); 28 35 } 29 36 -
debug-bar-console/trunk/readme.txt
r520340 r3176468 1 1 === Debug Bar Console === 2 Contributors: koopersmith3 Tags: debug , developer, console4 Tested up to: 3.45 Stable tag: 0.3 2 Contributors: drewapicture, koopersmith 3 Tags: debugging, developer, console 4 Tested up to: 6.7 5 Stable tag: 0.3.1 6 6 Requires at least: 3.1 7 License: GPLv2 7 8 8 Adds a PHP/ MySQL console to the debug bar. Requires the debug bar plugin.9 Adds a PHP/SQL console to the Debug Bar. Requires the Debug Bar plugin. 9 10 10 11 == Description == 11 12 12 Adds a PHP/ MySQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later).13 Adds a PHP/SQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later). 13 14 14 15 == Upgrade Notice == 15 16 16 = 0.3 = 17 Added syntax highlighting using the CodeMirror text editor. 18 Explicit PHP/SQL modes. 19 UI changes to reflect updated debug bar UI. 20 21 = 0.2 = 22 Improvements to MySQL detection and display. 23 Bug fixes. 24 25 = 0.1 = 26 Initial Release 17 = 0.3.1 = 18 * Adopted by DrewAPicture 27 19 28 20 == Changelog == 29 21 22 = 0.3.1 = 23 * Tested up to WordPress 6.7 24 30 25 = 0.3 = 31 Added syntax highlighting using the CodeMirror text editor.32 Explicit PHP/SQL modes.33 UI changes to reflect updated debug bar UI.26 * Added syntax highlighting using the CodeMirror text editor. 27 * Explicit PHP/SQL modes. 28 * UI changes to reflect updated debug bar UI. 34 29 35 30 = 0.2 = 36 Improvements to MySQL detection and display.37 Bug fixes.31 * Improvements to MySQL detection and display. 32 * Bug fixes. 38 33 39 34 = 0.1 = 40 Initial Release35 * Initial Release 41 36 42 37 == Installation ==
Note: See TracChangeset
for help on using the changeset viewer.