aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xinxi161
-rw-r--r--inxi.19
-rw-r--r--inxi.changelog1072
3 files changed, 669 insertions, 573 deletions
diff --git a/inxi b/inxi
index 406b842..b610d3c 100755
--- a/inxi
+++ b/inxi
@@ -31,8 +31,8 @@ use POSIX qw(uname strftime ttyname);
## INXI INFO ##
my $self_name='inxi';
-my $self_version='3.0.27';
-my $self_date='2018-10-14';
+my $self_version='3.0.28';
+my $self_date='2018-11-28';
my $self_patch='00';
## END INXI INFO ##
@@ -324,7 +324,7 @@ sub check_tools {
my @data = program_values('sudo');
my $version = program_version($path,$data[0],$data[1],$data[2],$data[5]);
$version =~ s/^([0-9]+\.[0-9]+).*/$1/;
- $sudo = "$path -n " if $version >= 1.7;
+ $sudo = "$path -n " if is_numeric($version) && $version >= 1.7;
}
set_fake_tools() if $b_fake_bsd;
}
@@ -376,7 +376,7 @@ sub set_display_width {
}
# print "tc: $size{'term'} cmc: $size{'console'}\n";
# double check, just in case it's missing functionality or whatever
- if ( $size{'term'} == 0 || $size{'term'} !~ /\d/ ){
+ if ( $size{'term'} == 0 || !is_int($size{'term'}) ){
$size{'term'}=80;
# we'll be using this for terminal dimensions later so don't set default.
# $size{'term-lines'}=100;
@@ -3342,6 +3342,8 @@ sub program_values {
'tvtwm' => ['^tvtwm',0,'0','tvtwm',0,1,0],
'twin' => ['^Twin:',2,'--version','Twin',0,0,0],
'twm' => ['^twm',0,'0','twm',0,1,0],
+ 'ukui' => ['^ukui-session',2,'--version','UKUI',0,1,0],
+ 'ukwm' => ['^ukwm',2,'--version','ukwm',0,1,0],
'unagi' => ['^unagi',0,'0','unagi',0,1,0],
'unity' => ['^unity',2,'--version','Unity',0,1,0],
'unity-system-compositor' => ['^unity-system-compositor',2,'--version','unity-system-compositor (mir)',0,0,0],
@@ -4269,13 +4271,14 @@ sub get_options{
}},
'ppc' => sub {
$b_ppc = 1 },
-
'recommends' => sub {
$b_recommends = 1; },
'sparc' => sub {
$b_sparc = 1; },
'sys-debug' => sub {
$debugger{'sys-force'} = 1; },
+ 'tty' => sub { # workaround for ansible running this
+ $b_irc = 0; },
'U|update:s' => sub { # 1,2,3 OR http://myserver/path/inxi
my ($opt,$arg) = @_;
$b_downloader = 1;
@@ -4702,6 +4705,9 @@ sub show_options {
['1', '', '--sleep', "[0-x.x] Change CPU sleep time, in seconds, for -C
(default:^$cpu_sleep). Allows system to catch up and show a more accurate CPU
use. Example:^$self_name^-Cxxx^--sleep^0.15" ],
+ ['1', '', '--tty', "Forces irc flag to false. Useful for running Ansible or Chef.
+ Must use -y [width] option if you want a specific output width. Always put this option
+ first in an option list."],
['1', '', '--usb-sys', "Force USB data to use /sys as data source (Linux only)." ],
['1', '', '--usb-tool', "Force USB data to use lsusb as data source (Linux only)." ],
['1', '', '--wm', "Force wm: to use wmctrl as data source. Default uses ps." ],
@@ -5336,7 +5342,7 @@ sub row_defaults {
'arm-cpu-f' => 'Use -f option to see features',
'arm-pci' => "No ARM data found for this feature.",
'battery-data' => "No system battery data found. Is one present?",
- 'battery-data-sys' => "No /sys data found. Old system?",
+ 'battery-data-sys' => "No /sys data found.",
'cpu-bugs-null' => "No CPU vulnerability/bugs data available.",
'cpu-model-null' => "Model N/A",
'cpu-speeds' => "No speed data found for $id cores.",
@@ -5347,7 +5353,7 @@ sub row_defaults {
'display-console' => 'No advanced graphics data found on this system in console.',
'display-null' => 'No advanced graphics data found on this system.',
'display-root' => 'Advanced graphics data unavailable in console for root.',
- 'display-root-x' => 'Advanced graphics data unavailable for root. Old System?',
+ 'display-root-x' => 'Advanced graphics data unavailable for root.',
'display-server' => "No display server data found. Headless machine?",
'glxinfo-missing' => "Unable to show advanced data. Required tool glxinfo missing.",
'display-try' => 'Advanced graphics data unavailable in console. Try -G --display',
@@ -6152,7 +6158,16 @@ sub create_output {
next if !$battery{$key}{'purpose'} || $battery{$key}{'purpose'} ne 'primary';
# $battery{$key}{''};
# we need to handle cases where charge or energy full is 0
- $charge = (defined $battery{$key}{'energy_now'} && $battery{$key}{'energy_now'} ne '') ? "$battery{$key}{'energy_now'} Wh" : 'N/A';
+ if (defined $battery{$key}{'energy_now'} && $battery{$key}{'energy_now'} ne ''){
+ $charge = "$battery{$key}{'energy_now'} Wh";
+ }
+ # better than nothing, shows the charged percent
+ elsif (defined $battery{$key}{'capacity'} && $battery{$key}{'capacity'} ne ''){
+ $charge = $battery{$key}{'capacity'} . '%'
+ }
+ else {
+ $charge = 'N/A';
+ }
if ($battery{$key}{'energy_full'} || $battery{$key}{'energy_full_design'}){
$battery{$key}{'energy_full_design'} ||= 'N/A';
$battery{$key}{'energy_full'}= (defined $battery{$key}{'energy_full'} && $battery{$key}{'energy_full'} ne '') ? $battery{$key}{'energy_full'} : 'N/A';
@@ -6279,8 +6294,9 @@ sub battery_data_sys {
# 'type' is generic, like: Battery, Mains
# capacity_level is a string, like: Normal
my @items = qw(alarm capacity capacity_level charge_full charge_full_design charge_now
- cycle_count energy_full energy_full_design energy_now location manufacturer model_name
- power_now present serial_number status technology type voltage_min_design voltage_now);
+ constant_charge_current constant_charge_current_max cycle_count
+ energy_full energy_full_design energy_now location manufacturer model_name
+ power_now present scope serial_number status technology type voltage_min_design voltage_now);
foreach $item (@batteries){
$b_ma = 0;
$id = $item;
@@ -6311,8 +6327,9 @@ sub battery_data_sys {
}
# note: the following 3 were off, 100000 instead of 1000000
# why this is, I do not know. I did not document any reason for that
- # so going on assumption it is a mistake. CHARGE is mAh, which are converted
- # to Wh by: mAh x voltage. Note: voltage fluctuates so will make results vary slightly.
+ # so going on assumption it is a mistake.
+ # CHARGE is mAh, which are converted to Wh by: mAh x voltage.
+ # Note: voltage fluctuates so will make results vary slightly.
elsif ($file eq 'charge_full_design'){
$value = $value/1000000;
$b_ma = 1;
@@ -6346,7 +6363,8 @@ sub battery_data_sys {
if ($id =~ /^(BAT|CMB).*$/i ||
( $battery{$id}{'energy_full'} || $battery{$id}{'charge_full'} ||
$battery{$id}{'energy_now'} || $battery{$id}{'charge_now'} ||
- $battery{$id}{'energy_full_design'} || $battery{$id}{'charge_full_design'} ) ){
+ $battery{$id}{'energy_full_design'} || $battery{$id}{'charge_full_design'} ) ||
+ $battery{$id}{'voltage_min_design'} || $battery{$id}{'voltage_now'} ){
$battery{$id}{'purpose'} = 'primary';
}
else {
@@ -6386,6 +6404,7 @@ sub battery_data_sys {
$battery{$id}{'energy_full'} = sprintf( "%.1f", $battery{$id}{'energy_full'} );
}
}
+ main::log_data('dump','sys: %battery',\%battery) if $b_log;
eval $end if $b_log;
return %battery;
}
@@ -6435,6 +6454,7 @@ sub battery_data_dmi {
}
}
# print Data::Dumper::Dumper \%battery;
+ main::log_data('dump','dmi: %battery',\%battery) if $b_log;
eval $end if $b_log;
return %battery;
}
@@ -6463,6 +6483,7 @@ sub upower_data {
}
}
}
+ main::log_data('dump','upower: %data',\%data) if $b_log;
eval $end if $b_log;
return %data;
}
@@ -7527,7 +7548,7 @@ sub cpu_speeds {
}
sub set_cpu_speeds_sys {
eval $start if $b_log;
- my (@arm,%speeds);
+ my (@max_freq,@min_freq,@policies,%speeds);
my $sys = '/sys/devices/system/cpu/cpufreq/policy0';
my $sys2 = '/sys/devices/system/cpu/cpu0/cpufreq/';
my ($cur,$min,$max) = ('scaling_cur_freq','scaling_min_freq','scaling_max_freq');
@@ -7549,40 +7570,51 @@ sub set_cpu_speeds_sys {
$speeds{'max-freq'} = (main::reader("$sys/$max"))[0];
$speeds{'max-freq'} = speed_cleaner($speeds{'max-freq'},'khz');
}
- if ($b_arm){
- @arm = main::globber('/sys/devices/system/cpu/cpufreq/policy*/');
+ if ($b_arm || $b_mips){
+ @policies = main::globber('/sys/devices/system/cpu/cpufreq/policy*/');
# there are arm chips with two dies, that run at different min max speeds!!
# see: https://github.com/smxi/inxi/issues/128
# it would be slick to show both die min/max/cur speeds, but this is
# ok for now.
- if (scalar @arm > 1){
+ if (scalar @policies > 1){
my ($current,$cur_temp,$max,$max_temp,$min,$min_temp) = (0,0,0,0,0,0);
- foreach (@arm){
+ foreach (@policies){
$_ =~ s/\/$//; # strip off last slash in case globs have them
- $max_temp = (-r "$_/cpuinfo_max_freq") ? main::reader("$_/cpuinfo_max_freq") : 0;
- $max_temp = speed_cleaner($max_temp,'khz') if $max_temp;
- if ($max_temp > $max){
- $max = $max_temp;
+ $max_temp = (-r "$_/cpuinfo_max_freq") ? (main::reader("$_/cpuinfo_max_freq"))[0] : 0;
+ if ($max_temp){
+ $max_temp = speed_cleaner($max_temp,'khz');
+ push @max_freq, $max_temp;
}
- $min_temp = (-r "$_/cpuinfo_min_freq") ? main::reader("$_/cpuinfo_min_freq") : 0;
- $min_temp = speed_cleaner($min_temp,'khz') if $min_temp;
- if ($min_temp < $min || $min == 0){
- $min = $min_temp;
+ $max = $max_temp if ($max_temp > $max);
+ $min_temp = (-r "$_/cpuinfo_min_freq") ? (main::reader("$_/cpuinfo_min_freq"))[0] : 0;
+ if ($min_temp){
+ $min_temp = speed_cleaner($min_temp,'khz');
+ push @min_freq, $min_temp;
}
- $cur_temp = (-r "$_/cpuinfo_max_freq") ? main::reader("$_/cpuinfo_max_freq") : 0;
+ $min = $min_temp if ($min_temp < $min || $min == 0);
+ $cur_temp = (-r "$_/scaling_cur_freq") ? (main::reader("$_/scaling_cur_freq"))[0] : 0;
$cur_temp = speed_cleaner($cur_temp,'khz') if $cur_temp;
if ($cur_temp > $current){
$current = $cur_temp;
}
}
+ if (@max_freq){
+ @max_freq = main::uniq(@max_freq);
+ $max = join ':', @max_freq;
+ }
+ if (@min_freq){
+ @min_freq = main::uniq(@min_freq);
+ $min = join ':', @min_freq;
+ }
$speeds{'cur-freq'} = $current if $current;
$speeds{'max-freq'} = $max if $max;
$speeds{'min-freq'} = $min if $min;
}
}
- # policy4/cpuinfo_max_freq:["2000000"]
+ # policy4/cpuinfo_max_freq:["2000000"] policy0/cpuinfo_max_freq:["1500000"]
# policy4/cpuinfo_min_freq:["200000"]
- if ((defined $speeds{'min-freq'} && defined $speeds{'max-freq'}) &&
+ if ( (scalar @max_freq < 2 && scalar @min_freq < 2 ) &&
+ (defined $speeds{'min-freq'} && defined $speeds{'max-freq'}) &&
($speeds{'min-freq'} > $speeds{'max-freq'} || $speeds{'min-freq'} == $speeds{'max-freq'} )){
$speeds{'min-freq'} = 0;
}
@@ -8618,6 +8650,7 @@ sub device_vendor {
return if !$model;
# 0 - match pattern; 1 - replace pattern; 2 - vendor print; 3 - serial pattern
# Data URLs: inxi-resources.txt Section: DiskData device_vendor()
+ # $model = 'V Series SATA SS ';
my @vendors = (
## These go first because they are the most likely and common ##
['(Crucial|^(FC)?CT|-CT|^M4\b)','Crucial','Crucial',''],
@@ -8626,25 +8659,25 @@ sub device_vendor {
# must come before samsung MU. NOTE: toshiba can have: TOSHIBA_MK6475GSX: mush: MKNSSDCR120GB_
['(^MKN|Mushkin)','Mushkin','Mushkin',''], # MKNS
# MU = Multiple_Flash_Reader too risky: |M[UZ][^L]
- ['(SAMSUNG|^MCG[0-9]+GC|^MCC|^G2 Portable|^DUO\b|^SP[0-9][0-9])','SAMSUNG','Samsung',''], # maybe ^SM, ^HM
+ ['(SAMSUNG|^MCG[0-9]+GC|^MCC|^G2 Portable|^DUO\b|^P3|^SP[0-9][0-9])','SAMSUNG','Samsung',''], # maybe ^SM, ^HM
['(SanDisk|^SDS[S]?[DQ]|^SL([0-9]+)G|^AFGCE|ULTRA\sFIT|Clip Sport|Cruzer|^Extreme)','SanDisk','SanDisk',''],
['^STEC\b','^STEC\b','STEC',''], # ssd drive, must come before seagate ST test
# real, SSEAGATE Backup+; XP1600HE30002
- ['(^ST[^T]|[S]?SEAGATE|^X[AFP]|^BUP|Expansion Desk|FreeAgent|GoFlex|Backup(\+|\s?Plus)\s?Hub)','[S]?SEAGATE','Seagate',''],
- ['^(WD|Western Digital|My (Book|Passport)|\d*LPCX|Elements|M000|EARX|EFRX|\d*EAVS|0JD|JPVX)','(^WDC|Western\s?Digital)','Western Digital',''],
+ ['(^ST[^T]|[S]?SEAGATE|^X[AFP]|^5AS|^BUP|Expansion Desk|FreeAgent|GoFlex|Backup(\+|\s?Plus)\s?Hub)','[S]?SEAGATE','Seagate',''],
+ ['^(WD|Western Digital|My (Book|Passport)|\d*LPCX|Elements|M000|EARX|EFRX|\d*EAVS|0JD|JPVX|[0-9]+(BEV|AAK|AAV|AZL))','(^WDC|Western\s?Digital)','Western Digital',''],
## Then better known ones ##
- ['^(A-DATA|ADATA|AXN)','^(A-DATA|ADATA)','A-Data',''],
+ ['^(A-DATA|ADATA|AXN|CH11)','^(A-DATA|ADATA)','A-Data',''],
['^ADTRON','^(ADTRON)','Adtron',''],
['^ASUS','^ASUS','ASUS',''],
['^ATP','^ATP[\s\-]','ATP',''],
['^(Corsair|Voyager)','^Corsair','Corsair',''],
- ['^(FUJITSU|MP)','^FUJITSU','Fujitsu',''],
+ ['^(FUJITSU|MHV|MP)','^FUJITSU','Fujitsu',''],
# note: 2012: wdc bought hgst
['^(HGST|Touro)','^HGST','HGST (Hitachi)',''], # HGST HUA
- ['^(Hitachi|HDS|HDT|IC|HT|HU)','^Hitachi','Hitachi',''],
+ ['^(Hitachi|HD[ST]|DK[0-9]|IC|HT|HU)','^Hitachi','Hitachi',''],
['^Hoodisk','^Hoodisk','Hoodisk',''],
# vb: VB0250EAVER but clashes with vbox; HP_SSD_S700_120G ;GB0500EAFYL GB starter too generic?
- ['^(HP\b|MB0|GJ0|v210w)','^HP','HP',''],
+ ['^(HP\b|MB0|G[BJ]0|v[0-9]{3}[ow])','^HP','HP',''],
['^(LSD|Lexar|JumpDrive)','^Lexar','Lexar',''], # mmc-LEXAR_0xb016546c
# OCZSSD2-2VTXE120G is OCZ-VERTEX2_3.5
['^(OCZ|APOC|D2|DEN|DEN|DRSAK|EC188|FTNC|GFGC|MANG|MMOC|NIMC|NIMR|PSIR|TALOS2|TMSC|TRSAK)','^OCZ[\s\-]','OCZ',''],
@@ -8656,19 +8689,23 @@ sub device_vendor {
# note: seen: KXG50ZNV512G NVMe TOSHIBA 512GB | THNSN51T02DUK NVMe TOSHIBA 1024GB
['(^[S]?TOS|^THN|TOSHIBA|TransMemory)','[S]?TOSHIBA','Toshiba',''], # scsi-STOSHIBA_STOR.E_EDITION_
## These go last because they are short and could lead to false ID, or are unlikely ##
+ # unknown: AL25744_12345678; ADP may be usb 2.5" adapter; udisk
['^Android','^Android','Android',''],
# must come before AP|Apacer
['^APPLE','^APPLE','Apple',''],
['^(AP|Apacer)','^Apacer','Apacer',''],
+ ['^(ASMT|2115)','^ASMT','ASMedia',''],
['^BHT','^BHT','BHT',''],
['^BIWIN','^BIWIN','BIWIN',''],
['^BUFFALO','^BUFFALO','Buffalo',''],
['^CHN\b','','Zheino',''],
['^Colorful\b','^Colorful','Colorful',''],
+ ['^CSD','^CSD','CSD',''],
['^DGM','^DGM\b','DGM',''],
+ ['^DIGITAL\s?FILM','DIGITAL\s?FILM','Digital Film',''],
['^DREVO\b','^DREVO','Drevo',''],
['^(Eaget|V8$)','^Eaget','Eaget',''],
- ['^EXCELSTOR','^EXCELSTOR( TECHNO(LOGY)?)?','Excelstor',''],
+ ['^EXCELSTOR','^EXCELSTOR( TECHNO(LOGY)?)?','ExcelStor',''],
['^Fantom','^Fantom( Drive[s]?)?','Fantom Drives',''],
['^FASTDISK','^FASTDISK','FASTDISK',''],
['^FORESEE','^FORESEE','Foresee',''],
@@ -8688,8 +8725,10 @@ sub device_vendor {
['^(InnoDisk|Innolite)','^InnoDisk( Corp.)?','InnoDisk',''],
['^Innostor','^Innostor','Innostor',''],
['^Innovation','^Innovation','Innovation',''],
+ ['^(INM|Integral|V\s?Series)','^Integral(\s?Memory)?','Integral Memory',''],
['^(Intenso|(Alu|Mobile|Rainbow|Speed) Line)','^Intenso','Intenso',''],
['^(Iomega|ZIP\b)','^Iomega','Iomega',''],
+ ['^JingX','^JingX','JingX',''], #JingX 120G SSD - not confirmed, but guessing
# NOTE: ITY2 120GB hard to find
['^JMicron','^JMicron','JMicron',''], #JMicron H/W raid
['^KingDian','^KingDian','KingDian',''],
@@ -8698,11 +8737,12 @@ sub device_vendor {
['^KINGSHARE','^KINGSHARE','KingShare',''],
['^KingSpec','^KingSpec','KingSpec',''],
['^LDLC','^LDLC','LDLC',''],
+ ['^Lenovo','^Lenovo','Lenovo',''],
['^(LITE[\-]?ON[\s\-]?IT)','^LITE[\-]?ON[\s\-]?IT','LITE-ON IT',''], # LITEONIT_LSS-24L6G
['^(LITE[\-]?ON|PH6)','^LITE[\-]?ON','LITE-ON',''], # PH6-CE240-L
['^M-Systems','^M-Systems','M-Systems',''],
['^(MAXTOR)','^MAXTOR','Maxtor',''], # note M3 is usually maxtor, but can be samsung
- ['^(MT|M5|Micron)','^Micron','Micron',''],
+ ['(^MT|^M5|^Micron|00-MT)','^Micron','Micron',''],# C400-MTFDDAK128MAM
['^MARVELL','^MARVELL','Marvell',''],
['^MDT\b','^MDT','MDT (rebuilt WD/Seagate)',''], # mdt rebuilds wd/seagate hdd
['^Medion','^Medion','Medion',''],
@@ -8712,16 +8752,19 @@ sub device_vendor {
['^(PS[8F]|Patriot)','^Patriot','Patriot',''],
['^PIX[\s]?JR','^PIX[\s]?JR','Disney',''],
['^(PLEXTOR|PX-)','^PLEXTOR','Plextor',''],
+ ['^(PQI|Intelligent\s?Stick)','^PQI','PQI',''],
['QEMU','^[0-9]*QEMU( QEMU)?','QEMU',''], # 0QUEMU QEMU HARDDISK
['(^Quantum|Fireball)','^Quantum','Quantum',''],
['^QUMO','^QUMO','Qumo',''],
['^(R3|AMD\s?(RADEON)?)','AMD\s?(RADEON)?','AMD Radeon',''], # ssd
['^RENICE','^RENICE','Renice',''],
+ ['^(Ricoh|R5)','^Ricoh','Ricoh',''],
['^RIM[\s]','^RIM','RIM',''],
['^SigmaTel','^SigmaTel','SigmaTel',''],
+ ['^(Silicon\s?Power|SPPC|Silicon)','Silicon\s?Power','Silicon Power',''],
['Smartbuy','\s?Smartbuy','Smartbuy',''], # SSD Smartbuy 60GB
- ['^SPPC','','Silicon Power',''],
- ['^(SK\s?HYNIX|HFS)','^SK\s?HYNIX','SK Hynix',''], # HFS128G39TND-N210A
+ # HFS128G39TND-N210A; seen nvme with name in middle
+ ['(SK\s?HYNIX|^HFS)','\s?SK\s?HYNIX','SK Hynix',''],
['hynix','hynix','Hynix',''],# nvme middle of string, must be after sk hynix
['^SH','','Smart Modular Tech.',''],
['^(SMART( Storage Systems)?|TX)','^(SMART( Storage Systems)?)','Smart Storage Systems',''],
@@ -9532,6 +9575,7 @@ sub display_compositor {
['sommelier','sommelier','','sommelier'],
['sway','sway','','sway'],
['swc','swc','','swc'],
+ ['ukwm','ukwm','','ukwm'],
['unagi','unagi','','unagi'],
['unity-system-compositor','unity-system-compositor','','unity-system-compositor'],
['way-cooler','way-cooler','','way-cooler'],
@@ -13492,7 +13536,7 @@ sub get_repos_linux {
@rows = (@rows,@data);
}
}
- # void $xbps_dir_1
+ # Void
if (-d $xbps_dir_1 || -d $xbps_dir_2){
@files = main::globber("$xbps_dir_1*.conf");
@files = (@files,main::globber("$xbps_dir_2*.conf")) if -d $xbps_dir_2;
@@ -15864,6 +15908,7 @@ sub get_env_de_data {
[1,'pantheon','pantheon','pantheon',0,0],
[1,'lumina','lumina','lumina-desktop',0,1],
[0,'manokwari','manokwari','manokwari',1,0],
+ [1,'ukui','ukui','ukui-session',0,1],
);
foreach my $ref (@desktops){
my @item = @$ref;
@@ -16152,7 +16197,7 @@ sub get_wm_main {
if ($b_xprop){
#KWIN_RUNNING
$wms = 'amiwm|blackbox|bspwm|compiz|kwin_wayland|kwin_x11|kwin|marco|';
- $wms .= 'motif|muffin|openbox|herbstluftwm|twin|wm2|windowmaker|i3';
+ $wms .= 'motif|muffin|openbox|herbstluftwm|twin|ukwm|wm2|windowmaker|i3';
foreach (@xprop){
if (/($wms)/){
$working = $1;
@@ -16169,7 +16214,8 @@ sub get_wm_main {
$wms .= 'twin|kwin_wayland|kwin_x11|kwin|lwm|matchbox-window-manager|marco|';
$wms .= 'muffin|deepin-mutter|mutter|deepin-metacity|metacity|mwm|';
$wms .= 'nawm|notion|openbox|orbital|perceptia|qtile|ratpoison|sawfish|scrotwm|spectrwm|';
- $wms .= 'sway|tvtwm|twm|way-?cooler|windowlab|WindowMaker|wm2|wmii2|wmii|wmx|xfwm4|xfwm5|xmonad';
+ $wms .= 'sway|tvtwm|twm|ukwm|way-?cooler|windowlab|WindowMaker|wm2|wmii2|wmii|wmx|';
+ $wms .= 'xfwm4|xfwm5|xmonad';
foreach (@ps_gui){
if (/^($wms)$/){
$working = $1;
@@ -16237,7 +16283,7 @@ sub set_info_data {
$pattern .= 'matchbox-panel|mate-panel|ourico|';
$pattern .= 'perlpanel|plank|plasma-desktop|plasma-netbook|polybar|pypanel|';
$pattern .= 'razor-panel|razorqt-panel|stalonetray|swaybar|taskbar|tint2|trayer|';
- $pattern .= 'vala-panel|wbar|wharf|wingpanel|witray|';
+ $pattern .= 'ukui-panel|vala-panel|wbar|wharf|wingpanel|witray|';
$pattern .= 'xfce4-panel|xfce5-panel|xmobar|yabar';
if (@data = grep {/^($pattern)$/} @ps_gui ) {
# only one entry per type, can be multiple
@@ -16265,7 +16311,7 @@ sub set_xprop {
# XFDESKTOP_IMAGE_FILE; XFCE_DESKTOP
my $pattern = '^amiwm|blackbox_pid|bspwm|compiz|enlightenment|^_gnome|';
$pattern .= 'herbstluftwm|^kwin_|^i3_|icewm|_marco|moksha|^_motif|_muffin|';
- $pattern .= 'openbox_pid|^_?windowmaker|^_wm2|^(xfdesktop|xfce)';
+ $pattern .= 'openbox_pid|^_ukwm|^_?windowmaker|^_wm2|^(xfdesktop|xfce)';
# let's only do these searches once
@xprop = grep {/^\S/ && /($pattern)/i} @xprop;
$_ = lc for @xprop;
@@ -16570,7 +16616,7 @@ sub get_linux_distro {
my $base_osr = 'aptosid|grml|siduction|bodhi'; # osr base, distro id in list of distro files
my $base_osr_issue = 'grml|linux lite'; # osr base, distro id in issue
# osr has distro name but has ubuntu ID_LIKE/UBUNTU_CODENAME
- my $base_osr_ubuntu = 'mint|neon|nitrux|zorin';
+ my $base_osr_ubuntu = 'mint|neon|nitrux|pop!_os|zorin';
my $base_upstream_lsb = '/etc/upstream-release/lsb-release';
my $base_upstream_osr = '/etc/upstream-release/os-release';
# first: try, some distros have upstream-release, elementary, new mint
@@ -16602,7 +16648,7 @@ sub get_linux_distro {
elsif ( grep {/($base_debian_version_osr)/i} @osr ){
$system_base = debian_id();
}
- elsif ( grep {/($base_osr_ubuntu)/} @osr ){
+ elsif ( grep {/($base_osr_ubuntu)/i} @osr ){
$base_type = 'ubuntu';
}
elsif ( ( ($distro_id && $distro_id =~ /($base_osr_issue)/ ) ||
@@ -16720,7 +16766,8 @@ sub get_os_release {
if ($base_type ){
if ($working[0] eq 'ID_LIKE' && $working[1]){
if ($base_type eq 'ubuntu'){
- $working[1] =~ s/ubuntu\sdebian/ubuntu/;
+ # popos shows debian
+ $working[1] =~ s/^(debian|ubuntu\sdebian|debian\subuntu)/ubuntu/;
$working[1] = 'ubuntu' if $working[1] eq 'debian';
}
$base_name = ucfirst($working[1]);
@@ -16823,6 +16870,7 @@ sub ubuntu_id {
$codename = lc($codename);
my ($id) = ('');
my %codenames = (
+ 'disco' => '19.04',
'cosmic' => '18.10',
'bionic' => '18.04 LTS',
'artful' => '17.10',
@@ -17882,6 +17930,7 @@ sub soc_devices {
$chip_id = $5;
$temp = $7;
@working = main::reader($file, 'strip') if -r $file;
+ ($device,$driver,$handle,$type,$vendor_id) = (undef,undef,undef,undef,undef);
foreach my $data (@working){
@temp2 = split /=/, $data;
if ($temp2[0] eq 'DRIVER'){
@@ -17977,7 +18026,7 @@ sub assign_data {
# $device_vm = check_vm($data[4]) if ( (!$b_ppc && !$b_mips) && !$device_vm );
@devices = (@devices,[@data]);
}
-# note: for soc, these have been converted in set_soc_type()
+# note: for soc, these have been converted in soc_type()
sub check_audio {
if ( ( $_[1] && length($_[1]) == 4 && $_[1] =~/^04/ ) ||
( $_[0] && $_[0] =~ /^(audio|hdmi|multimedia|sound)$/ )){
@@ -18017,8 +18066,10 @@ sub check_vm {
sub soc_type {
my ($type,$info,$driver) = @_;
# I2S or i2s. I2C is i2 controller |[iI]2[Ss]. note: odroid hdmi item is sound only
+ # snd_soc_dummy. simple-audio-amplifier driver: speaker_amp
if ($type =~ /^(daudio|.*hifi.*|.*sound[\-_]card|.*dac[0-9]?)$/ ||
- ($info && $info =~ /(sound|audio)/) || ($driver && $driver =~ /(audio|snd|sound)/) ){
+ ($info && $info !~ /amp|codec|dummy/ && $info =~ /(sound|audio)/) ||
+ ($driver && $driver !~ /(codec|dummy)/ && $driver =~ /(audio|snd|sound)/) ){
$type = 'audio';
}
elsif ($type =~ /^((meson-?)?fb|disp|display(-[^\s]+)?|gpu|mali)$/){
@@ -18032,7 +18083,7 @@ sub soc_type {
$type = 'wifi';
}
# needs to catch variants like hdmi-tx but not hdmi-connector
- elsif ($type =~ /^(.*hdmi(-?tx)?)$/){
+ elsif ( (!$driver || $driver !~ /(codec|dummy)/) && $type =~ /^(.*hdmi(-?tx)?)$/){
$type = 'hdmi';
}
elsif ($type =~ /^timer$/){
@@ -18434,7 +18485,7 @@ sub set_ps_gui {
@temp=qw(budgie-wm compiz deepin-wm gala gnome-shell
twin kwin_wayland kwin_x11 kwin marco
deepin-metacity metacity metisse mir muffin deepin-mutter mutter
- xfwm4 xfwm5);
+ ukwm xfwm4 xfwm5);
@match = (@match,@temp);
# startx: /bin/sh /usr/bin/startx
@temp=qw(ly .*startx xinit); # possible dm values
@@ -18449,8 +18500,8 @@ sub set_ps_gui {
matchbox-panel mate-panel ourico
perlpanel plank plasma-desktop plasma-netbook polybar pypanel
razor-panel razorqt-panel stalonetray swaybar taskbar tint2 trayer
- vala-panel wbar wharf wingpanel witray xfce4-panel xfce5-panel xmobar
- yabar);
+ ukui-panel vala-panel wbar wharf wingpanel witray
+ xfce4-panel xfce5-panel xmobar yabar);
@match = (@match,@temp);
}
# compositors (for wayland these are also the server, note
@@ -18459,7 +18510,7 @@ sub set_ps_gui {
enlightenment fireplace gnome-shell grefson kmscon kwin_wayland kwin_x11
liri marco metisse mir moblin motorcar muffin mutter
orbital papyros perceptia rustland sommelier sway swc
- unagi unity-system-compositor
+ ukwm unagi unity-system-compositor
wavy waycooler way-cooler wayhouse westford weston xcompmgr);
@match = (@match,@temp);
}
diff --git a/inxi.1 b/inxi.1
index 14a1ade..2e8f57c 100644
--- a/inxi.1
+++ b/inxi.1
@@ -1,4 +1,4 @@
-.TH INXI 1 "2018\-10\-14" inxi "inxi manual"
+.TH INXI 1 "2018\-11\-28" inxi "inxi manual"
.SH NAME
inxi \- Command line system information script for console and IRC
.SH SYNOPSIS
@@ -1011,6 +1011,13 @@ Overrides default internal value and user configuration value:
\fBCPU_SLEEP=0.25\fR
.TP
+.B \-\-tty\fR
+Forces internal IRC flag to off. Useful for running in Ansible or Chef, where the
+program may not be seen as a shell/tty, but it is not an IRC client. Put
+\fB\-\-tty\fR first in option list to avoid unexpected errors. If you want a specific
+output width, use the \fB\-\-width\fR option.
+
+.TP
.B \-\-usb\-sys\fR
Forces the USB data generator to use \fB/sys\fR as data source
instead of \fBlsusb\fR.
diff --git a/inxi.changelog b/inxi.changelog
index 641390d..c6828fc 100644
--- a/inxi.changelog
+++ b/inxi.changelog
@@ -1,7 +1,45 @@
=====================================================================================
+Version: 3.0.28
+Patch: 00
+Date: 2018-11-28
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new man. Fixes, enhancements.
+
+Bugs:
+1. ARM fix, odroid > 1 cpu speeds not showing correctly.
+2. Ansible start fixes.
+3. Fringe Battery failures, see Pinebook.
+
+Fixes:
+1. Removed null data message 'old system' since that's not always the case.
+2. Added support for > 1 CPU speeds in systems with > 1 CPU.
+3. Added is_numeric test for sudo version tests, that was tripping errors in
+rare cases.
+4. Fine tuned terminal size setting to check that is int to correct the
+Ansible problem.
+5. ARM Pinebook fixes, battery, cpu. This also fixes corner cases where
+the battery charge state is missing but it is a systme battery.
+
+Enhancments:
+1. Added more disk ID matches/vendors. Thanks LinuxLite Hardware database!!
+2. UKUI, ukwm, ukui-panel added to desktop data.
+3. Added PopOS to system base.
+4. Ansible/Chef user noted that inxi believes that it is running in IRC when
+started by Ansible / Chef (not sure about Chef but assuming it's the same).
+Added flag --tty flag to force inxi to believe it's running in shell no matter
+what starts it. Note that this fix is not confirmed because the person didn't
+confirm the fix. Annoying.
+5. Added Ubuntu disco to ubuntu_id.
+
+-----------------------------------
+-- Harald Hope - Thu, 29 Nov 2018 21:12:14 -0800
+
+=====================================================================================
Version: 3.0.27
-Patch Version: 00
-Script Date: 2018-10-14
+Patch: 00
+Date: 2018-10-14
-----------------------------------
Changes:
-----------------------------------
@@ -48,9 +86,9 @@ at least, which tripped an error due to null data for ARM, this is now handled,
now cpu speed min/max read permissions in /sys are checked first before trying to
read, and default failures are better handled.
10. On man page, added in clarification of the moving of Memory: item from Info:
-line to ram Memory: line, explaining when it appears where. I do not removing the
-item from -I, I may revert that change, I find it non-intuitive to move that
-around.
+line to ram Memory: line, explaining when it appears where. I am ambivalent about
+removing the item from -I, I may revert that change, I find it non-intuitive to
+move the Memory report around.
Enhancements:
1. Added display manager Ly, plus Ly version number. Thanks NamedKitten, this
@@ -117,8 +155,8 @@ Perl builtins.
=====================================================================================
Version: 3.0.26
-Patch Version: 00
-Script Date: 2018-09-28
+Patch: 00
+Date: 2018-09-28
-----------------------------------
Changes:
-----------------------------------
@@ -166,8 +204,8 @@ only be resolved by the user on their machine.
=====================================================================================
Version: 3.0.25
-Patch Version: 00
-Script Date: 2018-09-24
+Patch: 00
+Date: 2018-09-24
-----------------------------------
Changes:
-----------------------------------
@@ -281,8 +319,8 @@ like 3.1. Note that this is going to be wrong for BSDs, but that's fine.
=====================================================================================
Version: 3.0.24
-Patch Version: 00
-Script Date: 2018-09-10
+Patch: 00
+Date: 2018-09-10
-----------------------------------
Changes:
-----------------------------------
@@ -326,8 +364,8 @@ confusion about what is coffee lake and what is kaby lake.
=====================================================================================
Version: 3.0.23
-Patch Version: 00
-Script Date: 2018-09-07
+Patch: 00
+Date: 2018-09-07
-----------------------------------
Changes:
-----------------------------------
@@ -455,8 +493,8 @@ USB:
=====================================================================================
Version: 3.0.22
-Patch Version: 00
-Script Date: 2018-08-28
+Patch: 00
+Date: 2018-08-28
-----------------------------------
Changes:
-----------------------------------
@@ -512,8 +550,8 @@ think good enough, since those are the basic tools most desktop/wm's will use.
=====================================================================================
Version: 3.0.21
-Patch Version: 00
-Script Date: 2018-08-17
+Patch: 00
+Date: 2018-08-17
-----------------------------------
Changes:
-----------------------------------
@@ -667,8 +705,8 @@ USB:
=====================================================================================
Version: 3.0.20
-Patch Version: 00
-Script Date: 2018-07-30
+Patch: 00
+Date: 2018-07-30
-----------------------------------
Changes:
-----------------------------------
@@ -711,8 +749,8 @@ use the same program_values/program_version logic that the other tools use.
=====================================================================================
Version: 3.0.19
-Patch Version: 00
-Script Date: 2018-07-23
+Patch: 00
+Date: 2018-07-23
-----------------------------------
Changes:
-----------------------------------
@@ -805,8 +843,8 @@ in relation to the gtk version used to build the desktop.
=====================================================================================
Version: 3.0.18
-Patch Version: 00
-Script Date: 2018-07-16
+Patch: 00
+Date: 2018-07-16
-----------------------------------
Changes:
-----------------------------------
@@ -841,8 +879,8 @@ data.
=====================================================================================
Version: 3.0.17
-Patch Version: 00
-Script Date: 2018-07-12
+Patch: 00
+Date: 2018-07-12
-----------------------------------
Changes:
-----------------------------------
@@ -964,8 +1002,8 @@ deal overall.
=====================================================================================
Version: 3.0.16
-Patch Version: 00
-Script Date: 2018-07-08
+Patch: 00
+Date: 2018-07-08
-----------------------------------
Changes:
-----------------------------------
@@ -1031,8 +1069,8 @@ printed to screen.
=====================================================================================
Version: 3.0.15
-Patch Version: 00
-Script Date: 2018-07-03
+Patch: 00
+Date: 2018-07-03
-----------------------------------
Changes:
-----------------------------------
@@ -1092,8 +1130,8 @@ Added -Gxx item, updated -Sx item.
=====================================================================================
Version: 3.0.14
-Patch Version: 00
-Script Date: 2018-06-27
+Patch: 00
+Date: 2018-06-27
-----------------------------------
Changes:
-----------------------------------
@@ -1112,8 +1150,8 @@ the future.
=====================================================================================
Version: 3.0.13
-Patch Version: 00
-Script Date: 2018-06-23
+Patch: 00
+Date: 2018-06-23
-----------------------------------
Changes:
-----------------------------------
@@ -1184,8 +1222,8 @@ it only shows the presence of the raid device itself, not disks, raid status, et
=====================================================================================
Version: 3.0.12
-Patch Version: 00
-Script Date: 2018-06-05
+Patch: 00
+Date: 2018-06-05
-----------------------------------
Changes:
-----------------------------------
@@ -1198,8 +1236,8 @@ Bug fix, debugger when run as root hangs on proc traverse.
=====================================================================================
Version: 3.0.11
-Patch Version: 00
-Script Date: 2018-06-04
+Patch: 00
+Date: 2018-06-04
-----------------------------------
Changes:
-----------------------------------
@@ -1262,8 +1300,8 @@ checks, but in theory, both should now show Arco Linux or Antergos instead of de
=====================================================================================
Version: 3.0.10
-Patch Version: 00
-Script Date: 2018-05-21
+Patch: 00
+Date: 2018-05-21
-----------------------------------
Changes:
-----------------------------------
@@ -1334,8 +1372,8 @@ with BSDs.
=====================================================================================
Version: 3.0.09
-Patch Version: 00
-Script Date: 2018-05-11
+Patch: 00
+Date: 2018-05-11
-----------------------------------
Changes:
-----------------------------------
@@ -1412,8 +1450,8 @@ option. Also fixed some other small man glitches that I had missed.
=====================================================================================
Version: 3.0.08
-Patch Version: 00
-Script Date: 2018-05-06
+Patch: 00
+Date: 2018-05-06
-----------------------------------
Changes:
-----------------------------------
@@ -1479,8 +1517,8 @@ which is unlikely to ever impact normal X installations.
=====================================================================================
Version: 3.0.07
-Patch Version: 00
-Script Date: 2018-04-17
+Patch: 00
+Date: 2018-04-17
-----------------------------------
Changes:
-----------------------------------
@@ -1505,8 +1543,8 @@ nix filename character.
=====================================================================================
Version: 3.0.06
-Patch Version: 00
-Script Date: 2018-04-17
+Patch: 00
+Date: 2018-04-17
-----------------------------------
Changes:
-----------------------------------
@@ -1521,8 +1559,8 @@ for nvidia, they forgot to update one of their gl string numbers.
=====================================================================================
Version: 3.0.05
-Patch Version: 00
-Script Date: 2018-04-17
+Patch: 00
+Date: 2018-04-17
-----------------------------------
Changes:
-----------------------------------
@@ -1550,8 +1588,8 @@ latter is not getting updated and has the wrong version number on it.
=====================================================================================
Version: 3.0.04
-Patch Version: 00
-Script Date: 2018-04-14
+Patch: 00
+Date: 2018-04-14
-----------------------------------
Changes:
-----------------------------------
@@ -1570,8 +1608,8 @@ a non-matching version number for current MATE.
=====================================================================================
Version: 3.0.03
-Patch Version: 00
-Script Date: 2018-04-12
+Patch: 00
+Date: 2018-04-12
-----------------------------------
Changes:
-----------------------------------
@@ -1593,8 +1631,8 @@ Both issues/enhancements tested and working fine.
=====================================================================================
Version: 3.0.02
-Patch Version: 00
-Script Date: 2018-04-12
+Patch: 00
+Date: 2018-04-12
-----------------------------------
Changes:
-----------------------------------
@@ -1616,8 +1654,8 @@ worked on a few systems, particulary the scheme:
=====================================================================================
Version: 3.0.01
-Patch Version: 00
-Script Date: 2018-04-12
+Patch: 00
+Date: 2018-04-12
-----------------------------------
Changes:
-----------------------------------
@@ -1656,8 +1694,8 @@ back into key value pairs, not merging two together.
=====================================================================================
Version: 3.0.00
-Patch Version: 00
-Script Date: 2018-04-09
+Patch: 00
+Date: 2018-04-09
-----------------------------------
Changes:
-----------------------------------
@@ -1726,8 +1764,8 @@ patience - inxi would not work without you.
=====================================================================================
Version: 2.9.12
-Patch Version: 00
-Script Date: 2018-04-06
+Patch: 00
+Date: 2018-04-06
-----------------------------------
Changes:
-----------------------------------
@@ -1747,8 +1785,8 @@ except maybe as a last, last resort, and probably will never be used.
=====================================================================================
Version: 2.9.11
-Patch Version: 00
-Script Date: 2018-04-03
+Patch: 00
+Date: 2018-04-03
-----------------------------------
Changes:
-----------------------------------
@@ -1775,8 +1813,8 @@ use IPMI.
=====================================================================================
Version: 2.9.10
-Patch Version: 00
-Script Date: 2018-03-30
+Patch: 00
+Date: 2018-03-30
-----------------------------------
Changes:
-----------------------------------
@@ -1796,8 +1834,8 @@ Ongoing updates and edits and corrections and cleanup. Slowly but surely.
=====================================================================================
Version: 2.9.09
-Patch Version: 00
-Script Date: 2018-03-28
+Patch: 00
+Date: 2018-03-28
-----------------------------------
Changes:
-----------------------------------
@@ -1817,8 +1855,8 @@ Various help and man cleanups and additions.
=====================================================================================
Version: 2.9.08
-Patch Version: 00
-Script Date: 2018-03-26
+Patch: 00
+Date: 2018-03-26
-----------------------------------
Changes:
-----------------------------------
@@ -1841,8 +1879,8 @@ and upper/lower case corrections.
=====================================================================================
Version: 2.9.07
-Patch Version: 00
-Script Date: 2018-03-25
+Patch: 00
+Date: 2018-03-25
-----------------------------------
Changes:
-----------------------------------
@@ -1867,8 +1905,8 @@ Man page/help updated to add this option.
=====================================================================================
Version: 2.9.06
-Patch Version: 0
-Script Date: 2018-03-24
+Patch: 0
+Date: 2018-03-24
-----------------------------------
Changes:
-----------------------------------
@@ -1910,8 +1948,8 @@ Or was AntiX first? Well, it was close, thanks to both.
=====================================================================================
Version: 2.9.05
-Patch Version: 00
-Script Date: 2018-03-24
+Patch: 00
+Date: 2018-03-24
-----------------------------------
Changes:
-----------------------------------
@@ -1934,8 +1972,8 @@ the system in terms of partitions, filesystems, etc.
=====================================================================================
Version: 2.9.04
-Patch Version: 00
-Script Date: 2018-03-22
+Patch: 00
+Date: 2018-03-22
-----------------------------------
Changes:
-----------------------------------
@@ -2073,8 +2111,8 @@ example now has their package manager added in repos.
=====================================================================================
Version: 2.9.03
-Patch Version: 00
-Script Date: 2018-03-21
+Patch: 00
+Date: 2018-03-21
-----------------------------------
Changes:
-----------------------------------
@@ -2094,8 +2132,8 @@ the color editor was used.
=====================================================================================
Version: 2.9.02
-Patch Version: 00
-Script Date: 2018-03-20
+Patch: 00
+Date: 2018-03-20
-----------------------------------
Changes:
-----------------------------------
@@ -2118,8 +2156,8 @@ if people wonder what it is.
=====================================================================================
Version: 2.9.01
-Patch Version: 00
-Script Date: 2018-03-20
+Patch: 00
+Date: 2018-03-20
-----------------------------------
Changes:
-----------------------------------
@@ -2165,8 +2203,8 @@ And so much more. Anyway, here it is, the first release.
=====================================================================================
Version: 2.3.56
-Patch Version: 00
-Script Date: 2018-02-26
+Patch: 00
+Date: 2018-02-26
-----------------------------------
Changes:
-----------------------------------
@@ -2211,8 +2249,8 @@ For json/xml export, two Perl modules are needed, again, see --recommends
=====================================================================================
Version: 2.3.56
-Patch Version: 00
-Script Date: 2018-02-26
+Patch: 00
+Date: 2018-02-26
-----------------------------------
Changes:
-----------------------------------
@@ -2238,8 +2276,8 @@ now on.
=====================================================================================
Version: 2.3.56
-Patch Version: 00
-Script Date: 2018-02-26
+Patch: 00
+Date: 2018-02-26
-----------------------------------
Changes:
-----------------------------------
@@ -2250,8 +2288,8 @@ Changes:
=====================================================================================
Version: 2.3.56
-Patch Version: 00
-Script Date: 2018-02-26
+Patch: 00
+Date: 2018-02-26
-----------------------------------
Changes:
-----------------------------------
@@ -2263,8 +2301,8 @@ changes included, comments, etc.
=====================================================================================
Version: 2.3.56
-Patch Version: 00
-Script Date: 2018-01-17
+Patch: 00
+Date: 2018-01-17
-----------------------------------
Changes:
-----------------------------------
@@ -2275,8 +2313,8 @@ New version, new tarball. Added an important debugger output, lsusb -v
=====================================================================================
Version: 2.3.55
-Patch Version: 00
-Script Date: 2018-01-13
+Patch: 00
+Date: 2018-01-13
-----------------------------------
Changes:
-----------------------------------
@@ -2291,8 +2329,8 @@ Added manjoro-release to the lsb good list. No other changes.
=====================================================================================
Version: 2.3.54
-Patch Version: 00
-Script Date: 2018-01-13
+Patch: 00
+Date: 2018-01-13
-----------------------------------
Changes:
-----------------------------------
@@ -2307,8 +2345,8 @@ Without this fix, newer kernels can hang on the data parsing.
=====================================================================================
Version: 2.3.53
-Patch Version: 00
-Script Date: 2017-12-07
+Patch: 00
+Date: 2017-12-07
-----------------------------------
Changes:
-----------------------------------
@@ -2332,8 +2370,8 @@ inxi sees the real data.
=====================================================================================
Version: 2.3.52
-Patch Version: 00
-Script Date: 2017-12-02
+Patch: 00
+Date: 2017-12-02
-----------------------------------
Changes:
-----------------------------------
@@ -2346,8 +2384,8 @@ a reshuffling and renaming of internal functions.
=====================================================================================
Version: 2.3.51
-Patch Version: 00
-Script Date: 2017-11-31
+Patch: 00
+Date: 2017-11-31
-----------------------------------
Changes:
-----------------------------------
@@ -2367,8 +2405,8 @@ it further, that is, if siblings > 1 && siblings = 2 * cores then it's HT.
=====================================================================================
Version: 2.3.50
-Patch Version: 00
-Script Date: 2017-11-28
+Patch: 00
+Date: 2017-11-28
-----------------------------------
Changes:
-----------------------------------
@@ -2381,8 +2419,8 @@ cleaner, more likely to somewhat work with gnu/linux zfs.
=====================================================================================
Version: 2.3.49
-Patch Version: 00
-Script Date: 2017-11-28
+Patch: 00
+Date: 2017-11-28
-----------------------------------
Changes:
-----------------------------------
@@ -2426,8 +2464,8 @@ happy, lol.
=====================================================================================
Version: 2.3.48
-Patch Version: 00
-Script Date: 2017-11-27
+Patch: 00
+Date: 2017-11-27
-----------------------------------
Changes:
-----------------------------------
@@ -2446,8 +2484,8 @@ program.
=====================================================================================
Version: 2.3.47
-Patch Version: 00
-Script Date: 2017-11-26
+Patch: 00
+Date: 2017-11-26
-----------------------------------
Changes:
-----------------------------------
@@ -2461,8 +2499,8 @@ Make sure to update to this version or various downloader actions could fail.
=====================================================================================
Version: 2.3.46
-Patch Version: 00
-Script Date: 2017-11-26
+Patch: 00
+Date: 2017-11-26
-----------------------------------
Changes:
-----------------------------------
@@ -2516,8 +2554,8 @@ Also cleaned up debugger output and made debugger portable to other scripts.
=====================================================================================
Version: 2.3.45
-Patch Version: 00
-Script Date: 2017-11-21
+Patch: 00
+Date: 2017-11-21
-----------------------------------
Changes:
-----------------------------------
@@ -2530,8 +2568,8 @@ in case there are some subtle differences in how the paths interlink.
=====================================================================================
Version: 2.3.44
-Patch Version: 00
-Script Date: 2017-11-21
+Patch: 00
+Date: 2017-11-21
-----------------------------------
Changes:
-----------------------------------
@@ -2548,8 +2586,8 @@ should fix issue #127
=====================================================================================
Version: 2.3.43
-Patch Version: 00
-Script Date: 2017-10-31
+Patch: 00
+Date: 2017-10-31
-----------------------------------
Changes:
-----------------------------------
@@ -2560,8 +2598,8 @@ New version, tarball. Small perl fix, nothing changes in output or function.
=====================================================================================
Version: 2.3.42
-Patch Version: 00
-Script Date: 2017-10-30
+Patch: 00
+Date: 2017-10-30
-----------------------------------
Changes:
-----------------------------------
@@ -2574,8 +2612,8 @@ Renamed debugger sys files to sys-dir-[traverse|depth-[1-6]].txt
=====================================================================================
Version: 2.3.41
-Patch Version: 00
-Script Date: 2017-10-29
+Patch: 00
+Date: 2017-10-29
-----------------------------------
Changes:
-----------------------------------
@@ -2600,8 +2638,8 @@ This fixes issue #94
=====================================================================================
Version: 2.3.40
-Patch Version: 00
-Script Date: 2017-09-21
+Patch: 00
+Date: 2017-09-21
-----------------------------------
Changes:
-----------------------------------
@@ -2614,8 +2652,8 @@ redirect to https: so this is not a very important update.
=====================================================================================
Version: 2.3.39
-Patch Version: 00
-Script Date: 2017-09-20
+Patch: 00
+Date: 2017-09-20
-----------------------------------
Changes:
-----------------------------------
@@ -2628,8 +2666,8 @@ the second was a typo in inxi.
=====================================================================================
Version: 2.3.39
-Patch Version: 00
-Script Date: 2017-09-12
+Patch: 00
+Date: 2017-09-12
-----------------------------------
Changes:
-----------------------------------
@@ -2646,8 +2684,8 @@ system that had a different firewall configuration than the dev system has.
=====================================================================================
Version: 2.3.38
-Patch Version: 00
-Script Date: 2017-09-07
+Patch: 00
+Date: 2017-09-07
-----------------------------------
Changes:
-----------------------------------
@@ -2667,8 +2705,8 @@ was not able to find any model numbers for those.
=====================================================================================
Version: 2.3.37
-Patch Version: 00
-Script Date: 2017-08-23
+Patch: 00
+Date: 2017-08-23
-----------------------------------
Changes:
-----------------------------------
@@ -2694,8 +2732,8 @@ Oh, and also handled issue #115 by not making -B show -M data.
=====================================================================================
Version: 2.3.36
-Patch Version: 00
-Script Date: 2017-08-16
+Patch: 00
+Date: 2017-08-16
-----------------------------------
Changes:
-----------------------------------
@@ -2717,8 +2755,8 @@ so it's just excluded.
=====================================================================================
Version: 2.3.35
-Patch Version: 00
-Script Date: 2017-08-11
+Patch: 00
+Date: 2017-08-11
-----------------------------------
Changes:
-----------------------------------
@@ -2731,8 +2769,8 @@ Also fixed a FreeBSD issue where I'd failed to update -G to show driver.
=====================================================================================
Version: 2.3.34
-Patch Version: 00
-Script Date: 2017-08-04
+Patch: 00
+Date: 2017-08-04
-----------------------------------
Changes:
-----------------------------------
@@ -2743,8 +2781,8 @@ New version, tarball. Added to cpu microarch lists.
=====================================================================================
Version: 2.3.33
-Patch Version: 00
-Script Date: 2017-08-04
+Patch: 00
+Date: 2017-08-04
-----------------------------------
Changes:
-----------------------------------
@@ -2761,8 +2799,8 @@ Also optimized a bit more on the desktop id logic.
=====================================================================================
Version: 2.3.32
-Patch Version: 00
-Script Date: 2017-08-03
+Patch: 00
+Date: 2017-08-03
-----------------------------------
Changes:
-----------------------------------
@@ -2779,8 +2817,8 @@ Anyway, it should be fixed.
=====================================================================================
Version: 2.3.31
-Patch Version: 00
-Script Date: 2017-07-30
+Patch: 00
+Date: 2017-07-30
-----------------------------------
Changes:
-----------------------------------
@@ -2804,8 +2842,8 @@ Note the following changes required to make the wraps more consistent:
=====================================================================================
Version: 2.3.30
-Patch Version: 00
-Script Date: 2017-07-29
+Patch: 00
+Date: 2017-07-29
-----------------------------------
Changes:
-----------------------------------
@@ -2818,8 +2856,8 @@ but I believe the overall collection has dropped execution time by around 10% or
=====================================================================================
Version: 2.3.29
-Patch Version:
-Script Date: 2017-07-29
+Patch:
+Date: 2017-07-29
-----------------------------------
Changes:
-----------------------------------
@@ -2834,8 +2872,8 @@ that were in subshells are now printing to globals instead.
=====================================================================================
Version: 2.3.28
-Patch Version: 00
-Script Date: 2017-07-29
+Patch: 00
+Date: 2017-07-29
-----------------------------------
Changes:
-----------------------------------
@@ -2849,8 +2887,8 @@ Also started on more optimizing, getting rid of as many subshells as possible.
=====================================================================================
Version: 2.3.27
-Patch Version: 00
-Script Date: 2017-07-28
+Patch: 00
+Date: 2017-07-28
-----------------------------------
Changes:
-----------------------------------
@@ -2865,8 +2903,8 @@ but it is actually kvm, so now the systemd data is not fully trusted, but is con
=====================================================================================
Version: 2.3.26
-Patch Version: 00
-Script Date: 2017-07-28
+Patch: 00
+Date: 2017-07-28
-----------------------------------
Changes:
-----------------------------------
@@ -2884,8 +2922,8 @@ See issue #116 for ongoing additions to this feature.
=====================================================================================
Version: 2.3.25
-Patch Version: 00
-Script Date: 2017-07-24
+Patch: 00
+Date: 2017-07-24
-----------------------------------
Changes:
-----------------------------------
@@ -2901,8 +2939,8 @@ Fix is to escape '/'.
=====================================================================================
Version: 2.3.24
-Patch Version: 00
-Script Date: 2017-07-23
+Patch: 00
+Date: 2017-07-23
-----------------------------------
Changes:
-----------------------------------
@@ -2927,8 +2965,8 @@ that don't use or have not started the desktop with Xorg/X11 etc.
=====================================================================================
Version: 2.3.23
-Patch Version: 00
-Script Date: 2017-06-29
+Patch: 00
+Date: 2017-06-29
-----------------------------------
Changes:
-----------------------------------
@@ -2940,8 +2978,8 @@ the -r option. Fixed typos and glitches in man page as well.
=====================================================================================
Version: 2.3.22
-Patch Version: 00
-Script Date: 2017-06-24
+Patch: 00
+Date: 2017-06-24
-----------------------------------
Changes:
-----------------------------------
@@ -2974,8 +3012,8 @@ OpenGL: renderer: ...... version: .....
=====================================================================================
Version: 2.3.21
-Patch Version: 00
-Script Date: 2017-06-13
+Patch: 00
+Date: 2017-06-13
-----------------------------------
Changes:
-----------------------------------
@@ -2989,8 +3027,8 @@ Was showing in -S line N/A instead of the fallback Console: tty 1 that would mat
=====================================================================================
Version: 2.3.20
-Patch Version: 00
-Script Date: 2017-06-12
+Patch: 00
+Date: 2017-06-12
-----------------------------------
Changes:
-----------------------------------
@@ -3008,8 +3046,8 @@ I'm just showing presence of disk.
=====================================================================================
Version: 2.3.19
-Patch Version: 00
-Script Date: 2017-06-10
+Patch: 00
+Date: 2017-06-10
-----------------------------------
Changes:
-----------------------------------
@@ -3022,8 +3060,8 @@ Simple.
=====================================================================================
Version: 2.3.18
-Patch Version: 00
-Script Date: 2017-06-09
+Patch: 00
+Date: 2017-06-09
-----------------------------------
Changes:
-----------------------------------
@@ -3037,8 +3075,8 @@ to still download without error. Also a legacy system fix where tty size failed
=====================================================================================
Version: 2.3.17
-Patch Version: 00
-Script Date: 2017-06-09
+Patch: 00
+Date: 2017-06-09
-----------------------------------
Changes:
-----------------------------------
@@ -3053,8 +3091,8 @@ gfx variable name fixes to make more obvious the logic as well.
=====================================================================================
Version: 2.3.16
-Patch Version: 00
-Script Date: 2017-06-08
+Patch: 00
+Date: 2017-06-08
-----------------------------------
Changes:
-----------------------------------
@@ -3065,8 +3103,8 @@ Tiny change, new version, tarball. Tumbleweed distro id fix.
=====================================================================================
Version: 2.3.15
-Patch Version: 00
-Script Date: 2017-06-08
+Patch: 00
+Date: 2017-06-08
-----------------------------------
Changes:
-----------------------------------
@@ -3085,8 +3123,8 @@ primary detection would not work, for example.
=====================================================================================
Version: 2.3.14
-Patch Version: 00
-Script Date: 2017-06-08
+Patch: 00
+Date: 2017-06-08
-----------------------------------
Changes:
-----------------------------------
@@ -3103,8 +3141,8 @@ screen resolution, opengl info, and so on, but that will have to come one step a
=====================================================================================
Version: 2.3.13
-Patch Version: 00
-Script Date: 2017-06-08
+Patch: 00
+Date: 2017-06-08
-----------------------------------
Changes:
-----------------------------------
@@ -3127,8 +3165,8 @@ this simply corrects misleading output for free drivers.
=====================================================================================
Version: 2.3.12
-Patch Version: 00
-Script Date: 2017-06-06
+Patch: 00
+Date: 2017-06-06
-----------------------------------
Changes:
-----------------------------------
@@ -3162,8 +3200,8 @@ put it mildly.
=====================================================================================
Version: 2.3.11
-Patch Version: 00
-Script Date: 2017-05-31
+Patch: 00
+Date: 2017-05-31
-----------------------------------
Changes:
-----------------------------------
@@ -3190,8 +3228,8 @@ I've tried to get a basic bsd support, but it's difficult to know the variants o
=====================================================================================
Version: 2.3.10
-Patch Version: 00
-Script Date: 2017-05-31
+Patch: 00
+Date: 2017-05-31
-----------------------------------
Changes:
-----------------------------------
@@ -3204,8 +3242,8 @@ Shows multiple ipv6 addresses, filters out ipv6 temp addresses and ipv6 local ad
=====================================================================================
Version: 2.3.9
-Patch Version: 00
-Script Date: 2017-05-29
+Patch: 00
+Date: 2017-05-29
-----------------------------------
Changes:
-----------------------------------
@@ -3221,8 +3259,8 @@ location request.
=====================================================================================
Version: 2.3.8
-Patch Version: 00
-Script Date: 2017-01-14
+Patch: 00
+Date: 2017-01-14
-----------------------------------
Changes:
-----------------------------------
@@ -3233,8 +3271,8 @@ New version, new tarball. Tiny change, added sisimedia video driver to support l
=====================================================================================
Version: 2.3.7
-Patch Version: 00
-Script Date: 2016-12-24
+Patch: 00
+Date: 2016-12-24
-----------------------------------
Changes:
-----------------------------------
@@ -3251,8 +3289,8 @@ This closes issue #102.
=====================================================================================
Version: 2.3.6
-Patch Version: 00
-Script Date: 2016-12-20
+Patch: 00
+Date: 2016-12-20
-----------------------------------
Changes:
-----------------------------------
@@ -3264,8 +3302,8 @@ but no actual meaningful changes. Feel free to ignore this one if you just did 2
=====================================================================================
Version: 2.3.6
-Patch Version: 00
-Script Date: 2016-12-19
+Patch: 00
+Date: 2016-12-19
-----------------------------------
Changes:
-----------------------------------
@@ -3315,8 +3353,8 @@ at all, it's just pointless busywork that makes some people happy since now ther
=====================================================================================
Version: 2.3.5
-Patch Version: 00
-Script Date: 2016-12-02
+Patch: 00
+Date: 2016-12-02
-----------------------------------
Changes:
-----------------------------------
@@ -3331,8 +3369,8 @@ I'd say.
=====================================================================================
Version: 2.3.4
-Patch Version: 00
-Script Date: 2016-11-03
+Patch: 00
+Date: 2016-11-03
-----------------------------------
Changes:
-----------------------------------
@@ -3343,8 +3381,8 @@ No new version, just fixed some unwanted executable bits in files.
=====================================================================================
Version: 2.3.4
-Patch Version: 00
-Script Date: 2016-11-03
+Patch: 00
+Date: 2016-11-03
-----------------------------------
Changes:
-----------------------------------
@@ -3356,8 +3394,8 @@ triggers used, will show system ram used/total, from the -I line.
=====================================================================================
Version: 2.3.4
-Patch Version: 00
-Script Date: 2016-11-03
+Patch: 00
+Date: 2016-11-03
-----------------------------------
Changes:
-----------------------------------
@@ -3372,8 +3410,8 @@ you're trying to force most of the data to fit into 80 columns.
=====================================================================================
Version: 2.3.3
-Patch Version: 00
-Script Date: 2016-10-25
+Patch: 00
+Date: 2016-10-25
-----------------------------------
Changes:
-----------------------------------
@@ -3388,8 +3426,8 @@ no real visible differences as far as I know.
=====================================================================================
Version: 2.3.3
-Patch Version: 00
-Script Date: 2016-10-25
+Patch: 00
+Date: 2016-10-25
-----------------------------------
Changes:
-----------------------------------
@@ -3404,8 +3442,8 @@ realworld vm id cases, except for some commercial stuff that will require more d
=====================================================================================
Version: 2.3.2
-Patch Version: 00
-Script Date: 2016-10-23
+Patch: 00
+Date: 2016-10-23
-----------------------------------
Changes:
-----------------------------------
@@ -3416,8 +3454,8 @@ version number unchanged, just added a vm possible id, will impact few users, if
=====================================================================================
Version: 2.3.2
-Patch Version: 00
-Script Date: 2016-10-20
+Patch: 00
+Date: 2016-10-20
-----------------------------------
Changes:
-----------------------------------
@@ -3436,8 +3474,8 @@ For BSDs, and older linux, there is a dmidecode fallback detection as well.
=====================================================================================
Version: 2.3.1
-Patch Version: 00
-Script Date: 2016-08-25
+Patch: 00
+Date: 2016-08-25
-----------------------------------
Changes:
-----------------------------------
@@ -3448,8 +3486,8 @@ Fixed typo in man page, no new version, just a fixed man page.
=====================================================================================
Version: 2.3.1
-Patch Version: 00
-Script Date: 2016-08-25
+Patch: 00
+Date: 2016-08-25
-----------------------------------
Changes:
-----------------------------------
@@ -3470,8 +3508,8 @@ work ok, we'll see.
=====================================================================================
Version: 2.3.0
-Patch Version: 00
-Script Date: 2016-04-18
+Patch: 00
+Date: 2016-04-18
-----------------------------------
Changes:
-----------------------------------
@@ -3502,8 +3540,8 @@ For dmidecode output, the location of the batter is also shown in -xxx
=====================================================================================
Version: 2.2.38
-Patch Version: 00
-Script Date: 2016-03-31
+Patch: 00
+Date: 2016-03-31
-----------------------------------
Changes:
-----------------------------------
@@ -3518,8 +3556,8 @@ Please update your inxi packages immediately if your version is 2016-03-21 or ne
=====================================================================================
Version: 2.2.37
-Patch Version: 00
-Script Date: 2016-03-30
+Patch: 00
+Date: 2016-03-30
-----------------------------------
Changes:
-----------------------------------
@@ -3533,8 +3571,8 @@ as they keep mint string in the /etc/issue file, that is, but that's out of our
=====================================================================================
Version: 2.2.36
-Patch Version: 00
-Script Date: 2016-03-21
+Patch: 00
+Date: 2016-03-21
-----------------------------------
Changes:
-----------------------------------
@@ -3548,8 +3586,8 @@ aimed more at light terminal backgrounds.
=====================================================================================
Version: 2.2.35
-Patch Version: 00
-Script Date: 2016-02-29
+Patch: 00
+Date: 2016-02-29
-----------------------------------
Changes:
-----------------------------------
@@ -3566,8 +3604,8 @@ I may also now add battery information where applicable since that's easy to get
=====================================================================================
Version: 2.2.34
-Patch Version: 00
-Script Date: 2016-02-21
+Patch: 00
+Date: 2016-02-21
-----------------------------------
Changes:
-----------------------------------
@@ -3585,8 +3623,8 @@ to recommended tools list.
=====================================================================================
Version: 2.2.33
-Patch Version: 00
-Script Date: 2016-01-30
+Patch: 00
+Date: 2016-01-30
-----------------------------------
Changes:
-----------------------------------
@@ -3599,8 +3637,8 @@ Says latitude/longtitude instead of latitude,longtitude
=====================================================================================
Version: 2.2.33
-Patch Version: 00
-Script Date: 2016-01-30
+Patch: 00
+Date: 2016-01-30
-----------------------------------
Changes:
-----------------------------------
@@ -3621,8 +3659,8 @@ Also some debugger fixes and updates.
=====================================================================================
Version: 2.2.32
-Patch Version: 00
-Script Date: 2016-01-03
+Patch: 00
+Date: 2016-01-03
-----------------------------------
Changes:
-----------------------------------
@@ -3634,8 +3672,8 @@ corrupted.
=====================================================================================
Version: 2.2.31
-Patch Version: 00
-Script Date: 2015-12-29
+Patch: 00
+Date: 2015-12-29
-----------------------------------
Changes:
-----------------------------------
@@ -3648,8 +3686,8 @@ Cleaned up some logging glitches.
=====================================================================================
Version: 2.2.31
-Patch Version: 00
-Script Date: 2015-11-15
+Patch: 00
+Date: 2015-11-15
-----------------------------------
Changes:
-----------------------------------
@@ -3661,8 +3699,8 @@ reported to the system.
=====================================================================================
Version: 2.2.30
-Patch Version: 00
-Script Date: 2015-11-13
+Patch: 00
+Date: 2015-11-13
-----------------------------------
Changes:
-----------------------------------
@@ -3674,8 +3712,8 @@ and drive identifiers. This will probably require more fixes.
=====================================================================================
Version: 2.2.29
-Patch Version: 00
-Script Date: 2015-11-09
+Patch: 00
+Date: 2015-11-09
-----------------------------------
Changes:
-----------------------------------
@@ -3694,8 +3732,8 @@ verify that my fix works. It may work, that's all I can say.
=====================================================================================
Version: 2.2.28
-Patch Version: 00
-Script Date: 2015-08-20
+Patch: 00
+Date: 2015-08-20
-----------------------------------
Changes:
-----------------------------------
@@ -3706,8 +3744,8 @@ No version change, new tarball. Man page link fixes, that's all.
=====================================================================================
Version: 2.2.28
-Patch Version: 00
-Script Date: 2015-08-20
+Patch: 00
+Date: 2015-08-20
-----------------------------------
Changes:
-----------------------------------
@@ -3747,8 +3785,8 @@ And that's about it.
=====================================================================================
Version: 2.2.27
-Patch Version: 00
-Script Date: 2015-08-02
+Patch: 00
+Date: 2015-08-02
-----------------------------------
Changes:
-----------------------------------
@@ -3759,8 +3797,8 @@ New version, tarball. Trivial wget/curl change, nothing else. No need to upgrade
=====================================================================================
Version: 2.2.26
-Patch Version: 00
-Script Date: 2015-07-06
+Patch: 00
+Date: 2015-07-06
-----------------------------------
Changes:
-----------------------------------
@@ -3775,8 +3813,8 @@ Also added debugger kde versioning to make this stuff less of an ordeal for data
=====================================================================================
Version: 2.2.25
-Patch Version: 00
-Script Date: 2015-06-15
+Patch: 00
+Date: 2015-06-15
-----------------------------------
Changes:
-----------------------------------
@@ -3788,8 +3826,8 @@ changing simple KDE to KDE Plasma, which keeps it clear and simple.
=====================================================================================
Version: 2.2.25
-Patch Version: 00
-Script Date: 2015-06-15
+Patch: 00
+Date: 2015-06-15
-----------------------------------
Changes:
-----------------------------------
@@ -3804,8 +3842,8 @@ and later.
=====================================================================================
Version: 2.2.24
-Patch Version: 00
-Script Date: 2015-06-15
+Patch: 00
+Date: 2015-06-15
-----------------------------------
Changes:
-----------------------------------
@@ -3874,8 +3912,8 @@ stupid things I've ever heard of to be honest.
=====================================================================================
Version: 2.2.23
-Patch Version: 00
-Script Date: 2015-06-08
+Patch: 00
+Date: 2015-06-08
-----------------------------------
Changes:
-----------------------------------
@@ -3889,8 +3927,8 @@ devuan and gentoo and slackware we can save the free software core systems befor
=====================================================================================
Version: 2.2.22
-Patch Version: 00
-Script Date: 2015-05-30
+Patch: 00
+Date: 2015-05-30
-----------------------------------
Changes:
-----------------------------------
@@ -3911,8 +3949,8 @@ don't use the option with other options, so the lack of total system ram data wa
=====================================================================================
Version: 2.2.21
-Patch Version: 00
-Script Date: 2015-05-13
+Patch: 00
+Date: 2015-05-13
-----------------------------------
Changes:
-----------------------------------
@@ -3927,8 +3965,8 @@ again be working.
=====================================================================================
Version: 2.2.20
-Patch Version: 00
-Script Date: 2015-05-11
+Patch: 00
+Date: 2015-05-11
-----------------------------------
Changes:
-----------------------------------
@@ -3939,8 +3977,8 @@ New version, tarball. This fixes a qt5 glitch with Quassel id, hopefully anyway.
=====================================================================================
Version: 2.2.19
-Patch Version: 00
-Script Date: 2015-02-15
+Patch: 00
+Date: 2015-02-15
-----------------------------------
Changes:
-----------------------------------
@@ -3953,8 +3991,8 @@ better for BSD or GNU/linux.
=====================================================================================
Version: 2.2.19
-Patch Version: 00
-Script Date: 2015-02-14
+Patch: 00
+Date: 2015-02-14
-----------------------------------
Changes:
-----------------------------------
@@ -3972,8 +4010,8 @@ files.
=====================================================================================
Version: 2.2.18
-Patch Version: 00
-Script Date: 2015-01-24
+Patch: 00
+Date: 2015-01-24
-----------------------------------
Changes:
-----------------------------------
@@ -3991,8 +4029,8 @@ New version, new tarball. Two great bug report, issues.
=====================================================================================
Version: 2.2.17
-Patch Version: 00
-Script Date: 2015-01-14
+Patch: 00
+Date: 2015-01-14
-----------------------------------
Changes:
-----------------------------------
@@ -4009,8 +4047,8 @@ Also fixed spacing isxue with OpenRC output in -I line.
=====================================================================================
Version: 2.2.16
-Patch Version: 00
-Script Date: 2014-11-03
+Patch: 00
+Date: 2014-11-03
-----------------------------------
Changes:
-----------------------------------
@@ -4027,8 +4065,8 @@ distant future, it's beta currently though.
=====================================================================================
Version: 2.2.15
-Patch Version: 00
-Script Date: 2014-10-12
+Patch: 00
+Date: 2014-10-12
-----------------------------------
Changes:
-----------------------------------
@@ -4044,8 +4082,8 @@ determine what platform it is when it starts without that.
=====================================================================================
Version: 2.2.14
-Patch Version: 00
-Script Date: 2014-09-26
+Patch: 00
+Date: 2014-09-26
-----------------------------------
Changes:
-----------------------------------
@@ -4060,8 +4098,8 @@ particularly non apt systems to fix issues with its handling of repo formats etc
=====================================================================================
Version: 2.2.13
-Patch Version: 00
-Script Date: 2014-09-25
+Patch: 00
+Date: 2014-09-25
-----------------------------------
Changes:
-----------------------------------
@@ -4073,8 +4111,8 @@ added netbsd pkg servers, all to -r.
=====================================================================================
Version: 2.2.12
-Patch Version: 00
-Script Date: 2014-09-24
+Patch: 00
+Date: 2014-09-24
-----------------------------------
Changes:
-----------------------------------
@@ -4086,8 +4124,8 @@ on one line, moved to separate lines. Who knows why? This only impacts rpm distr
=====================================================================================
Version: 2.2.11
-Patch Version: 00
-Script Date: 2014-09-24
+Patch: 00
+Date: 2014-09-24
-----------------------------------
Changes:
-----------------------------------
@@ -4101,8 +4139,8 @@ but that only happens with multiple files.
=====================================================================================
Version: 2.2.10
-Patch Version: 00
-Script Date: 2014-09-24
+Patch: 00
+Date: 2014-09-24
-----------------------------------
Changes:
-----------------------------------
@@ -4118,8 +4156,8 @@ Nothing else of note.
=====================================================================================
Version: 2.2.9
-Patch Version: 00
-Script Date: 2014-09-22
+Patch: 00
+Date: 2014-09-22
-----------------------------------
Changes:
-----------------------------------
@@ -4134,8 +4172,8 @@ And that's that.
=====================================================================================
Version: 2.2.8
-Patch Version: 00
-Script Date: 2014-09-21
+Patch: 00
+Date: 2014-09-21
-----------------------------------
Changes:
-----------------------------------
@@ -4149,8 +4187,8 @@ lets openbsd show card info for -A,-G,-N
=====================================================================================
Version: 2.2.7
-Patch Version: 00
-Script Date: 2014-09-19
+Patch: 00
+Date: 2014-09-19
-----------------------------------
Changes:
-----------------------------------
@@ -4169,8 +4207,8 @@ needed, and another method, too much work imo for small results.
=====================================================================================
Version: 2.2.6
-Patch Version: 00
-Script Date: 2014-09-17
+Patch: 00
+Date: 2014-09-17
-----------------------------------
Changes:
-----------------------------------
@@ -4188,8 +4226,8 @@ better data sources or they update their sources to list more data.
=====================================================================================
Version: 2.2.5
-Patch Version: 00
-Script Date: 2014-09-16
+Patch: 00
+Date: 2014-09-16
-----------------------------------
Changes:
-----------------------------------
@@ -4200,8 +4238,8 @@ New tarball, same version. This adds UP support for -Cxx, showing min cpu speed
=====================================================================================
Version: 2.2.5
-Patch Version: 00
-Script Date: 2014-09-16
+Patch: 00
+Date: 2014-09-16
-----------------------------------
Changes:
-----------------------------------
@@ -4227,8 +4265,8 @@ Note that not all /sys have this data, so it doesn't show any N/A if it's missin
=====================================================================================
Version: 2.2.4
-Patch Version: 00
-Script Date: 2014-09-10
+Patch: 00
+Date: 2014-09-10
-----------------------------------
Changes:
-----------------------------------
@@ -4251,8 +4289,8 @@ Also fixed potential failures with cpu core count array by making it a ',' separ
=====================================================================================
Version: 2.2.3
-Patch Version: 00
-Script Date: 2014-09-03
+Patch: 00
+Date: 2014-09-03
-----------------------------------
Changes:
-----------------------------------
@@ -4297,8 +4335,8 @@ modified handling of dmesg.boot data, synched so gawk can parse better.
=====================================================================================
Version: 2.2.2
-Patch Version: 00
-Script Date: 2014-09-01
+Patch: 00
+Date: 2014-09-01
-----------------------------------
Changes:
-----------------------------------
@@ -4315,8 +4353,8 @@ Added some debuggers for bsd systems.
=====================================================================================
Version: 2.2.1
-Patch Version: 00
-Script Date: 2014-08-20
+Patch: 00
+Date: 2014-08-20
-----------------------------------
Changes:
-----------------------------------
@@ -4332,8 +4370,8 @@ Updated and added a much less strict fallback test case.
=====================================================================================
Version: 2.2.00
-Patch Version: 00
-Script Date: 2014-08-18
+Patch: 00
+Date: 2014-08-18
-----------------------------------
Changes:
-----------------------------------
@@ -4411,8 +4449,8 @@ with two systems that both required a full redo of the logic, and thus who helpe
=====================================================================================
Version: 2.1.98
-Patch Version: 01
-Script Date: 2014-08-17
+Patch: 01
+Date: 2014-08-17
-----------------------------------
Changes:
-----------------------------------
@@ -4426,8 +4464,8 @@ or cap is wrong.
=====================================================================================
Version: 2.1.98
-Patch Version: 00
-Script Date: 2014-08-17
+Patch: 00
+Date: 2014-08-17
-----------------------------------
Changes:
-----------------------------------
@@ -4444,8 +4482,8 @@ are sold by GB or MB, the data should show that as well. Also shortens output.
=====================================================================================
Version: 2.1.97
-Patch Version: 00
-Script Date: 2014-08-16
+Patch: 00
+Date: 2014-08-16
-----------------------------------
Changes:
-----------------------------------
@@ -4459,8 +4497,8 @@ ordering of dmidecode data.
=====================================================================================
Version: 2.1.96
-Patch Version: 02
-Script Date: 2014-08-15
+Patch: 02
+Date: 2014-08-15
-----------------------------------
Changes:
-----------------------------------
@@ -4470,8 +4508,8 @@ forgot to remove debugger on switch
=====================================================================================
Version: 2.1.96
-Patch Version: 01
-Script Date: 2014-08-15
+Patch: 01
+Date: 2014-08-15
-----------------------------------
Changes:
-----------------------------------
@@ -4482,8 +4520,8 @@ Small change, forgot to add -m to the debugger inxi output.
=====================================================================================
Version: 2.1.96
-Patch Version: 00
-Script Date: 2014-08-14
+Patch: 00
+Date: 2014-08-14
-----------------------------------
Changes:
-----------------------------------
@@ -4504,8 +4542,8 @@ and see if I can modify the hacks to improve that data.
=====================================================================================
Version: 2.1.95
-Patch Version: 04
-Script Date: 2014-08-14
+Patch: 04
+Date: 2014-08-14
-----------------------------------
Changes:
-----------------------------------
@@ -4517,8 +4555,8 @@ Will next try to handle the remaining corner cases if possible.
=====================================================================================
Version: 2.1.95
-Patch Version: 01
-Script Date: 2014-08-13
+Patch: 01
+Date: 2014-08-13
-----------------------------------
Changes:
-----------------------------------
@@ -4531,8 +4569,8 @@ forcing int() on relevant items.
=====================================================================================
Version: 2.1.95
-Patch Version: 00
-Script Date: 2014-08-13
+Patch: 00
+Date: 2014-08-13
-----------------------------------
Changes:
-----------------------------------
@@ -4552,8 +4590,8 @@ Not perfect, but it never is, this covers more cases now correctly than before.
=====================================================================================
Version: 2.1.94
-Patch Version: 00
-Script Date: 2014-08-13
+Patch: 00
+Date: 2014-08-13
-----------------------------------
Changes:
-----------------------------------
@@ -4570,8 +4608,8 @@ probably will have this information in the first place.
=====================================================================================
Version: 2.1.93
-Patch Version: 00
-Script Date: 2014-08-13
+Patch: 00
+Date: 2014-08-13
-----------------------------------
Changes:
-----------------------------------
@@ -4597,8 +4635,8 @@ mind within a few days, I'll move the number to the new major version, 2.2.0
=====================================================================================
Version: 2.1.92
-Patch Version: 00
-Script Date: 2014-08-12
+Patch: 00
+Date: 2014-08-12
-----------------------------------
Changes:
-----------------------------------
@@ -4620,8 +4658,8 @@ it at 2.2.0.
=====================================================================================
Version: 2.1.91
-Patch Version: 00
-Script Date: 2014-08-12
+Patch: 00
+Date: 2014-08-12
-----------------------------------
Changes:
-----------------------------------
@@ -4636,8 +4674,8 @@ so -m is properly integrated with rest of inxi re max line lengths.
=====================================================================================
Version: 2.1.90
-Patch Version: 00
-Script Date: 2014-08-11
+Patch: 00
+Date: 2014-08-11
-----------------------------------
Changes:
-----------------------------------
@@ -4659,8 +4697,8 @@ And that's that.
=====================================================================================
Version: 2.1.29
-Patch Version: 00
-Script Date: 2014-08-08
+Patch: 00
+Date: 2014-08-08
-----------------------------------
Changes:
-----------------------------------
@@ -4673,8 +4711,8 @@ non ancient systems.
=====================================================================================
Version: 2.1.29
-Patch Version: 00
-Script Date: 2014-08-08
+Patch: 00
+Date: 2014-08-08
-----------------------------------
Changes:
-----------------------------------
@@ -4691,8 +4729,8 @@ devices, like two port nics etc.
=====================================================================================
Version: 2.1.28
-Patch Version: 00
-Script Date: 2014-05-05
+Patch: 00
+Date: 2014-05-05
-----------------------------------
Changes:
-----------------------------------
@@ -4705,8 +4743,8 @@ to the system when the gtk variant goes away. Good for lxde by the way in dumpin
=====================================================================================
Version: 2.1.27
-Patch Version: 00
-Script Date: 2014-05-02
+Patch: 00
+Date: 2014-05-02
-----------------------------------
Changes:
-----------------------------------
@@ -4741,8 +4779,8 @@ Next time an osx user calls this system 'unix' I will laugh.
=====================================================================================
Version: 2.1.26
-Patch Version: 00
-Script Date: 2014-05-01
+Patch: 00
+Date: 2014-05-01
-----------------------------------
Changes:
-----------------------------------
@@ -4759,8 +4797,8 @@ No linux changes.
=====================================================================================
Version: 2.1.25
-Patch Version: 00
-Script Date: 2014-04-28
+Patch: 00
+Date: 2014-04-28
-----------------------------------
Changes:
-----------------------------------
@@ -4772,8 +4810,8 @@ not reliable enough and leads I think to more false readings than right ones.
=====================================================================================
Version: 2.1.25
-Patch Version: 00
-Script Date: 2014-04-28
+Patch: 00
+Date: 2014-04-28
-----------------------------------
Changes:
-----------------------------------
@@ -4788,8 +4826,8 @@ Howeve, did add excludes of nfs/smbfs types, as well as future bsd excludes of t
=====================================================================================
Version: 2.1.24
-Patch Version: 00
-Script Date: 2014-04-28
+Patch: 00
+Date: 2014-04-28
-----------------------------------
Changes:
-----------------------------------
@@ -4801,8 +4839,8 @@ are mounted, inxi included those in the disk space used, creating insane used er
=====================================================================================
Version: 2.1.24
-Patch Version: 00
-Script Date: 2014-04-28
+Patch: 00
+Date: 2014-04-28
-----------------------------------
Changes:
-----------------------------------
@@ -4829,8 +4867,8 @@ inxi will always use CPU: or MB: to override anything found.
=====================================================================================
Version: 2.1.23
-Patch Version: 00
-Script Date: 2014-04-27
+Patch: 00
+Date: 2014-04-27
-----------------------------------
Changes:
-----------------------------------
@@ -4846,8 +4884,8 @@ Since this is a long time bug, it warrants a new release even though I just did
=====================================================================================
Version: 2.1.22
-Patch Version: 00
-Script Date: 2014-04-27
+Patch: 00
+Date: 2014-04-27
-----------------------------------
Changes:
-----------------------------------
@@ -4860,8 +4898,8 @@ makes sense to me to count it as used. -P/-p show the percent of swap used as we
=====================================================================================
Version: 2.1.22
-Patch Version: 00
-Script Date: 2014-04-27
+Patch: 00
+Date: 2014-04-27
-----------------------------------
Changes:
-----------------------------------
@@ -4926,8 +4964,8 @@ inxi still falls back for bsds and older df to the standard method.
=====================================================================================
Version: 2.1.21
-Patch Version: 00
-Script Date: 2014-04-24
+Patch: 00
+Date: 2014-04-24
-----------------------------------
Changes:
-----------------------------------
@@ -4940,8 +4978,8 @@ That's searching for ieee1394- hopefully that will do it.
=====================================================================================
Version: 2.1.21
-Patch Version: 00
-Script Date: 2014-04-24
+Patch: 00
+Date: 2014-04-24
-----------------------------------
Changes:
-----------------------------------
@@ -4966,8 +5004,8 @@ option.
=====================================================================================
Version: 2.1.20
-Patch Version: 00
-Script Date: 2014-04-08
+Patch: 00
+Date: 2014-04-08
-----------------------------------
Changes:
-----------------------------------
@@ -4989,8 +5027,8 @@ to anyone but me at this stage.
=====================================================================================
Version: 2.1.20
-Patch Version: 00
-Script Date: 2014-04-08
+Patch: 00
+Date: 2014-04-08
-----------------------------------
Changes:
-----------------------------------
@@ -5004,8 +5042,8 @@ arm if the /proc/cpuinfo has bogomip that is too low and no cpu frequency.
=====================================================================================
Version: 2.1.20
-Patch Version: 00
-Script Date: 2014-04-08
+Patch: 00
+Date: 2014-04-08
-----------------------------------
Changes:
-----------------------------------
@@ -5018,8 +5056,8 @@ ARM cpus, but NOT for multicores that have the same issue.
=====================================================================================
Version: 2.1.19
-Patch Version: 00
-Script Date: 2014-04-06
+Patch: 00
+Date: 2014-04-06
-----------------------------------
Changes:
-----------------------------------
@@ -5031,8 +5069,8 @@ a third counter to get all the stuff right. Sorry about the extra release, that'
=====================================================================================
Version: 2.1.18
-Patch Version: 00
-Script Date: 2014-04-04
+Patch: 00
+Date: 2014-04-04
-----------------------------------
Changes:
-----------------------------------
@@ -5065,8 +5103,8 @@ certainly radically better than before 2.1.0.
=====================================================================================
Version: 2.1.17
-Patch Version: 00
-Script Date: 2014-04-03
+Patch: 00
+Date: 2014-04-03
-----------------------------------
Changes:
-----------------------------------
@@ -5089,8 +5127,8 @@ max length.
=====================================================================================
Version: 2.1.16
-Patch Version: 00
-Script Date: 2014-04-02
+Patch: 00
+Date: 2014-04-02
-----------------------------------
Changes:
-----------------------------------
@@ -5107,8 +5145,8 @@ No other changes. Non bsd users, you can ignore this.
=====================================================================================
Version: 2.1.15
-Patch Version: 00
-Script Date: 2014-04-01
+Patch: 00
+Date: 2014-04-01
-----------------------------------
Changes:
-----------------------------------
@@ -5128,8 +5166,8 @@ This more or less completes the line wrap redo.
=====================================================================================
Version: 2.1.14
-Patch Version: 00
-Script Date: 2014-03-31
+Patch: 00
+Date: 2014-03-31
-----------------------------------
Changes:
-----------------------------------
@@ -5140,8 +5178,8 @@ Forgot, added slitaz-release to distros derived. that's as slackware derived one
=====================================================================================
Version: 2.1.14
-Patch Version: 00
-Script Date: 2014-03-31
+Patch: 00
+Date: 2014-03-31
-----------------------------------
Changes:
-----------------------------------
@@ -5160,8 +5198,8 @@ based distros, but since the debugger should 'just work', removing the version t
=====================================================================================
Version: 2.1.13
-Patch Version: 00
-Script Date: 2014-03-30
+Patch: 00
+Date: 2014-03-30
-----------------------------------
Changes:
-----------------------------------
@@ -5173,8 +5211,8 @@ correctly. No other changes.
=====================================================================================
Version: 2.1.12
-Patch Version: 00
-Script Date: 2014-03-27
+Patch: 00
+Date: 2014-03-27
-----------------------------------
Changes:
-----------------------------------
@@ -5187,8 +5225,8 @@ extra data, but it's ok for now.
=====================================================================================
Version: 2.1.11
-Patch Version: 00
-Script Date: 2014-03-26
+Patch: 00
+Date: 2014-03-26
-----------------------------------
Changes:
-----------------------------------
@@ -5200,8 +5238,8 @@ and seems to be faster on some cpus, slower on others.
=====================================================================================
Version: 2.1.12
-Patch Version: 00
-Script Date: 2014-03-26
+Patch: 00
+Date: 2014-03-26
-----------------------------------
Changes:
-----------------------------------
@@ -5218,8 +5256,8 @@ something to boost performance slightly on older systems I'd guess.
=====================================================================================
Version: 2.1.11
-Patch Version: 00
-Script Date: 2014-03-26
+Patch: 00
+Date: 2014-03-26
-----------------------------------
Changes:
-----------------------------------
@@ -5232,8 +5270,8 @@ terminal/console font color red.
=====================================================================================
Version: 2.1.10
-Patch Version: 00
-Script Date: 2014-03-25
+Patch: 00
+Date: 2014-03-25
-----------------------------------
Changes:
-----------------------------------
@@ -5248,8 +5286,8 @@ Fine tuned some error message lengths so they fit into 80 columns or so.
=====================================================================================
Version: 2.1.9
-Patch Version: 00
-Script Date: 2014-03-24
+Patch: 00
+Date: 2014-03-24
-----------------------------------
Changes:
-----------------------------------
@@ -5261,8 +5299,8 @@ will still be too long, but not as many.
=====================================================================================
Version: 2.1.8
-Patch Version: 00
-Script Date: 2014-03-24
+Patch: 00
+Date: 2014-03-24
-----------------------------------
Changes:
-----------------------------------
@@ -5280,8 +5318,8 @@ so maybe some other time, but it's ok for now.
=====================================================================================
Version: 2.1.7
-Patch Version: 00
-Script Date: 2014-03-18
+Patch: 00
+Date: 2014-03-18
-----------------------------------
Changes:
-----------------------------------
@@ -5308,8 +5346,8 @@ physical device or not.
=====================================================================================
Version: 2.1.6
-Patch Version: 00
-Script Date: 2014-03-18
+Patch: 00
+Date: 2014-03-18
-----------------------------------
Changes:
-----------------------------------
@@ -5320,8 +5358,8 @@ new version, bug fix, adding 3D controller to output causes doubled card id in s
=====================================================================================
Version: 2.1.5
-Patch Version: 00
-Script Date: 2014-03-17
+Patch: 00
+Date: 2014-03-17
-----------------------------------
Changes:
-----------------------------------
@@ -5332,8 +5370,8 @@ New version, serious bug fix, do NOT use 2.1.4, it will fail to start. Bad copy/
=====================================================================================
Version: 2.1.4
-Patch Version: 00
-Script Date: 2014-03-17
+Patch: 00
+Date: 2014-03-17
-----------------------------------
Changes:
-----------------------------------
@@ -5351,8 +5389,8 @@ Some more switches to bash native methods as well.
=====================================================================================
Version: 2.1.3
-Patch Version: 00
-Script Date: 2014-03-15
+Patch: 00
+Date: 2014-03-15
-----------------------------------
Changes:
-----------------------------------
@@ -5383,8 +5421,8 @@ Added handling to support /run paths using directories, like /run/gdm/gdm.pid fo
=====================================================================================
Version: 2.1.2
-Patch Version: 00
-Script Date: 2014-03-14
+Patch: 00
+Date: 2014-03-14
-----------------------------------
Changes:
-----------------------------------
@@ -5395,8 +5433,8 @@ no version change, just added wrapper around tput cols so only use it if in term
=====================================================================================
Version: 2.1.2
-Patch Version: 00
-Script Date: 2014-03-14
+Patch: 00
+Date: 2014-03-14
-----------------------------------
Changes:
-----------------------------------
@@ -5409,8 +5447,8 @@ counting.
=====================================================================================
Version: 2.1.1
-Patch Version: 00
-Script Date: 2014-03-14
+Patch: 00
+Date: 2014-03-14
-----------------------------------
Changes:
-----------------------------------
@@ -5445,8 +5483,8 @@ Tightened up a bit more the dyanamic help / version output handler.
=====================================================================================
Version: 2.1.0
-Patch Version: 00
-Script Date: 2014-03-13
+Patch: 00
+Date: 2014-03-13
-----------------------------------
Changes:
-----------------------------------
@@ -5459,8 +5497,8 @@ but I've optimized it as much as I could so it should be acceptable for most use
=====================================================================================
Version: 2.0.0
-Patch Version: 00
-Script Date: 2014-03-12
+Patch: 00
+Date: 2014-03-12
-----------------------------------
Changes:
-----------------------------------
@@ -5484,8 +5522,8 @@ more fine tuned, but as it is now, it should cover at least 99% of users, which
=====================================================================================
Version: 1.9.19
-Patch Version: 00
-Script Date: 2014-03-03
+Patch: 00
+Date: 2014-03-03
-----------------------------------
Changes:
-----------------------------------
@@ -5499,8 +5537,8 @@ test cd that boots in virtual box so I will have to wait to really add support t
=====================================================================================
Version: 1.9.18
-Patch Version: 00
-Script Date: 2014-01-13
+Patch: 00
+Date: 2014-01-13
-----------------------------------
Changes:
-----------------------------------
@@ -5516,8 +5554,8 @@ return null unless gtk dev packages were installed on the system.
=====================================================================================
Version: 1.9.17
-Patch Version: 00
-Script Date: 2013-12-02
+Patch: 00
+Date: 2013-12-02
-----------------------------------
Changes:
-----------------------------------
@@ -5542,8 +5580,8 @@ That's for inxi -Sx output that is.
=====================================================================================
Version: 1.9.16
-Patch Version: 00
-Script Date: October 6 2013
+Patch: 00
+Date: October 6 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5561,8 +5599,8 @@ Non urpmq distros ignore this update, there are no other actual changes.
=====================================================================================
Version: 1.9.15
-Patch Version: 00
-Script Date: October 4 2013
+Patch: 00
+Date: October 4 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5577,8 +5615,8 @@ This adds support for Mandriva, Mageia. urpmq parsing is similar but not identic
=====================================================================================
Version: 1.9.14
-Patch Version: 00
-Script Date: September 10 2013
+Patch: 00
+Date: September 10 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5591,8 +5629,8 @@ solusos-release distro file in /etc/.
=====================================================================================
Version: 1.9.14
-Patch Version: 00
-Script Date: August 20 2013
+Patch: 00
+Date: August 20 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5605,8 +5643,8 @@ escaped me.
=====================================================================================
Version: 1.9.13
-Patch Version: 00
-Script Date: August 12 2013
+Patch: 00
+Date: August 12 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5629,8 +5667,8 @@ occurance.
=====================================================================================
Version: 1.9.12
-Patch Version: 00
-Script Date: July 2 2013
+Patch: 00
+Date: July 2 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5642,8 +5680,8 @@ ids get slightly corrupted, but this is so trivial just fixing it, new tarball.
=====================================================================================
Version: 1.9.12
-Patch Version: 00
-Script Date: July 2 2013
+Patch: 00
+Date: July 2 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5655,8 +5693,8 @@ herbstluftwm. Both tested and working, thanks anticap from Antix for doing the t
=====================================================================================
Version: 1.9.11
-Patch Version: 00
-Script Date: June 19 2013
+Patch: 00
+Date: June 19 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5672,8 +5710,8 @@ issues that were not handled before as well, or at all.
=====================================================================================
Version: 1.9.10
-Patch Version: 00
-Script Date: June 19 2013
+Patch: 00
+Date: June 19 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5701,8 +5739,8 @@ not seen that will trigger yet another unexpected behavior.
=====================================================================================
Version: 1.9.9
-Patch Version: 00
-Script Date: June 16 2013
+Patch: 00
+Date: June 16 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5722,8 +5760,8 @@ reliable.
=====================================================================================
Version: 1.9.8
-Patch Version: 00
-Script Date: June 14 2013
+Patch: 00
+Date: June 14 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5762,8 +5800,8 @@ and does not show anything for disk itself.
=====================================================================================
Version: 1.9.7
-Patch Version: 00
-Script Date: May 25 2013
+Patch: 00
+Date: May 25 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5782,8 +5820,8 @@ This should about do it for the weather option for now unless I missed something
=====================================================================================
Version: 1.9.6
-Patch Version: 00
-Script Date: May 19 2013
+Patch: 00
+Date: May 19 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5795,8 +5833,8 @@ like nashville.
=====================================================================================
Version: 1.9.5
-Patch Version: 00
-Script Date: May 18 2013
+Patch: 00
+Date: May 18 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5812,8 +5850,8 @@ This should be closer to cleanup of this new feature.
=====================================================================================
Version: 1.9.04
-Patch Version: 00
-Script Date: May 17 2013
+Patch: 00
+Date: May 17 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5825,8 +5863,8 @@ man and help instructions to remove spaces and examples.
=====================================================================================
Version: 1.9.03
-Patch Version: 00
-Script Date: May 17 2013
+Patch: 00
+Date: May 17 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5841,8 +5879,8 @@ This should take care of the failure from slow load issue reported.
=====================================================================================
Version: 1.9.02
-Patch Version: 00
-Script Date: May 17 2013
+Patch: 00
+Date: May 17 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5853,8 +5891,8 @@ new version, new tarball, bug fix for weather
=====================================================================================
Version: 1.9.01
-Patch Version: 00
-Script Date: May 17 2013
+Patch: 00
+Date: May 17 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5866,8 +5904,8 @@ array, that's now correct.
=====================================================================================
Version: 1.9.00
-Patch Version: 00
-Script Date: May 17 2013
+Patch: 00
+Date: May 17 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5897,8 +5935,8 @@ before packaging and the weather feature will be disabled.
=====================================================================================
Version: 1.8.47
-Patch Version: 00
-Script Date: May 3 2013
+Patch: 00
+Date: May 3 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5909,8 +5947,8 @@ errors with detections, also added in missing detection for separator.
=====================================================================================
Version: 1.8.46
-Patch Version: 00
-Script Date: May 3 2013
+Patch: 00
+Date: May 3 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5934,8 +5972,8 @@ but for now I won't worry about that issue, that's just a nice to have, not a bu
=====================================================================================
Version: 1.8.45
-Patch Version: 00
-Script Date: March 2 2013
+Patch: 00
+Date: March 2 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5952,8 +5990,8 @@ Also includes openbsd initial fixes for some issues related to sysctl parsing fo
=====================================================================================
Version: 1.8.44
-Patch Version: 00
-Script Date: February 28 2013
+Patch: 00
+Date: February 28 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5964,8 +6002,8 @@ no version change, just added 'chipset' to banlist to filter out.
=====================================================================================
Version: 1.8.44
-Patch Version: 00
-Script Date: February 28 2013
+Patch: 00
+Date: February 28 2013
-----------------------------------
Changes:
-----------------------------------
@@ -5982,8 +6020,8 @@ the output is consistent.
=====================================================================================
Version: 1.8.43
-Patch Version: 00
-Script Date: February 28 2013
+Patch: 00
+Date: February 28 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6009,8 +6047,8 @@ Further bsd improvements are better error/no data available messages for -D and
=====================================================================================
Version: 1.8.42
-Patch Version: 00
-Script Date: February 27 2013
+Patch: 00
+Date: February 27 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6026,8 +6064,8 @@ Also added in more hdd used partition types for bsds, wd and ad type drivers for
=====================================================================================
Version: 1.8.41
-Patch Version: 00
-Script Date: February 27 2013
+Patch: 00
+Date: February 27 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6038,8 +6076,8 @@ small change, new tarball, added some excludes items to unmounted list, scd, dvd
=====================================================================================
Version: 1.8.41
-Patch Version: 00
-Script Date: February 27 2013
+Patch: 00
+Date: February 27 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6055,8 +6093,8 @@ Small update of man page as well to note that -o will not show components of mdr
=====================================================================================
Version: 1.8.40
-Patch Version: 00
-Script Date: February 27 2013
+Patch: 00
+Date: February 27 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6070,8 +6108,8 @@ online if none are detected.
=====================================================================================
Version: 1.8.39
-Patch Version: 00
-Script Date: February 27 2013
+Patch: 00
+Date: February 27 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6089,8 +6127,8 @@ a bug, please report it.
=====================================================================================
Version: 1.8.38
-Patch Version: 00
-Script Date: February 18 2013
+Patch: 00
+Date: February 18 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6127,8 +6165,8 @@ data, and better/cleaner output for bsd.
=====================================================================================
Version: 1.8.37
-Patch Version: 00
-Script Date: February 11 2013
+Patch: 00
+Date: February 11 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6143,8 +6181,8 @@ to look for simpler: 'no smbios ' to avoid that random error.
=====================================================================================
Version: 1.8.37
-Patch Version: 00
-Script Date: February 11 2013
+Patch: 00
+Date: February 11 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6172,8 +6210,8 @@ as time permits, it is a long process.
=====================================================================================
Version: 1.8.36
-Patch Version: 00
-Script Date: February 8 2013
+Patch: 00
+Date: February 8 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6184,8 +6222,8 @@ New version, new tarball. Cleaned up patch number sed cleanup that didn't work i
=====================================================================================
Version: 1.8.36
-Patch Version: 00
-Script Date: February 8 2013
+Patch: 00
+Date: February 8 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6214,8 +6252,8 @@ Fixed tty irc bugs for bsds and linux, now should show the right console size fo
=====================================================================================
Version: 1.8.35
-Patch Version: 00
-Script Date: February 7 2013
+Patch: 00
+Date: February 7 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6243,8 +6281,8 @@ when it didn't before, like showing MHz on ARM cpus on short inxi.
=====================================================================================
Version: 1.8.34
-Patch Version: 00
-Script Date: January 28 2013
+Patch: 00
+Date: January 28 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6259,8 +6297,8 @@ sort of redundant to System: console: data, but that's ok, we'll live for now.
=====================================================================================
Version: 1.8.33
-Patch Version: 00
-Script Date: January 28 2013
+Patch: 00
+Date: January 28 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6284,8 +6322,8 @@ Info: Processes: 271 Uptime: 5:36 Memory: 3255.8/4048.5MB Runlevel: 3
=====================================================================================
Version: 1.8.32
-Patch Version: 00
-Script Date: January 23 2013
+Patch: 00
+Date: January 23 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6296,8 +6334,8 @@ Small changes to man page, updated copyright date, added a patch contributor.
=====================================================================================
Version: 1.8.32
-Patch Version: 00
-Script Date: January 23 2013
+Patch: 00
+Date: January 23 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6310,8 +6348,8 @@ Some lintian changes for man page, escaped required -x type to \-x
=====================================================================================
Version: 1.8.32
-Patch Version: 00
-Script Date: January 23 2013
+Patch: 00
+Date: January 23 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6322,8 +6360,8 @@ New version, new tarball. Disabled -U in irc clients, with an exit error message
=====================================================================================
Version: 1.8.31
-Patch Version: 00
-Script Date: January 23 2013
+Patch: 00
+Date: January 23 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6346,8 +6384,8 @@ copyright contained in the top comment header.
=====================================================================================
Version: 1.8.30
-Patch Version: 00
-Script Date: January 22 2013
+Patch: 00
+Date: January 22 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6358,8 +6396,8 @@ at this point so no need to change anything.
=====================================================================================
Version: 1.8.30
-Patch Version: 00
-Script Date: January 22 2013
+Patch: 00
+Date: January 22 2013
-----------------------------------
Changes:
-----------------------------------
@@ -6380,8 +6418,8 @@ and may also show some type of cpu speeds for ARM cpus that are not in razpi dev
====================================================================================
Script Version: 1.8.29
-Patch Version: 00
-Script Date: January 21 2012
+Patch: 00
+Date: January 21 2012
-----------------------------------
Changes:
-----------------------------------