From 5c6915e1a9a71ef7539d8734e1acad066265b454 Mon Sep 17 00:00:00 2001 From: Harald Hope Date: Sun, 3 Jan 2016 14:09:57 -0800 Subject: [PATCH] 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. --- inxi | 6 +++--- inxi.changelog | 13 +++++++++++++ 2 files changed, 16 insertions(+), 3 deletions(-) diff --git a/inxi b/inxi index c88f60d..56f1460 100755 --- a/inxi +++ b/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' diff --git a/inxi.changelog b/inxi.changelog index a42a453..9736834 100755 --- a/inxi.changelog +++ b/inxi.changelog @@ -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