Plugin Directory

Changeset 3401509


Ignore:
Timestamp:
11/24/2025 03:03:14 AM (4 months ago)
Author:
derickschaefer
Message:

Update readme for release 1.0.6

File:
1 edited

Legend:

Unmodified
Added
Removed
  • stcw-coverage-assistant/tags/1.0.6/readme.txt

    r3401411 r3401509  
    161161
    162162Example usage:
    163 ```
     163
    164164# Show current coverage
    165165wp scw coverage
     
    173173# Pipe to wget for caching
    174174wp scw uncached-urls | wget -i -
    175 ```
    176175
    177176See CLI.md in the plugin directory for complete documentation.
     
    190189* GitHub Issues: https://github.com/derickschaefer/stcw-assistant/issues
    191190* WordPress.org Support Forum: https://wordpress.org/support/plugin/stcw-coverage-assistant/
     191* [Coverage Assistant Home](https://moderncli.dev/code/stcw-coverage-assistant/)
    192192
    193193== Screenshots ==
     
    316316* Submit Issues: https://github.com/derickschaefer/stcw-assistant/issues
    317317* 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/)
    319319= License =
    320320
     
    394394**File Structure**
    395395
    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
    417414
    418415**Code Quality**
Note: See TracChangeset for help on using the changeset viewer.