Kelly Brazil
313bd86e3e
doc update
2023-04-02 12:57:56 -07:00
Kelly Brazil
56259d5605
fix for dashes in name
2023-04-02 12:57:50 -07:00
Kelly Brazil
8a4885c1fe
Merge pull request #384 from six3six/patch-1
...
Fix iwconfig re_interface regex
2023-03-31 08:40:00 -07:00
Louis Desplanche
5b06f84917
Fix iwconfig re_interface regex
...
Small fix of re_interface in iwconfig.py.
When the network SSID contains a "-" character, the network interface was ignored.
2023-03-31 11:15:31 +02:00
Kelly Brazil
37a1428914
Merge pull request #381 from kellyjonbrazil/dev
...
Dev v1.23.1
v1.23.1
2023-03-23 20:16:11 -04:00
Kelly Brazil
bff065daf3
doc update
2023-03-23 16:41:50 -07:00
Kelly Brazil
c60d899f31
ignore non-parser-plugin python files in plugin directory
2023-03-23 16:40:13 -07:00
Kelly Brazil
fb7c390506
add lsusb tests
2023-03-23 06:43:06 -07:00
Kelly Brazil
22afb69573
doc update
2023-03-22 16:47:45 -07:00
Kelly Brazil
be51304c9c
add support for CDC MBIM and CDC MBIM Extended
2023-03-22 16:43:57 -07:00
Kelly Brazil
44f83d800f
doc update
2023-03-19 12:49:25 -07:00
Kelly Brazil
bf07973d90
doc update
2023-03-19 12:39:28 -07:00
Kelly Brazil
11e94b686c
mypy fix
2023-03-18 15:47:19 -07:00
Kelly Brazil
c68bf674a1
add py.typed file to wheel
2023-03-18 15:43:22 -07:00
Kelly Brazil
dbbc310082
Merge pull request #378 from jwilk-forks/proc-status-umask
...
Make umask optional in /proc/PID/status
2023-03-18 22:37:13 +00:00
Kelly Brazil
e861f4a597
Merge pull request #379 from jwilk-forks/spelling
...
Fix typo
2023-03-18 22:25:21 +00:00
Kelly Brazil
049e93707c
doc update
2023-03-18 15:16:02 -07:00
Kelly Brazil
164294ecb7
add integer and float conversions
2023-03-18 15:14:59 -07:00
Jakub Wilk
22ef489795
fix typo
2023-03-18 11:07:15 +01:00
Jakub Wilk
8f9d650f6c
make umask optional in /proc/PID/status
...
Zombie processes don't have the umask field available.
2023-03-18 10:28:05 +01:00
Kelly Brazil
7e134a63bd
add support for the timesync-status option
2023-03-15 06:58:31 -07:00
Kelly Brazil
9b5c25cb5b
fix for rtc configured as UTC
2023-03-13 19:47:38 -07:00
Kelly Brazil
894946b207
doc update
2023-03-05 10:07:23 -08:00
Kelly Brazil
92ad2068db
version bump
2023-03-05 10:06:54 -08:00
Kelly Brazil
59662a1500
fix for lines that start with tab
2023-03-05 10:04:00 -08:00
Kelly Brazil
125b88a2ca
Merge pull request #371 from kellyjonbrazil/master
...
sync to dev
2023-03-05 17:59:09 +00:00
Kelly Brazil
79fce8c769
doc update
2023-02-27 17:37:49 -08:00
Kelly Brazil
a4a53f8b3b
Merge pull request #368 from kellyjonbrazil/dev
...
Dev v1.23.0
v1.23.0
2023-02-27 15:13:57 -08:00
Kelly Brazil
743e1ae90f
doc update
2023-02-27 15:01:00 -08:00
Kelly Brazil
dbcff80907
add zpool tests
2023-02-27 13:44:16 -08:00
Kelly Brazil
6e10965aed
doc update
2023-02-21 17:19:17 -08:00
Kelly Brazil
0c8c4a9c53
formatting
2023-02-21 17:18:24 -08:00
Kelly Brazil
7632541a1e
Merge pull request #365 from tzeikob/xrandr-edid-364
...
Modify the xrandr parser to extract display model info from EDID #364
2023-02-21 17:04:46 -08:00
Kelly Brazil
a213ad9a85
doc update
2023-02-21 15:50:09 -08:00
Kelly Brazil
15ac5a9004
fix for crontab files with only shortcut entries
2023-02-21 15:44:55 -08:00
Jake Ob
0658668eb0
Fix broken TypedDict compatibility with older versions of python
...
By missing to declare the Model as a generic dictionary type we cause
the script to fail because the TypedDict is not supported by older
versions of python (e.g. 3.6, 3.7).
2023-02-21 14:43:10 +02:00
Kelly Brazil
ccef69ac37
add ubuntu16 tests
2023-02-20 12:04:45 -08:00
Kelly Brazil
64676fda2e
fix for older linux style output
2023-02-20 11:56:20 -08:00
Jake Ob
6ea2d776ae
Add unit tests for xrandr --properties outputs
2023-02-17 16:25:41 +02:00
Jake Ob
98ced9616c
Modify xrandr parser to extract model info from EDID ( #364 )
...
This change will make the xrandr parser to work also with outputs from
`xrandr --properties`, where the option `--properties` enables xrandr
to return the EDID data of each output device. The parser is expected
to remain backward compatible for regular xrandr outputs. The extra info
that will be added to every device object is:
```json
{
"model_name": "str",
"product_id": "str",
"serial_number": "str"
}
```
Because the EDID data come encoded in a hexadecimal string, we have to
decode them by vendoring the pyedid (https://github.com/jojonas/pyedid ) library.
Fixes : #364
2023-02-17 16:09:50 +02:00
Kelly Brazil
ae19183803
add test for is_current fix
2023-02-13 18:17:14 -08:00
Kelly Brazil
8536514baf
add test for output with extra spaces that caused infinite loops
2023-02-13 18:09:10 -08:00
Kelly Brazil
81982a9f79
doc updagte
2023-02-12 18:30:31 -08:00
Kelly Brazil
1acbb2f096
Merge pull request #361 from tzeikob/reflect-360
...
Move the reflect value in its own key (xrandr) #360
2023-02-12 18:28:37 -08:00
Jake Ob
80fb4d40a5
Add unit test to assert devices in reflect mode
2023-02-09 21:22:34 +02:00
Kelly Brazil
c972dd1aac
Merge pull request #362 from jpmat296/master
...
Improve accepted formats in proc_pid_smaps
2023-02-09 09:51:26 -08:00
Jean-Pierre Matsumoto
9dde65c25c
Improve accepted formats in proc_pid_smaps
2023-02-07 14:57:15 +01:00
Jake Ob
7486b0c7cd
Move the reflect value in its own key (xrandr)
...
Currently the reflect value of a device is included in the rotation
key as a combination of both rotation and reflection (e.g. normal X axis).
With this modification we move the reflection value to its own key in the
JSON document like so:
```json
{
...
"rotation": "...",
"reflection": "...,
...
}
```
Fixes: issue #360
2023-02-07 13:02:21 +02:00
Kelly Brazil
5c7a520a0b
formatting
2023-02-05 13:04:32 -08:00
Kelly Brazil
193ddf71f8
fix typos
2023-02-05 09:52:59 -08:00