1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00

doc update

This commit is contained in:
Kelly Brazil
2024-11-19 12:15:18 -08:00
parent a8b231da81
commit 34ab34cc66
2 changed files with 14 additions and 13 deletions

View File

@ -4,6 +4,7 @@ jc changelog
- Add `ipconfig` command parser (`ipconfig` for Windows) - Add `ipconfig` command parser (`ipconfig` for Windows)
- Enhance `ethtool` parser to support `link_partner_advertised_link_modes` - Enhance `ethtool` parser to support `link_partner_advertised_link_modes`
- Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS - Enhance `ifconfig` parser to support `utun` interfaces with assigned IPv4 addresses on macOS
- Enhance `nsd-control` parser with additional state fields
- Enhance `ping-s` streaming parser to support error replies - Enhance `ping-s` streaming parser to support error replies
- Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist - Fix `bluetoothctl` parser when extra attributes like `manufacturer` and `version` exist
- Fix `df` parser to correctly output binary vs. decimal size outputs - Fix `df` parser to correctly output binary vs. decimal size outputs

View File

@ -17,24 +17,24 @@ Schema:
[ [
{ {
"version": string, "version": string,
"verbosity": integer, "verbosity": integer,
"ratelimit": integer "ratelimit": integer
} }
] ]
[ [
{ {
"zone": string "zone": string
"status": { "status": {
"state": string, "state": string,
"pattern": string, # Additional "pattern": string, # Additional
"catalog-member-id": string, # Additional "catalog-member-id": string, # Additional
"served-serial": string, "served-serial": string,
"commit-serial": string, "commit-serial": string,
"notified-serial": string, # Conditional "notified-serial": string, # Conditional
"wait": string, "wait": string,
"transfer": string # Conditional "transfer": string # Conditional
} }
} }
] ]
@ -69,7 +69,7 @@ import jc.utils
class info(): class info():
"""Provides parser metadata (version, author, etc.)""" """Provides parser metadata (version, author, etc.)"""
version = '1.1' version = '1.2'
description = '`nsd-control` command parser' description = '`nsd-control` command parser'
author = 'Pettai' author = 'Pettai'
author_email = 'pettai@sunet.se' author_email = 'pettai@sunet.se'