Changeset 3401509
- Timestamp:
- 11/24/2025 03:03:14 AM (4 months ago)
- File:
-
- 1 edited
-
stcw-coverage-assistant/tags/1.0.6/readme.txt (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
stcw-coverage-assistant/tags/1.0.6/readme.txt
r3401411 r3401509 161 161 162 162 Example usage: 163 ``` 163 164 164 # Show current coverage 165 165 wp scw coverage … … 173 173 # Pipe to wget for caching 174 174 wp scw uncached-urls | wget -i - 175 ```176 175 177 176 See CLI.md in the plugin directory for complete documentation. … … 190 189 * GitHub Issues: https://github.com/derickschaefer/stcw-assistant/issues 191 190 * WordPress.org Support Forum: https://wordpress.org/support/plugin/stcw-coverage-assistant/ 191 * [Coverage Assistant Home](https://moderncli.dev/code/stcw-coverage-assistant/) 192 192 193 193 == Screenshots == … … 316 316 * Submit Issues: https://github.com/derickschaefer/stcw-assistant/issues 317 317 * Pull Requests: https://github.com/derickschaefer/stcw-assistant/pulls 318 318 * More details and examples: [Modern CLI Book](https://moderncli.dev/code/stcw-coverage-assistant/) 319 319 = License = 320 320 … … 394 394 **File Structure** 395 395 396 ``` 397 stcw-coverage-assistant/ 398 ├── stcw-coverage-assistant.php Main plugin file 399 ├── LICENSE GPL v2+ license 400 ├── readme.txt This file 401 ├── CLI.md WP-CLI documentation 402 ├── uninstall.php Clean removal script 403 ├── includes/ 404 │ ├── class-stcwca-core.php Coverage calculation engine 405 │ ├── class-stcwca-cli.php WP-CLI commands 406 │ └── class-stcwca-crawler.php Shared crawler logic 407 └── admin/ 408 ├── class-stcwca-admin.php Admin dashboard controller 409 ├── css/ 410 │ └── admin-style.css Modern UI styling 411 ├── js/ 412 │ ├── admin-script.js Copy Link functionality 413 │ └── crawler.js GUI crawler with adaptive throttling 414 └── views/ 415 └── dashboard.php Dashboard template 416 ``` 396 stcw-coverage-assistant/ 397 stcw-coverage-assistant.php Main plugin file 398 LICENSE GPL v2+ license 399 readme.txt This file 400 uninstall.php Clean removal script 401 includes/ 402 class-stcwca-core.php Coverage calculation engine 403 class-stcwca-cli.php WP-CLI commands 404 class-stcwca-crawler.php Shared crawler logic 405 admin/ 406 class-stcwca-admin.php Admin dashboard controller 407 css/ 408 admin-style.css Modern UI styling 409 js/ 410 admin-script.js Copy Link functionality 411 crawler.js GUI crawler with adaptive throttling 412 views/ 413 dashboard.php Dashboard template 417 414 418 415 **Code Quality**
Note: See TracChangeset
for help on using the changeset viewer.