Plugin Directory

Changeset 3318984


Ignore:
Timestamp:
06/27/2025 10:35:36 PM (9 months ago)
Author:
A5hleyRich
Message:

Update to version 0.8 from GitHub

Location:
debughawk
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • debughawk/tags/0.8/debughawk.php

    r3318982 r3318984  
    55 * Description: WordPress performance debugging and monitoring, simplified.
    66 * Author: DebugHawk
    7  * Version: 0.6
     7 * Version: 0.8
    88 * Requires PHP: 7.4
    99 * Requires WP: 6.3
     
    2424
    2525$config  = defined( 'DEBUGHAWK_CONFIG' ) ? DEBUGHAWK_CONFIG : [];
    26 $version = '0.6';
     26$version = '0.8';
    2727
    2828( new Plugin(
  • debughawk/tags/0.8/readme.txt

    r3318982 r3318984  
    33Tags: performance, monitoring, debug, debugging, query monitor
    44Tested up to: 6.8
    5 Stable tag: 0.6
     5Stable tag: 0.8
    66Requires at least: 6.3
    77Requires PHP: 7.4
     
    1313== Description ==
    1414
    15 WordPress performance debugging and monitoring, simplified. DebugHawk gives you deep insight into your WordPress site's front-end and back-end performance, with the clarity only a tool purpose-built for WordPress can offer.
     15WordPress performance debugging and monitoring, simplified. [DebugHawk](https://debughawk.com) gives you deep insight into your WordPress site's front-end and back-end performance, with the clarity only a tool purpose-built for WordPress can offer.
    1616
    1717Here's an overview of what's tracked:
     
    39394. Configure the plugin by adding the configuration provided by DebugHawk to your `wp-config.php` file, above the line that says `/* That's all, stop editing! */`:
    4040
    41 ```php
     41```
    4242define( 'DEBUGHAWK_CONFIG', [
    4343    'enabled' => true,
     
    5151You can further customize DebugHawk, with the following additional options:
    5252
    53 ```php
     53```
    5454define('DEBUGHAWK_CONFIG', [
    5555    'enabled'  => true,
     
    7272
    7373The plugin works transparently without any additional user interaction after configuration.
    74 
    75 == Development ==
    76 
    77 The TypeScript source files for this plugin are available in the plugin's directory at `resources/src/`. The distributed code is built using Vite and can be built using the following commands:
    78 
    79 * `npm install` - Install dependencies
    80 * `npm run build` - Build production assets
    81 * `npm run watch` - Watch and rebuild assets during development
  • debughawk/tags/0.8/wp-content/db.php

    r3318982 r3318984  
    55 * Description: Database drop-in for DebugHawk to capture database metrics and slow queries.
    66 * Author: DebugHawk
    7  * Version: 0.6
     7 * Version: 0.8
    88 * Requires PHP: 7.4
    99 * Requires WP: 6.3
  • debughawk/trunk/debughawk.php

    r3318982 r3318984  
    55 * Description: WordPress performance debugging and monitoring, simplified.
    66 * Author: DebugHawk
    7  * Version: 0.6
     7 * Version: 0.8
    88 * Requires PHP: 7.4
    99 * Requires WP: 6.3
     
    2424
    2525$config  = defined( 'DEBUGHAWK_CONFIG' ) ? DEBUGHAWK_CONFIG : [];
    26 $version = '0.6';
     26$version = '0.8';
    2727
    2828( new Plugin(
  • debughawk/trunk/readme.txt

    r3318982 r3318984  
    33Tags: performance, monitoring, debug, debugging, query monitor
    44Tested up to: 6.8
    5 Stable tag: 0.6
     5Stable tag: 0.8
    66Requires at least: 6.3
    77Requires PHP: 7.4
     
    1313== Description ==
    1414
    15 WordPress performance debugging and monitoring, simplified. DebugHawk gives you deep insight into your WordPress site's front-end and back-end performance, with the clarity only a tool purpose-built for WordPress can offer.
     15WordPress performance debugging and monitoring, simplified. [DebugHawk](https://debughawk.com) gives you deep insight into your WordPress site's front-end and back-end performance, with the clarity only a tool purpose-built for WordPress can offer.
    1616
    1717Here's an overview of what's tracked:
     
    39394. Configure the plugin by adding the configuration provided by DebugHawk to your `wp-config.php` file, above the line that says `/* That's all, stop editing! */`:
    4040
    41 ```php
     41```
    4242define( 'DEBUGHAWK_CONFIG', [
    4343    'enabled' => true,
     
    5151You can further customize DebugHawk, with the following additional options:
    5252
    53 ```php
     53```
    5454define('DEBUGHAWK_CONFIG', [
    5555    'enabled'  => true,
     
    7272
    7373The plugin works transparently without any additional user interaction after configuration.
    74 
    75 == Development ==
    76 
    77 The TypeScript source files for this plugin are available in the plugin's directory at `resources/src/`. The distributed code is built using Vite and can be built using the following commands:
    78 
    79 * `npm install` - Install dependencies
    80 * `npm run build` - Build production assets
    81 * `npm run watch` - Watch and rebuild assets during development
  • debughawk/trunk/wp-content/db.php

    r3318982 r3318984  
    55 * Description: Database drop-in for DebugHawk to capture database metrics and slow queries.
    66 * Author: DebugHawk
    7  * Version: 0.6
     7 * Version: 0.8
    88 * Requires PHP: 7.4
    99 * Requires WP: 6.3
Note: See TracChangeset for help on using the changeset viewer.