mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
doc update
This commit is contained in:
@ -1,11 +1,12 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
20240502 v1.25.3
|
20240510 v1.25.3
|
||||||
- Add `battery_percentage` field to `bluetoothctl` parser output
|
- Add `battery_percentage` field to `bluetoothctl` parser output
|
||||||
- Fix `pci-ids` parser to correctly handle multiple subdevices
|
- Fix `pci-ids` parser to correctly handle multiple subdevices
|
||||||
- Fix `pip-show` parser to handle multi-line fields with a beginning blank line
|
- Fix `pip-show` parser to handle multi-line fields with a beginning blank line
|
||||||
- Fix `top` parsers to quiet uptime info parsing
|
- Fix `top` parsers to quiet uptime info parsing
|
||||||
- Fix `traceroute` parser to correctly handle hops with multiple IPs
|
- Fix `traceroute` parser to correctly handle hops with multiple IPs
|
||||||
|
- Fix `zpool-status` parser for config items lacking data values
|
||||||
- Optimize some tests by removing timezone settings and using quiet=True
|
- Optimize some tests by removing timezone settings and using quiet=True
|
||||||
- Documentation updates
|
- Documentation updates
|
||||||
|
|
||||||
|
@ -34,11 +34,11 @@ Schema:
|
|||||||
"config": [
|
"config": [
|
||||||
{
|
{
|
||||||
"name": string,
|
"name": string,
|
||||||
"state": string,
|
"state": string/null,
|
||||||
"read": integer,
|
"read": integer/null,
|
||||||
"write": integer,
|
"write": integer/null,
|
||||||
"checksum": integer,
|
"checksum": integer/null,
|
||||||
"errors": string,
|
"errors": string/null,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"errors": string
|
"errors": string
|
||||||
|
@ -29,11 +29,11 @@ Schema:
|
|||||||
"config": [
|
"config": [
|
||||||
{
|
{
|
||||||
"name": string,
|
"name": string,
|
||||||
"state": string,
|
"state": string/null,
|
||||||
"read": integer,
|
"read": integer/null,
|
||||||
"write": integer,
|
"write": integer/null,
|
||||||
"checksum": integer,
|
"checksum": integer/null,
|
||||||
"errors": string,
|
"errors": string/null,
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"errors": string
|
"errors": string
|
||||||
|
Reference in New Issue
Block a user