Changeset 3318984
- Timestamp:
- 06/27/2025 10:35:36 PM (9 months ago)
- Location:
- debughawk
- Files:
-
- 6 edited
- 1 copied
-
tags/0.8 (copied) (copied from debughawk/trunk)
-
tags/0.8/debughawk.php (modified) (2 diffs)
-
tags/0.8/readme.txt (modified) (5 diffs)
-
tags/0.8/wp-content/db.php (modified) (1 diff)
-
trunk/debughawk.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (5 diffs)
-
trunk/wp-content/db.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
debughawk/tags/0.8/debughawk.php
r3318982 r3318984 5 5 * Description: WordPress performance debugging and monitoring, simplified. 6 6 * Author: DebugHawk 7 * Version: 0. 67 * Version: 0.8 8 8 * Requires PHP: 7.4 9 9 * Requires WP: 6.3 … … 24 24 25 25 $config = defined( 'DEBUGHAWK_CONFIG' ) ? DEBUGHAWK_CONFIG : []; 26 $version = '0. 6';26 $version = '0.8'; 27 27 28 28 ( new Plugin( -
debughawk/tags/0.8/readme.txt
r3318982 r3318984 3 3 Tags: performance, monitoring, debug, debugging, query monitor 4 4 Tested up to: 6.8 5 Stable tag: 0. 65 Stable tag: 0.8 6 6 Requires at least: 6.3 7 7 Requires PHP: 7.4 … … 13 13 == Description == 14 14 15 WordPress performance debugging and monitoring, simplified. DebugHawkgives 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.15 WordPress 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. 16 16 17 17 Here's an overview of what's tracked: … … 39 39 4. 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! */`: 40 40 41 ``` php41 ``` 42 42 define( 'DEBUGHAWK_CONFIG', [ 43 43 'enabled' => true, … … 51 51 You can further customize DebugHawk, with the following additional options: 52 52 53 ``` php53 ``` 54 54 define('DEBUGHAWK_CONFIG', [ 55 55 'enabled' => true, … … 72 72 73 73 The 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 dependencies80 * `npm run build` - Build production assets81 * `npm run watch` - Watch and rebuild assets during development -
debughawk/tags/0.8/wp-content/db.php
r3318982 r3318984 5 5 * Description: Database drop-in for DebugHawk to capture database metrics and slow queries. 6 6 * Author: DebugHawk 7 * Version: 0. 67 * Version: 0.8 8 8 * Requires PHP: 7.4 9 9 * Requires WP: 6.3 -
debughawk/trunk/debughawk.php
r3318982 r3318984 5 5 * Description: WordPress performance debugging and monitoring, simplified. 6 6 * Author: DebugHawk 7 * Version: 0. 67 * Version: 0.8 8 8 * Requires PHP: 7.4 9 9 * Requires WP: 6.3 … … 24 24 25 25 $config = defined( 'DEBUGHAWK_CONFIG' ) ? DEBUGHAWK_CONFIG : []; 26 $version = '0. 6';26 $version = '0.8'; 27 27 28 28 ( new Plugin( -
debughawk/trunk/readme.txt
r3318982 r3318984 3 3 Tags: performance, monitoring, debug, debugging, query monitor 4 4 Tested up to: 6.8 5 Stable tag: 0. 65 Stable tag: 0.8 6 6 Requires at least: 6.3 7 7 Requires PHP: 7.4 … … 13 13 == Description == 14 14 15 WordPress performance debugging and monitoring, simplified. DebugHawkgives 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.15 WordPress 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. 16 16 17 17 Here's an overview of what's tracked: … … 39 39 4. 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! */`: 40 40 41 ``` php41 ``` 42 42 define( 'DEBUGHAWK_CONFIG', [ 43 43 'enabled' => true, … … 51 51 You can further customize DebugHawk, with the following additional options: 52 52 53 ``` php53 ``` 54 54 define('DEBUGHAWK_CONFIG', [ 55 55 'enabled' => true, … … 72 72 73 73 The 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 dependencies80 * `npm run build` - Build production assets81 * `npm run watch` - Watch and rebuild assets during development -
debughawk/trunk/wp-content/db.php
r3318982 r3318984 5 5 * Description: Database drop-in for DebugHawk to capture database metrics and slow queries. 6 6 * Author: DebugHawk 7 * Version: 0. 67 * Version: 0.8 8 8 * Requires PHP: 7.4 9 9 * Requires WP: 6.3
Note: See TracChangeset
for help on using the changeset viewer.