mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-07 00:57:22 +02:00
doc update
This commit is contained in:
@ -1,14 +1,15 @@
|
|||||||
jc changelog
|
jc changelog
|
||||||
|
|
||||||
20241118 v1.25.4
|
20241119 v1.25.4
|
||||||
- Add `ipconfig` command parser (`ipconfig` for Windows)
|
- Add `ipconfig` command parser (`ipconfig` for Windows)
|
||||||
- Enhance `ping-s` streaming parser to support error replies
|
|
||||||
- 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 `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
|
||||||
- Fix `mount` parser for cases where there are spaces in the filesystem name
|
|
||||||
- Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses
|
- Fix `ip-address` parser for Python 3.13 changes to IPv4 mapped IPv6 addresses
|
||||||
|
- Fix `mount` parser for cases where there are spaces in the filesystem name
|
||||||
|
- Fix `netstat` parser for cases where there are spaces in the program name
|
||||||
- Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name
|
- Fix `pkg-index-deb`, `apt-cache-show`, and `rpm-qi` parsers to correctly convert contiguous packages with the same name
|
||||||
- Fix `uptime` parser for data that contains `user` instead of `users`
|
- Fix `uptime` parser for data that contains `user` instead of `users`
|
||||||
- Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters
|
- Enhance `jc.utils.convert_size_to_int()` to add `posix_mode` and `decimal_bias` parameters
|
||||||
|
@ -355,7 +355,7 @@ import jc.utils
|
|||||||
|
|
||||||
class info():
|
class info():
|
||||||
"""Provides parser metadata (version, author, etc.)"""
|
"""Provides parser metadata (version, author, etc.)"""
|
||||||
version = '1.15'
|
version = '1.16'
|
||||||
description = '`netstat` command parser'
|
description = '`netstat` command parser'
|
||||||
author = 'Kelly Brazil'
|
author = 'Kelly Brazil'
|
||||||
author_email = 'kellyjonbrazil@gmail.com'
|
author_email = 'kellyjonbrazil@gmail.com'
|
||||||
|
Reference in New Issue
Block a user