Plugin Directory

Changeset 3176468


Ignore:
Timestamp:
10/27/2024 08:42:24 PM (17 months ago)
Author:
DrewAPicture
Message:

Adopt the plugin, update the readme, tag an initial patch release with WordPress 6.7 compat.

Location:
debug-bar-console
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • debug-bar-console/tags/0.3.1/debug-bar-console.php

    r520555 r3176468  
    11<?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
    212/*
    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
    916 */
    1017
     
    2431    wp_enqueue_script( 'debug-bar-codemirror', plugins_url( "codemirror/debug-bar-codemirror.js", __FILE__ ), array(), '2.22' );
    2532
    26     wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20120317' );
    27     wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20120318' );
     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' );
    2835}
    2936
  • debug-bar-console/tags/0.3.1/readme.txt

    r520340 r3176468  
    11=== Debug Bar Console ===
    2 Contributors: koopersmith
    3 Tags: debug, developer, console
    4 Tested up to: 3.4
    5 Stable tag: 0.3
     2Contributors: drewapicture, koopersmith
     3Tags: debugging, developer, console
     4Tested up to: 6.7
     5Stable tag: 0.3.1
    66Requires at least: 3.1
     7License: GPLv2
    78
    8 Adds a PHP/MySQL console to the debug bar. Requires the debug bar plugin.
     9Adds a PHP/SQL console to the Debug Bar. Requires the Debug Bar plugin.
    910
    1011== Description ==
    1112
    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).
     13Adds a PHP/SQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later).
    1314
    1415== Upgrade Notice ==
    1516
    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
    2719
    2820== Changelog ==
    2921
     22= 0.3.1 =
     23* Tested up to WordPress 6.7
     24
    3025= 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.
    3429
    3530= 0.2 =
    36 Improvements to MySQL detection and display.
    37 Bug fixes.
     31* Improvements to MySQL detection and display.
     32* Bug fixes.
    3833
    3934= 0.1 =
    40 Initial Release
     35* Initial Release
    4136
    4237== Installation ==
  • debug-bar-console/trunk/debug-bar-console.php

    r520555 r3176468  
    11<?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
    212/*
    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
    916 */
    1017
     
    2431    wp_enqueue_script( 'debug-bar-codemirror', plugins_url( "codemirror/debug-bar-codemirror.js", __FILE__ ), array(), '2.22' );
    2532
    26     wp_enqueue_style( 'debug-bar-console', plugins_url( "css/debug-bar-console$suffix.css", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20120317' );
    27     wp_enqueue_script( 'debug-bar-console', plugins_url( "js/debug-bar-console$suffix.js", __FILE__ ), array( 'debug-bar', 'debug-bar-codemirror' ), '20120318' );
     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' );
    2835}
    2936
  • debug-bar-console/trunk/readme.txt

    r520340 r3176468  
    11=== Debug Bar Console ===
    2 Contributors: koopersmith
    3 Tags: debug, developer, console
    4 Tested up to: 3.4
    5 Stable tag: 0.3
     2Contributors: drewapicture, koopersmith
     3Tags: debugging, developer, console
     4Tested up to: 6.7
     5Stable tag: 0.3.1
    66Requires at least: 3.1
     7License: GPLv2
    78
    8 Adds a PHP/MySQL console to the debug bar. Requires the debug bar plugin.
     9Adds a PHP/SQL console to the Debug Bar. Requires the Debug Bar plugin.
    910
    1011== Description ==
    1112
    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).
     13Adds a PHP/SQL console to the debug bar. Requires the [Debug Bar plugin](http://wordpress.org/extend/plugins/debug-bar/) (v0.5 or later).
    1314
    1415== Upgrade Notice ==
    1516
    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
    2719
    2820== Changelog ==
    2921
     22= 0.3.1 =
     23* Tested up to WordPress 6.7
     24
    3025= 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.
    3429
    3530= 0.2 =
    36 Improvements to MySQL detection and display.
    37 Bug fixes.
     31* Improvements to MySQL detection and display.
     32* Bug fixes.
    3833
    3934= 0.1 =
    40 Initial Release
     35* Initial Release
    4136
    4237== Installation ==
Note: See TracChangeset for help on using the changeset viewer.