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:
Harald Hope 2016-01-03 14:09:57 -08:00
parent ca4e5e1c1e
commit 5c6915e1a9
2 changed files with 16 additions and 3 deletions

6
inxi
View file

@ -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'

View file

@ -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