mirror of
https://github.com/smxi/inxi.git
synced 2025-01-19 00:47:47 +00:00
New version, new tarball. Finalized the * expansion fix for arrays. This is a significant
bug fix, so while the bug almost never appears, if it does, the inxi output can get completely corrupted.
This commit is contained in:
parent
ca4e5e1c1e
commit
5c6915e1a9
6
inxi
6
inxi
|
@ -1,8 +1,8 @@
|
|||
#!/usr/bin/env bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### Version: 2.2.31
|
||||
#### Date: 2015-12-30
|
||||
#### Version: 2.2.32
|
||||
#### Date: 2016-01-03
|
||||
#### Patch Number: 00
|
||||
########################################################################
|
||||
#### SPECIAL THANKS
|
||||
|
@ -631,7 +631,7 @@ BAN_LIST_CPU='@||cpu |cpu deca|dual core|dual-core|tri core|tri-core|quad core|q
|
|||
# See github issue 75 for more details on value: *, triggers weird behaviors if present in value
|
||||
# /sys/devices/virtual/dmi/id/product_name:['*']
|
||||
# this is for bash arrays AND avoiding * in arrays: ( fred * greg ) expands to the contents of the directory
|
||||
BAN_LIST_ARRAY=',|^[[:space:]]*\*[[:space:]]*$'
|
||||
BAN_LIST_ARRAY=',|\*'
|
||||
|
||||
SENSORS_GPU_SEARCH='intel|radeon|nouveau'
|
||||
|
||||
|
|
|
@ -1,3 +1,16 @@
|
|||
=====================================================================================
|
||||
Version: 2.2.32
|
||||
Patch Version: 00
|
||||
Script Date: 2016-01-03
|
||||
-----------------------------------
|
||||
Changes:
|
||||
-----------------------------------
|
||||
New version, new tarball. Finalized the * expansion fix for arrays. This is a significant
|
||||
bug fix, so while the bug almost never appears, if it does, the inxi output can get completely
|
||||
corrupted.
|
||||
-----------------------------------
|
||||
-- Harald Hope - Sun, 03 Jan 2016 14:08:04 -0800
|
||||
|
||||
=====================================================================================
|
||||
Version: 2.2.31
|
||||
Patch Version: 00
|
||||
|
|
Loading…
Reference in a new issue