aboutsummaryrefslogtreecommitdiffstats
path: root/inxi.changelog
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@unit193.net>2021-10-13 15:07:02 -0400
committerLibravatarUnit 193 <unit193@unit193.net>2021-10-13 15:07:02 -0400
commit19c5b6157eba9a68ae9e5fc37ae40892404c7d54 (patch)
tree0bb52772fcd5f6c145cf28f04fbaaff8f5b83778 /inxi.changelog
parent82da5c3c58727a1acf99d3f363a4b588d316adca (diff)
New upstream version 3.3.07-1.upstream/3.3.07-1
Diffstat (limited to 'inxi.changelog')
-rw-r--r--inxi.changelog776
1 files changed, 485 insertions, 291 deletions
diff --git a/inxi.changelog b/inxi.changelog
index 6e922a0..46360eb 100644
--- a/inxi.changelog
+++ b/inxi.changelog
@@ -1,9 +1,203 @@
================================================================================
+Version: 3.3.07
+Patch: 00
+Date: 2021-10-11
+--------------------------------------------------------------------------------
+RELEASE NOTES:
+--------------------------------------------------------------------------------
+
+Some very nice issue reports have helped correct various corner case issues.
+Mint users helped find a big one with lspci.
+
+--------------------------------------------------------------------------------
+KNOWN ISSUES:
+
+1. Unsure how to handle Android case where inxi correctly does -r test, see bug
+3 fixes 6, but android incorrectly claims it is readable when it is not
+readable, then the reader tool can't read the file and fails with permissions
+error. This is one of those weird android errors that are pretty much impossible
+to fully work around, but we can get rid of the readline() errors when reader()
+was trying to work on a file handle that did not exist, that part was an inxi
+bug.
+
+--------------------------------------------------------------------------------
+BUGS:
+
+1. dm detection was not using case sensitive search for duplicates, leading to
+cases where dm like slim / SLiM failed to get detected and then repeated in
+output. Anonymous BSD debugger dataset exposed this issue, thanks.
+
+2. In certain corner cases, like ARM Android, sub reader got passed a file that
+had passed the is readable -r test, but it still failed with permissions error,
+which then led reader to try to keep working with a null $fh. While in theory
+nothing non readable should be passed to reader(), that fails when the OS fails
+to actually follow correct readable rules, as in this case. Added protections in
+reader() to handle this case, now will show error, but will not try to work with
+$fh, that is how it should have been all along, but this is a very corner case.
+Exposed by an anoymous ARM debugger dataset.
+
+Thanks Termux user for creating the debugger dataset that exposed this issue.
+
+3. lspci parser didn't null port value each iteration, resulting in all pci
+items getting port values. Not a big deal, port is only used one place, but good
+to find and correct that error.
+
+4. Not an inxi bug, but would appear so to end users: lspsci -nnv implements a
+truncating routine and breaks the first line for each bus id. See Fix 6 and Code
+fix 3.
+
+--------------------------------------------------------------------------------
+FIXES:
+
+1. -S and -I would show Console: tty pts/3 even though pts device is a pty, not
+a tty. The only time this happened was when connecting to a remote system using
+ssh or something like that. Local console still shows Console: tty 2 since that
+was correct, but Console: tty pts/2 was confusing since technically it's not a
+tty, it's a pty, pseudo terminal.
+
+Now shows, when relevant: Console: tty 2 OR Console: pty pts/2.
+
+2. Issue #252 notes that Emacs (and possibly other code/text editors with native
+embedded terminals) includes a native virtual terminal that also follows
+configuration rules from the editor to highlight trailing spaces. This created
+odd looking screen output in Emacs vt mode since inxi always sets key/value
+pairs with a white space ending as separator for next key value pair for screen
+output mode, resulting always in a trailing space on each vt screen line. Fix
+was to remove the last trailing space just prior to the print line point to
+avoid this issue.
+
+As a general thing, I'm curious to learn if any editor other than Emacs actually
+contains its own virtual terminal that also follows the editor rules for output.
+Or if any virtual terminal has such a highlight trailing space rule, which would
+be imo so annoying it's hard to understand why a vt would implement it. Easy to
+understand why Emacs (or any editor) does it, but an editor also being a vt AND
+applying certain editor display configurations to the vt is a very specific and
+unique circumstance I'd say.
+
+Odd, historical, but there it is, why not handle it?
+
+3. ARM / Android case where certain files passed the read -r test, but failed
+with permission denied error. This tripped a further glitch where reader() would
+then try to work with the failed $fh, see bug 2. This was really more a fix
+than a bug, since the bug in this case was in android permissions tests, not
+inxi, but it appears to be a bug to end users, so it's handled now.
+
+4. Another ARM/Android, there was a voltage regulator IP that contained the term
+wlan so it tripped false positive for network match. Added a new type,
+regulator, to filter out those, like codec and dummy do already.
+
+5. For issue #254, fix for cygwin ERR-102 in partitions, add cygwin test, new
+dev type, 'windows', dev base then becomes E: or whatever. To avoid confusing D:
+for a key: with no value, added D:/ slash.
+
+6. Mint people discovered lspci issue, lspci -nnv has a bug where it will
+truncate the output of the first line per bus ID if it's over some arbitrary
+amount, then tack on rev and other items to end of that string, which leads to
+the block: [vendorID:productID] getting truncated or removed altogether. Clearly
+an oversight, at least I hope it's an oversight on lspci's part, but have to
+work around the issue anyway since it may never get fixed, and has been around a
+long time. Bug is in lspci 3.7, 3.6.4, and probably earlier.
+
+Also added in a fillin tool for this rare case, lspci -n data is used to replace
+the missing values.
+
+Note that while lspci recommends using -mmv, for machine parsing, apparently
+nobody noticed that -mmv doesn't have the same data items as -nnv, sigh.
+
+7. Issue #255 noted that the combination of:
+GoogleDrive Hogne: fuse.rclone 15728640
+which is two word remote fs AND a fs type with a '.' in it would fail to trip
+the handler for that multi word remote mount name. Also failed to detect as
+remote fs, added fs specific test since the actual mount name doesn't permit
+reliable detection as remote type. Testing for trailing ':' isn't safe since
+':' alone is not an invalid character in a file system name as far as I know.
+
+Further, this exposed that the ^^ space replacements for $row[0] fs > 1 word
+name were not being reset soon enough in the logic, that's also corrected.
+
+--------------------------------------------------------------------------------
+ENHANCEMENTS:
+
+1. Neglected to support standard package config file override
+/etc/inxi.d/inxi.conf item. This is mainly useful for packaged inxi's who want
+to override the distro maintainer /etc/inxi.conf file. Test priority is the same
+except /etc/inxi.d/inxi.conf comes right after /etc/inxi.conf now in the test
+sequence.
+
+2. Added basic cygwin id, yes, inxi works in cygwin, apparently, with some
+issues. Added cygwin os id to distro ids.
+
+3. Added --version info for debugger, sometimes we want to know what verion of
+a tool, like lspci, in case it has a bug or something.
+
+4. Added exfat and apfs to unmounted fs types.
+
+5. More disk vendors!! New vendor ID matches!! Yes, yes, you've heard it all
+before, the list never ends!! The eternal chaos of existence manifested in just
+how many IDs can be generated for new and old disk vendors alike!!!
+
+--------------------------------------------------------------------------------
+CHANGES:
+
+1. No changes this release.
+
+--------------------------------------------------------------------------------
+DOCUMENTATION:
+
+1. Pull request #253 corrected typos, urls, and other errors in man page,
+inxi/pinxi comments, pinxi.1/inxi.1, README.txt, and updated LICENSE.txt to
+current gnu wording.
+
+--------------------------------------------------------------------------------
+CODE:
+
+1. Forgot to add lspci debugger fake data option, that's corrected. That's
+--fake lspci, now works, didn't before, only the bsd pci tools had fake switches
+previously, since lspci never needs debugging really, but did now to test an
+issue report.
+
+2. Added -CYGWIN to debugger file name. Added -ANDROID if ARM and if android.
+
+3. With Fix 6, refactored entire lspci_data block, added lspci_n_data item,
+which matches bus id of lspci -nnv when corruption occurs and replaces vendor,
+product, and if also missing, rev version. I kind of knew I'd have to do this
+fix one day, that was the same fix logic used on the BSD pci tools, which have
+similar issues with consistency in output, or lack thereof.
+
+This refactor is long term very good because it avoids an entire class of
+possible errors, and makes pci detections far more robust.
+
+4. Created new repo, for legacy code, inxi-legacy. Moved branch inxi-c to
+inxi-legacy/xorg-c, moved branch xiin to /xiin, moved branch inxi-legacy (binxi)
+to inxi-legacy/inxi-legacy. Those directories each contain all the files each
+branch had in it.
+
+This gets rid of some branches clutter, and nobody needs to see those anymore,
+but if they care, they can look at them. Note that to do this, I had to merge
+their histories, which was not that nice, but git is just really bad at this
+type of stuff, so that's how it goes.
+
+Times like this really make me miss svn's directory based branch approach...
+
+5. Simplified sub fs_excludes, simplified regex constructors for all function
+that use this data, made list more fault tolerate by adding global (fs)?(\d{0,2}
+which means all file systems can have or not have 'fs' at end, and all can have
+or not have a version number in string.
+
+6. Exposed by issue #255, refactored slightly ordering of partition filter
+logics and variable resets in the df output processing loop.
+
+7. Added --fake partitions, to help debug odd corner cases like cygwin glitches.
+
+--------------------------------------------------------------------------------
+-- Harald Hope - Mon, 11 Oct 2021 19:01:15 -0700
+
+================================================================================
Version: 3.3.06
Patch: 00
-Date: 2021-07-19
+Date: 2021-07-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version! Fixes!! Bug fixes! More bug fixes!! Cleanups!
@@ -183,7 +377,7 @@ Version: 3.3.05
Patch: 00
Date: 2021-07-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Many small updates, enhancements, bug fixes!!! We've been saving them up!! Here
@@ -331,7 +525,7 @@ Version: 3.3.04
Patch: 00
Date: 2021-04-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Enhanced features!! Huge BSD upgrades! Bug Fixes!! Elbrus Fixes!! More bluetooth
@@ -884,7 +1078,7 @@ Version: 3.3.03
Patch: 00
Date: 2021-03-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bugs!! Fixes! Spring cleaning!
@@ -964,7 +1158,7 @@ Version: 3.3.02
Patch: 00
Date: 2021-03-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Huge upgrade!! Bug Fixes!! Refactors!!! BSDs!!! More BSDs!!! raspberry pi!! New
@@ -1392,7 +1586,7 @@ Version: 3.3.01
Patch: 00
Date: 2021-02-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes!! Fixes!!! Refactors!!! Edits!!!
@@ -1498,7 +1692,7 @@ Version: 3.3.00
Patch: 00
Date: 2021-01-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes!! New Feature!! Edits, cleanups!!
@@ -1602,7 +1796,7 @@ Version: 3.2.02
Patch: 00
Date: 2021-01-10
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page, bug fixes, changes, adjustments and cleanups!!!
@@ -1753,7 +1947,7 @@ Version: 3.2.01
Patch: 00
Date: 2020-12-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug Fixes!!! Continuing internal refactor!!
@@ -1815,7 +2009,7 @@ Version: 3.2.00
Patch: 00
Date: 2020-12-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Huge upgrade, major rewrite/refactor, new features, everything is polished!!!
@@ -2205,7 +2399,7 @@ Version: 3.1.09
Patch: 00
Date: 2020-11-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes, new features!! Update now!! Or don't, it's up to you.
@@ -2338,7 +2532,7 @@ Version: 3.1.08
Patch: 00
Date: 2020-10-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes, updates!!! Yes!! Why wait!!! Can't stay frozen forever!
@@ -2393,7 +2587,7 @@ Version: 3.1.07
Patch: 00
Date: 2020-09-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes, feature updates, changes!!
@@ -2463,7 +2657,7 @@ Version: 3.1.06
Patch: 00
Date: 2020-08-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New features, new changes, new bug fixes!!! Excitement!!! Thrills!!!
@@ -2592,7 +2786,7 @@ Version: 3.1.05
Patch: 00
Date: 2020-07-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fixes!!! New Features!! Why wait!!!
@@ -2661,7 +2855,7 @@ Version: 3.1.04
Patch: 00
Date: 2020-06-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man, huge update, bug fixes, cleanups, updates!!
@@ -2921,7 +3115,7 @@ Version: 3.1.03
Patch: 00
Date: 2020-06-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Big internal refactor!! Fully adjustable indentation logic, built in, native!
@@ -3079,13 +3273,13 @@ Version: 3.1.02
Patch: 00
Date: 2020-06-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Big change, cleanup, small bug fixes. Hot, grab it now!!
The new -y 1 feature exposed several small and larger glitches with how sets of
-data were constructed in inxi output. See UPDATES: for list of changes made to
+data were constructed in inxi output. See RELEASE NOTES: for list of changes made to
improve or fix these glitches.
These errors and minor output inconsistencies became very obvious when I was
@@ -3255,7 +3449,7 @@ Version: 3.1.01
Patch: 00
Date: 2020-05-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New inxi, man. New information types, fixes, man updates.
@@ -3312,7 +3506,7 @@ Version: 3.1.00
Patch: 00
Date: 2020-04-22
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New inxi, new man. Huge update, new line types, huge graphics upgrade, new
switches, bug fixes, glitch fixes, enhancements, you name it, this has got it!!
@@ -3500,7 +3694,7 @@ Version: 3.0.38
Patch: 00
Date: 2020-03-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page, exciting changes!!
@@ -3578,7 +3772,7 @@ Version: 3.0.37
Patch: 00
Date: 2019-11-19
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page, exciting changes!!
@@ -3659,7 +3853,7 @@ Version: 3.0.36
Patch: 00
Date: 2019-08-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, many small fixes.
@@ -3747,7 +3941,7 @@ Version: 3.0.35
Patch: 00
Date: 2019-07-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Bug fixes, updates.
@@ -3793,7 +3987,7 @@ Version: 3.0.34
Patch: 00
Date: 2019-04-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man, new feature!! Bug fixes!
@@ -3878,7 +4072,7 @@ Version: 3.0.33
Patch: 00
Date: 2019-03-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Weather explanations, disks, bugs!!
@@ -3924,7 +4118,7 @@ Version: 3.0.32
Patch: 00
Date: 2019-02-07
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. A few more modifications to weather.
@@ -3949,7 +4143,7 @@ Version: 3.0.31
Patch: 00
Date: 2019-02-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Big update! Get it in before your freeze!!
@@ -4036,7 +4230,7 @@ Version: 3.0.30
Patch: 00
Date: 2018-12-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page.
@@ -4101,7 +4295,7 @@ Version: 3.0.29
Patch: 00
Date: 2018-12-10
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, fixes, updates, missing specs.
@@ -4155,7 +4349,7 @@ Version: 3.0.28
Patch: 00
Date: 2018-11-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Fixes, enhancements.
@@ -4210,7 +4404,7 @@ Version: 3.0.27
Patch: 00
Date: 2018-10-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Fixes, stitches, and returns!!
@@ -4361,7 +4555,7 @@ Version: 3.0.26
Patch: 00
Date: 2018-09-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man.
@@ -4423,7 +4617,7 @@ Version: 3.0.25
Patch: 00
Date: 2018-09-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Huge set of changes. Excitement!! Thrills! Spills?
@@ -4578,7 +4772,7 @@ Version: 3.0.24
Patch: 00
Date: 2018-09-10
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Bug fix, enhancements, fixes.
@@ -4635,7 +4829,7 @@ Version: 3.0.23
Patch: 00
Date: 2018-09-07
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Fixes, enhancements, changes.
@@ -4790,7 +4984,7 @@ Version: 3.0.22
Patch: 00
Date: 2018-08-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Bug fixes, enhancements.
@@ -4866,7 +5060,7 @@ Version: 3.0.21
Patch: 00
Date: 2018-08-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Big set of changes. Full USB refactor, plus added
@@ -5050,7 +5244,7 @@ Version: 3.0.20
Patch: 00
Date: 2018-07-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. ARM enhancements and updates, -S data ongoing
@@ -5109,7 +5303,7 @@ Version: 3.0.19
Patch: 00
Date: 2018-07-23
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Fixes, glitches, and stitches!
@@ -5232,7 +5426,7 @@ Version: 3.0.18
Patch: 00
Date: 2018-07-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Fixes, a few changes, enhancements.
@@ -5285,7 +5479,7 @@ Version: 3.0.17
Patch: 00
Date: 2018-07-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Changes, bug fixes, enhancements! Don't delay!
@@ -5441,7 +5635,7 @@ Version: 3.0.16
Patch: 00
Date: 2018-07-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Several bug fixes, enhancements, options.
@@ -5529,7 +5723,7 @@ Version: 3.0.15
Patch: 00
Date: 2018-07-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Big bug fix, new features.
@@ -5607,7 +5801,7 @@ Version: 3.0.14
Patch: 00
Date: 2018-06-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Tiny bug fix, Ubuntu based distros only.
@@ -5628,7 +5822,7 @@ Version: 3.0.13
Patch: 00
Date: 2018-06-23
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. New features and fixes!
@@ -5717,7 +5911,7 @@ Version: 3.0.12
Patch: 00
Date: 2018-06-05
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version
@@ -5735,7 +5929,7 @@ Version: 3.0.11
Patch: 00
Date: 2018-06-04
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Features, bugs, fixes!
@@ -5820,7 +6014,7 @@ Version: 3.0.10
Patch: 00
Date: 2018-05-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page.
@@ -5908,7 +6102,7 @@ Version: 3.0.09
Patch: 00
Date: 2018-05-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Bug fixes, feature updates.
@@ -5995,7 +6189,7 @@ Version: 3.0.08
Patch: 00
Date: 2018-05-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. New features, bug fixes.
@@ -6066,7 +6260,7 @@ Version: 3.0.07
Patch: 00
Date: 2018-04-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Bug fixes. BSD fixes.
@@ -6104,7 +6298,7 @@ Version: 3.0.06
Patch: 00
Date: 2018-04-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. 2 bug fixes.
@@ -6125,7 +6319,7 @@ Version: 3.0.05
Patch: 00
Date: 2018-04-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Small new enhancements.
@@ -6171,7 +6365,7 @@ Version: 3.0.04
Patch: 00
Date: 2018-04-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Fixes several issues.
@@ -6198,7 +6392,7 @@ Version: 3.0.03
Patch: 00
Date: 2018-04-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. NBD network block device fixes
@@ -6224,7 +6418,7 @@ Version: 3.0.02
Patch: 00
Date: 2018-04-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man.
@@ -6254,7 +6448,7 @@ Version: 3.0.01
Patch: 00
Date: 2018-04-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Fine tunings.
@@ -6302,7 +6496,7 @@ Version: 3.0.00
Patch: 00
Date: 2018-04-09
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Beta / 2.9 testing completed.
@@ -6384,7 +6578,7 @@ Version: 2.9.12
Patch: 00
Date: 2018-04-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Finished up main man edits. Set new defaults for some
@@ -6407,7 +6601,7 @@ Version: 2.9.11
Patch: 00
Date: 2018-04-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Completed man edits.
@@ -6437,7 +6631,7 @@ Version: 2.9.10
Patch: 00
Date: 2018-03-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page. Major man page edits. Bug fixes.
@@ -6466,7 +6660,7 @@ Version: 2.9.09
Patch: 00
Date: 2018-03-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Bug fixes, new features, enhancements
@@ -6497,7 +6691,7 @@ Version: 2.9.08
Patch: 00
Date: 2018-03-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Bug fixes, feature/output tweaks.
@@ -6528,7 +6722,7 @@ Version: 2.9.07
Patch: 00
Date: 2018-03-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Bug fixes, feature tweaks.
@@ -6561,7 +6755,7 @@ Version: 2.9.06
Patch: 0
Date: 2018-03-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Very new man.
@@ -6614,7 +6808,7 @@ Version: 2.9.05
Patch: 00
Date: 2018-03-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Options changes
@@ -6638,7 +6832,7 @@ Version: 2.9.04
Patch: 00
Date: 2018-03-22
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man. Big update
@@ -6780,7 +6974,7 @@ Version: 2.9.03
Patch: 00
Date: 2018-03-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Updates:
@@ -6802,7 +6996,7 @@ Version: 2.9.02
Patch: 00
Date: 2018-03-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
First small patch fix, corrected a few issues, one for apt deb822 output
@@ -6828,7 +7022,7 @@ Version: 2.9.01
Patch: 00
Date: 2018-03-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New inxi, new man, new tarball.
@@ -6894,7 +7088,7 @@ Version: 2.3.56
Patch: 00
Date: 2018-02-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Maintainer alert: Perl inxi 2.9.01 is looking good for maybe early week of
@@ -6943,7 +7137,7 @@ Version: 2.3.56
Patch: 00
Date: 2018-02-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No real changes, this will probably be the very last Gawk->Bash inxi 2.3.x
@@ -6972,7 +7166,7 @@ Version: 2.3.56
Patch: 00
Date: 2018-02-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Small cleanup release, no new version. New tarball, just to make sure I have any
@@ -6986,7 +7180,7 @@ Version: 2.3.56
Patch: 00
Date: 2018-01-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added an important debugger output, lsusb -v
@@ -6999,7 +7193,7 @@ Version: 2.3.55
Patch: 00
Date: 2018-01-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. this is only for Manjaro, they seem to have not done the
@@ -7015,7 +7209,7 @@ Version: 2.3.54
Patch: 00
Date: 2018-01-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Significant albeit small fix to the debugger tool.
@@ -7031,7 +7225,7 @@ Version: 2.3.53
Patch: 00
Date: 2017-12-07
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. This should fix the Rizen multithreaded
@@ -7057,7 +7251,7 @@ Version: 2.3.52
Patch: 00
Date: 2017-12-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Maintainers, you can ignore this release, it's only a
@@ -7071,7 +7265,7 @@ Version: 2.3.51
Patch: 00
Date: 2017-11-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is an attempt at a fix for issue #129
@@ -7094,7 +7288,7 @@ Version: 2.3.50
Patch: 00
Date: 2017-11-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, bug fix for -R raid, zfs. Improved filters, clutter
@@ -7108,7 +7302,7 @@ Version: 2.3.49
Patch: 00
Date: 2017-11-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. This is the first attempt to correct an
@@ -7155,7 +7349,7 @@ Version: 2.3.48
Patch: 00
Date: 2017-11-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. No external changes, full reordering of internals to
@@ -7175,7 +7369,7 @@ Version: 2.3.47
Patch: 00
Date: 2017-11-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Bug fix for Curl, in some cases it may hit a redirect,
@@ -7190,7 +7384,7 @@ Version: 2.3.46
Patch: 00
Date: 2017-11-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added an optional downloader: Perl HTTP::Tiny
@@ -7247,7 +7441,7 @@ Version: 2.3.45
Patch: 00
Date: 2017-11-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Because it's kind of hard to read the per /sys sub
@@ -7262,7 +7456,7 @@ Version: 2.3.44
Patch: 00
Date: 2017-11-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added some critical debugger tools for ongoing issue #
@@ -7280,7 +7474,7 @@ Version: 2.3.43
Patch: 00
Date: 2017-10-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Small perl fix, nothing changes in output or function.
@@ -7293,7 +7487,7 @@ Version: 2.3.42
Patch: 00
Date: 2017-10-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Removed xiin references, fully switched to perl sys traverse tool and uploader.
@@ -7308,7 +7502,7 @@ Version: 2.3.41
Patch: 00
Date: 2017-10-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Updated the inxi upater options, removed some legacy
@@ -7335,7 +7529,7 @@ Version: 2.3.40
Patch: 00
Date: 2017-09-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. This is a small update, moved
@@ -7350,7 +7544,7 @@ Version: 2.3.39
Patch: 00
Date: 2017-09-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Small patch, no new version, new tarball. Fixed issue # 124 --recommends failed
@@ -7365,7 +7559,7 @@ Version: 2.3.39
Patch: 00
Date: 2017-09-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Bug fix. Debug data collector using Perl requires
@@ -7383,7 +7577,7 @@ Version: 2.3.38
Patch: 00
Date: 2017-09-07
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. This closes issue #122. Adds support for
@@ -7407,7 +7601,7 @@ Version: 2.3.37
Patch: 00
Date: 2017-08-23
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. Deprecated xiin uploader, which
@@ -7437,7 +7631,7 @@ Version: 2.3.36
Patch: 00
Date: 2017-08-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes issue #119
@@ -7461,7 +7655,7 @@ Version: 2.3.35
Patch: 00
Date: 2017-08-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed issue #120 where -z fails to anonymize serial
@@ -7477,7 +7671,7 @@ Version: 2.3.34
Patch: 00
Date: 2017-08-04
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Added to cpu microarch lists.
@@ -7490,7 +7684,7 @@ Version: 2.3.33
Patch: 00
Date: 2017-08-04
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This should finalize the mA / Wh conversion problems
@@ -7509,7 +7703,7 @@ Version: 2.3.32
Patch: 00
Date: 2017-08-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This closes issue #118, inxi had failed all along to
@@ -7529,7 +7723,7 @@ Version: 2.3.31
Patch: 00
Date: 2017-07-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. This corrects many 80 column width line wraps,
@@ -7555,7 +7749,7 @@ Version: 2.3.30
Patch: 00
Date: 2017-07-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. More optimizations, I'm not sure these will make a big
@@ -7570,7 +7764,7 @@ Version: 2.3.29
Patch:
Date: 2017-07-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. More optimizations, and fixed a bash 4 syntax
@@ -7588,7 +7782,7 @@ Version: 2.3.28
Patch: 00
Date: 2017-07-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes a subtle gawk issue that could in some
@@ -7604,7 +7798,7 @@ Version: 2.3.27
Patch: 00
Date: 2017-07-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. More cpu arch fixes, and added stepping/release
@@ -7623,7 +7817,7 @@ Version: 2.3.26
Patch: 00
Date: 2017-07-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. First attempt at adding cpu
@@ -7645,7 +7839,7 @@ Version: 2.3.25
Patch: 00
Date: 2017-07-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This fixes a bug where if there is a remote filesystem
@@ -7664,7 +7858,7 @@ Version: 2.3.24
Patch: 00
Date: 2017-07-23
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This corrects a case I'm seeing where wayland/mir are
@@ -7694,7 +7888,7 @@ Version: 2.3.23
Patch: 00
Date: 2017-06-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. Added support for Alpine Linux apk package
@@ -7708,7 +7902,7 @@ Version: 2.3.22
Patch: 00
Date: 2017-06-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Bug fix for GLX/OpenGL output. There was an unhandled case
@@ -7745,7 +7939,7 @@ Version: 2.3.21
Patch: 00
Date: 2017-06-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Fix for root graphics/desktop data when not available as
@@ -7762,7 +7956,7 @@ Version: 2.3.20
Patch: 00
Date: 2017-06-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. Added floppy disk support, basic, for -d. Fixed
@@ -7783,7 +7977,7 @@ Version: 2.3.19
Patch: 00
Date: 2017-06-10
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This version has some bug/edit fixes and a new distro id,
@@ -7799,7 +7993,7 @@ Version: 2.3.18
Patch: 00
Date: 2017-06-09
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. New option -! 34 - skip SSL certificate check on
@@ -7815,7 +8009,7 @@ Version: 2.3.17
Patch: 00
Date: 2017-06-09
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. Bug fix for issue #105, had core and compat
@@ -7834,7 +8028,7 @@ Version: 2.3.16
Patch: 00
Date: 2017-06-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Tiny change, new version, tarball. Tumbleweed distro id fix.
@@ -7847,7 +8041,7 @@ Version: 2.3.15
Patch: 00
Date: 2017-06-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. New option -! 40 which lets you get gfx
@@ -7871,7 +8065,7 @@ Version: 2.3.14
Patch: 00
Date: 2017-06-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This corrects an issue I noticed a while ago, glxinfo and
@@ -7891,7 +8085,7 @@ Version: 2.3.13
Patch: 00
Date: 2017-06-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. Shows as default OpenGL core profile version
@@ -7920,7 +8114,7 @@ Version: 2.3.12
Patch: 00
Date: 2017-06-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, man page, tarball. ARM cpu core count bug fix. First attempt to add
@@ -7961,7 +8155,7 @@ Version: 2.3.11
Patch: 00
Date: 2017-05-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. This corrects several oversights of the
@@ -7994,7 +8188,7 @@ Version: 2.3.10
Patch: 00
Date: 2017-05-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixes issue #78 and issue #106
@@ -8010,7 +8204,7 @@ Version: 2.3.9
Patch: 00
Date: 2017-05-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Tiny fix, due to a data bug, changing ft to m in weather
@@ -8029,7 +8223,7 @@ Version: 2.3.8
Patch: 00
Date: 2017-01-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Tiny change, added sisimedia video driver to support
@@ -8043,7 +8237,7 @@ Version: 2.3.7
Patch: 00
Date: 2016-12-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes an issue where sloppy regex was removing
@@ -8063,7 +8257,7 @@ Version: 2.3.6
Patch: 00
Date: 2016-12-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No new version. New tarball, man. Small text changes and cleanup and updates in
@@ -8078,7 +8272,7 @@ Version: 2.3.6
Patch: 00
Date: 2016-12-19
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is a significant change, but inxi should handle
@@ -8148,7 +8342,7 @@ Version: 2.3.5
Patch: 00
Date: 2016-12-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This will matter to some users, inxi had failed to add
@@ -8166,7 +8360,7 @@ Version: 2.3.4
Patch: 00
Date: 2016-11-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No new version, just fixed some unwanted executable bits in files.
@@ -8179,7 +8373,7 @@ Version: 2.3.4
Patch: 00
Date: 2016-11-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Squeezing in a last change for 2.3.4, added to -m if valid output, and if no -I
@@ -8193,7 +8387,7 @@ Version: 2.3.4
Patch: 00
Date: 2016-11-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This improves -D output, now capacity is on its own
@@ -8211,7 +8405,7 @@ Version: 2.3.3
Patch: 00
Date: 2016-10-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, updated man page.
@@ -8228,7 +8422,7 @@ Version: 2.3.3
Patch: 00
Date: 2016-10-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Extended support and tests for vm id to include better
@@ -8246,7 +8440,7 @@ Version: 2.3.2
Patch: 00
Date: 2016-10-23
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Version number unchanged, just added a vm possible id, will impact few users, if
@@ -8260,7 +8454,7 @@ Version: 2.3.2
Patch: 00
Date: 2016-10-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New feature, new tarball, new version number.
@@ -8283,7 +8477,7 @@ Version: 2.3.1
Patch: 00
Date: 2016-08-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Fixed typo in man page, no new version, just a fixed man page.
@@ -8296,7 +8490,7 @@ Version: 2.3.1
Patch: 00
Date: 2016-08-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page.
@@ -8319,7 +8513,7 @@ Version: 2.3.0
Patch: 00
Date: 2016-04-18
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New Feature, new version, new man page, new tarball. Laptop users should be
@@ -8352,7 +8546,7 @@ Version: 2.2.38
Patch: 00
Date: 2016-03-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
URGENT BUG FIX! This fixes a bug introduced in 2.2.36 2016-03-21. New version,
@@ -8371,7 +8565,7 @@ Version: 2.2.37
Patch: 00
Date: 2016-03-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Tiny fix in distro detection, will now default in
@@ -8388,7 +8582,7 @@ Version: 2.2.36
Patch: 00
Date: 2016-03-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. A tiny bug fix for kfreeBSD, I know, right, nobody
@@ -8405,7 +8599,7 @@ Version: 2.2.35
Patch: 00
Date: 2016-02-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. A tiny, but meaningful, fix. inxi had not been updated
@@ -8425,7 +8619,7 @@ Version: 2.2.34
Patch: 00
Date: 2016-02-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This closes two issues:
@@ -8445,7 +8639,7 @@ Version: 2.2.33
Patch: 00
Date: 2016-01-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, new tarball. Someone spotted a small glitch in -W help menu.
@@ -8460,7 +8654,7 @@ Version: 2.2.33
Patch: 00
Date: 2016-01-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Bug fix: added basic support for NVMe M2 disk storage
@@ -8486,7 +8680,7 @@ Version: 2.2.32
Patch: 00
Date: 2016-01-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Finalized the * expansion fix for arrays. This is a
@@ -8501,7 +8695,7 @@ Version: 2.2.31
Patch: 00
Date: 2015-12-29
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, new tarball.
@@ -8516,7 +8710,7 @@ Version: 2.2.31
Patch: 00
Date: 2015-11-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Try 2 at mmcblk support. I had mmcblock, thats not how
@@ -8530,7 +8724,7 @@ Version: 2.2.30
Patch: 00
Date: 2015-11-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added tentative support for /dev/blcmmc0p12 type
@@ -8544,7 +8738,7 @@ Version: 2.2.29
Patch: 00
Date: 2015-11-09
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. A subtle issue pointed out by a user, inxi is limited
@@ -8566,7 +8760,7 @@ Version: 2.2.28
Patch: 00
Date: 2015-08-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, new tarball. Man page link fixes, that's all.
@@ -8579,11 +8773,11 @@ Version: 2.2.28
Patch: 00
Date: 2015-08-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball:
-UPDATES: updated inxi updaters to use github locations.
+RELEASE NOTES: updated inxi updaters to use github locations.
I will do this commit once for googlecode, and once for github, after that,
all commits will go only to github.
@@ -8621,7 +8815,7 @@ Version: 2.2.27
Patch: 00
Date: 2015-08-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Trivial wget/curl change, nothing else. No need to upgrade
@@ -8635,7 +8829,7 @@ Version: 2.2.26
Patch: 00
Date: 2015-07-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes a bug with the last fix for KDE Plasma
@@ -8654,7 +8848,7 @@ Version: 2.2.25
Patch: 00
Date: 2015-06-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Same version, new tarball, I'm tossing this in with the other release, changing
@@ -8669,7 +8863,7 @@ Version: 2.2.25
Patch: 00
Date: 2015-06-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Got a good fix for the kde version issue from the lads
@@ -8687,7 +8881,7 @@ Version: 2.2.24
Patch: 00
Date: 2015-06-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Adapted to deal with yet another silly pointless
@@ -8771,7 +8965,7 @@ Version: 2.2.23
Patch: 00
Date: 2015-06-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Tiny change. Added /etc/devuan_version file to distro id
@@ -8788,7 +8982,7 @@ Version: 2.2.22
Patch: 00
Date: 2015-05-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page, new tarball. Modified slightly -tc and -tm output to
@@ -8813,7 +9007,7 @@ Version: 2.2.21
Patch: 00
Date: 2015-05-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. A desktop id fix, Mate id failed, mate moved to a more
@@ -8831,7 +9025,7 @@ Version: 2.2.20
Patch: 00
Date: 2015-05-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This fixes a qt5 glitch with Quassel id, hopefully anyway.
@@ -8844,7 +9038,7 @@ Version: 2.2.19
Patch: 00
Date: 2015-02-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, new tarball. Fixed the repo error message to be more
@@ -8859,7 +9053,7 @@ Version: 2.2.19
Patch: 00
Date: 2015-02-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, updated man page, new tarball. Updated -r to for portage gentoo
@@ -8882,7 +9076,7 @@ Version: 2.2.18
Patch: 00
Date: 2015-01-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Two great bug report, issues.
@@ -8906,7 +9100,7 @@ Version: 2.2.17
Patch: 00
Date: 2015-01-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New Version, new tarball.
@@ -8925,7 +9119,7 @@ Version: 2.2.16
Patch: 00
Date: 2014-11-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Very small update, added sddm id to dm detecfion. Because
@@ -8945,7 +9139,7 @@ Version: 2.2.15
Patch: 00
Date: 2014-10-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Debian has for some reason broken procps / uptime support,
@@ -8964,7 +9158,7 @@ Version: 2.2.14
Patch: 00
Date: 2014-09-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Bug fix for regression introduced in last versions.
@@ -8983,7 +9177,7 @@ Version: 2.2.13
Patch: 00
Date: 2014-09-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added slackpkgplus support, added freeBSD pkg servers,
@@ -8997,7 +9191,7 @@ Version: 2.2.12
Patch: 00
Date: 2014-09-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. For some weird reason rpm query didn't work with gawk
@@ -9012,7 +9206,7 @@ Version: 2.2.11
Patch: 00
Date: 2014-09-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes broken slackpkg handling in -r, and, using
@@ -9029,7 +9223,7 @@ Version: 2.2.10
Patch: 00
Date: 2014-09-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added slackpkg support -R; added rpm support for gtk
@@ -9048,7 +9242,7 @@ Version: 2.2.9
Patch: 00
Date: 2014-09-22
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is only for BSDs. Added hack to get dragonfly
@@ -9066,7 +9260,7 @@ Version: 2.2.8
Patch: 00
Date: 2014-09-21
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added lxqt desktop id that is not dependent on openbox
@@ -9083,7 +9277,7 @@ Version: 2.2.7
Patch: 00
Date: 2014-09-19
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Mostly BSD fixes, a few for linux disk info.
@@ -9104,7 +9298,7 @@ Version: 2.2.6
Patch: 00
Date: 2014-09-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Cleaned up and made more consistent the cpu max/min
@@ -9125,7 +9319,7 @@ Version: 2.2.5
Patch: 00
Date: 2014-09-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball, same version. This adds UP support for -Cxx, showing min cpu speed
@@ -9139,7 +9333,7 @@ Version: 2.2.5
Patch: 00
Date: 2014-09-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes a long standing weakness with min/max cpu
@@ -9171,7 +9365,7 @@ Version: 2.2.4
Patch: 00
Date: 2014-09-10
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Mostly BSD changes, except for downloader options,
@@ -9197,7 +9391,7 @@ Version: 2.2.3
Patch: 00
Date: 2014-09-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Contains a major bug fix for a regression introduced
@@ -9247,7 +9441,7 @@ Version: 2.2.2
Patch: 00
Date: 2014-09-01
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This version fixes an issue with a white space at the
@@ -9268,7 +9462,7 @@ Version: 2.2.1
Patch: 00
Date: 2014-08-20
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Some systems are showing a new xfce syntax in the xrop
@@ -9286,7 +9480,7 @@ Version: 2.2.00
Patch: 00
Date: 2014-08-18
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, man page. Maintainers, this is the official release of -m
@@ -9382,7 +9576,7 @@ Version: 2.1.98
Patch: 01
Date: 2014-08-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New patch version, new tarball. Another error case dataset, wrong cap, wrong max
@@ -9398,7 +9592,7 @@ Version: 2.1.98
Patch: 00
Date: 2014-08-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed bad assumption, DMI type 0 is not always before
@@ -9419,7 +9613,7 @@ Version: 2.1.97
Patch: 00
Date: 2014-08-16
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Another logic redo to handle a fringe case (dmidecode
@@ -9435,7 +9629,7 @@ Version: 2.1.96
Patch: 02
Date: 2014-08-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Forgot to remove debugger on switch.
@@ -9448,7 +9642,7 @@ Version: 2.1.96
Patch: 01
Date: 2014-08-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Small change, forgot to add -m to the debugger inxi output.
@@ -9461,7 +9655,7 @@ Version: 2.1.96
Patch: 00
Date: 2014-08-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. This version hopefully brings inxi
@@ -9486,7 +9680,7 @@ Version: 2.1.95
Patch: 04
Date: 2014-08-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New patch version, tarball. Fixed a few small oversights, more debugging added.
@@ -9501,7 +9695,7 @@ Version: 2.1.95
Patch: 01
Date: 2014-08-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Patch version, trying to fix a small glitch with gawk wanting to change integers
@@ -9517,7 +9711,7 @@ Version: 2.1.95
Patch: 00
Date: 2014-08-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Attempting to handle bad extra data for max module
@@ -9539,7 +9733,7 @@ Version: 2.1.94
Patch: 00
Date: 2014-08-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page, new tarball. Realized that I can on some systems also
@@ -9558,7 +9752,7 @@ Version: 2.1.93
Patch: 00
Date: 2014-08-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Fixed man page errors, improved man page explanations
@@ -9591,7 +9785,7 @@ Version: 2.1.92
Patch: 00
Date: 2014-08-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is closer to final release. Removed Bank/Slot
@@ -9616,7 +9810,7 @@ Version: 2.1.91
Patch: 00
Date: 2014-08-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is a transitional version, most -x/-xx/-xxx data
@@ -9633,7 +9827,7 @@ Version: 2.1.90
Patch: 00
Date: 2014-08-11
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. Finally, after all these years, initial
@@ -9660,7 +9854,7 @@ Version: 2.1.29
Patch: 00
Date: 2014-08-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, this only will impact ancient systems, cleans up a data error
@@ -9675,7 +9869,7 @@ Version: 2.1.29
Patch: 00
Date: 2014-08-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Big update/fix to -n/-i/-N. Now supports infiniband
@@ -9695,7 +9889,7 @@ Version: 2.1.28
Patch: 00
Date: 2014-05-05
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Adding tentative desktop id for LXQt, but I don't
@@ -9711,7 +9905,7 @@ Version: 2.1.27
Patch: 00
Date: 2014-05-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Should be almost no changes for linux platforms,
@@ -9749,7 +9943,7 @@ Version: 2.1.26
Patch: 00
Date: 2014-05-01
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Maintainer: this is only for BSD darwin (aka osx, it's
@@ -9768,7 +9962,7 @@ Version: 2.1.25
Patch: 00
Date: 2014-04-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, new tarball. On consideration, I'm not using temp3, that is
@@ -9783,7 +9977,7 @@ Version: 2.1.25
Patch: 00
Date: 2014-04-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This fixes a possible bug with using --total to
@@ -9802,7 +9996,7 @@ Version: 2.1.24
Patch: 00
Date: 2014-04-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Quick fix, new tarball, no new version. This fixes a -D size used error, if nfs,
@@ -9817,7 +10011,7 @@ Version: 2.1.24
Patch: 00
Date: 2014-04-28
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This is an attempt to make -s accurate more of the
@@ -9850,7 +10044,7 @@ Version: 2.1.23
Patch: 00
Date: 2014-04-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man. Found a pesky bug with false disk used
@@ -9870,7 +10064,7 @@ Version: 2.1.22
Patch: 00
Date: 2014-04-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Quick update to -D, now inxi uses the total partition swap space to calculate
@@ -9886,7 +10080,7 @@ Version: 2.1.22
Patch: 00
Date: 2014-04-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. A bug fix for btrfs, which does not internally use
@@ -9960,7 +10154,7 @@ Version: 2.1.21
Patch: 00
Date: 2014-04-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball, small update, added hopefully firewire support to drive type id.
@@ -9975,7 +10169,7 @@ Version: 2.1.21
Patch: 00
Date: 2014-04-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This fixes one small oversight, placing USB in front of
@@ -10004,7 +10198,7 @@ Version: 2.1.20
Patch: 00
Date: 2014-04-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
While this release has some new features, they are all intended for development
@@ -10029,7 +10223,7 @@ Version: 2.1.20
Patch: 00
Date: 2014-04-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
A few fixes to 2.1.20, bmips broke in some cases, that's fixed now. Also changed
@@ -10046,7 +10240,7 @@ Version: 2.1.20
Patch: 00
Date: 2014-04-08
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, ARM cpu /proc/cpuinfo has broken the bogomips output,
@@ -10061,7 +10255,7 @@ Version: 2.1.19
Patch: 00
Date: 2014-04-06
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball, correction of loop counts for -p/-P ID-<number>, this
@@ -10076,7 +10270,7 @@ Version: 2.1.18
Patch: 00
Date: 2014-04-04
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version/tarball. This completes, I think, the line wrap update. -o is now
@@ -10113,7 +10307,7 @@ Version: 2.1.17
Patch: 00
Date: 2014-04-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page, new tarball. Added -y [integer >= 80] option. This
@@ -10142,7 +10336,7 @@ Version: 2.1.16
Patch: 00
Date: 2014-04-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. This fix only impacts BSD sed, but it fixes the line
@@ -10165,7 +10359,7 @@ Version: 2.1.15
Patch: 00
Date: 2014-04-01
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version/tarball. This corrects some subtle issues with line wraps:
@@ -10188,7 +10382,7 @@ Version: 2.1.14
Patch: 00
Date: 2014-03-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Forgot, added slitaz-release to distros derived. that's as slackware derived
@@ -10202,7 +10396,7 @@ Version: 2.1.14
Patch: 00
Date: 2014-03-31
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version/tarball. Tiny fix in debugger, it turns out that in some systems,
@@ -10224,7 +10418,7 @@ Version: 2.1.13
Patch: 00
Date: 2014-03-30
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, only relevant to Porteus distro, a slackware derived distro, should
@@ -10238,7 +10432,7 @@ Version: 2.1.12
Patch: 00
Date: 2014-03-27
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, fixed zfs raid failure to report raid devices on some systems.
@@ -10253,7 +10447,7 @@ Version: 2.1.11
Patch: 00
Date: 2014-03-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Ignore change 2.1.12, the speed data was too inconsistent, using >>> since it's
@@ -10267,7 +10461,7 @@ Version: 2.1.12
Patch: 00
Date: 2014-03-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version: this is only an optimization release, testing some slightly more
@@ -10286,7 +10480,7 @@ Version: 2.1.11
Patch: 00
Date: 2014-03-26
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version: fixed an old bug, with -c 0, no colors, RED and NORMAL color codes
@@ -10301,7 +10495,7 @@ Version: 2.1.10
Patch: 00
Date: 2014-03-25
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version; added supybot/limnoria/gribble support. This only works when the
@@ -10318,7 +10512,7 @@ Version: 2.1.9
Patch: 00
Date: 2014-03-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, fixed cpu core speed wrapping, improved -p and -P wrapping, though
@@ -10332,7 +10526,7 @@ Version: 2.1.8
Patch: 00
Date: 2014-03-24
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Added dynamic wrapping to -G, and also am now wrapping -C per cpu
@@ -10352,7 +10546,7 @@ Version: 2.1.7
Patch: 00
Date: 2014-03-18
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, attempt 2 at detecting all possible syntaxes for cards. Now using
@@ -10382,7 +10576,7 @@ Version: 2.1.6
Patch: 00
Date: 2014-03-18
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, bug fix, adding 3D controller to output causes doubled card id in
@@ -10396,7 +10590,7 @@ Version: 2.1.5
Patch: 00
Date: 2014-03-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, serious bug fix, do NOT use 2.1.4, it will fail to start. Bad
@@ -10410,7 +10604,7 @@ Version: 2.1.4
Patch: 00
Date: 2014-03-17
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Some BSD fixes, and a more important fix, added 'display
@@ -10433,10 +10627,10 @@ Version: 2.1.3
Patch: 00
Date: 2014-03-15
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
-New version. Big set of UPDATES: changed all ver: and version: to v:; changed
+New version. Big set of RELEASE NOTES: changed all ver: and version: to v:; changed
all bash ${var} to $var where appropriate to avoid extra overhead of ${..};
removed 'basename' and replaced with ${path##*/} which avoids unnessary
subshells.
@@ -10470,7 +10664,7 @@ Version: 2.1.2
Patch: 00
Date: 2014-03-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, just added wrapper around tput cols so only use it if in
@@ -10484,7 +10678,7 @@ Version: 2.1.2
Patch: 00
Date: 2014-03-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version. Updated dynamic sizing, fixed some glitches in cpu flags, fixed
@@ -10499,7 +10693,7 @@ Version: 2.1.1
Patch: 00
Date: 2014-03-14
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New Version, new man. This continues the dyanamic line sizing, I'm doing these
@@ -10538,7 +10732,7 @@ Version: 2.1.0
Patch: 00
Date: 2014-03-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new man page. Finally, after all these years, dynamically resized
@@ -10554,7 +10748,7 @@ Version: 2.0.0
Patch: 00
Date: 2014-03-12
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New feature, not new line option though. Now shows init type with -x (also shows
@@ -10583,7 +10777,7 @@ Version: 1.9.19
Patch: 00
Date: 2014-03-03
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version; updated man page. Changed slightly the output for x server, in
@@ -10600,7 +10794,7 @@ Version: 1.9.18
Patch: 00
Date: 2014-01-13
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version; new tarball; new man page. Added Unity desktop support; added -xx
@@ -10620,7 +10814,7 @@ Version: 1.9.17
Patch: 00
Date: 2013-12-02
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed new gnome change, they, of course, removed
@@ -10649,7 +10843,7 @@ Version: 1.9.16
Patch: 00
Date: October 6 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Only for uprmq distros, small update to add support
@@ -10672,7 +10866,7 @@ Version: 1.9.15
Patch: 00
Date: October 4 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Added urpmq for -r.
@@ -10691,7 +10885,7 @@ Version: 1.9.14
Patch: 00
Date: September 10 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
This does not have a new version number (there is a new date), and is only for
@@ -10706,7 +10900,7 @@ Version: 1.9.14
Patch: 00
Date: August 20 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed a bug / issue with failed usb nic detection,
@@ -10721,7 +10915,7 @@ Version: 1.9.13
Patch: 00
Date: August 12 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed a bug in Xorg where it shows drivers as unloaded
@@ -10748,7 +10942,7 @@ Version: 1.9.12
Patch: 00
Date: July 2 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Tiny change, no new version, removed a stray 's' line 4306 that may have made
@@ -10763,7 +10957,7 @@ Version: 1.9.12
Patch: 00
Date: July 2 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Two new desktop/window managers added: spectrwm
@@ -10778,7 +10972,7 @@ Version: 1.9.11
Patch: 00
Date: June 19 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. The recent bug fixes reminded me to check for ARM
@@ -10798,7 +10992,7 @@ Version: 1.9.10
Patch: 00
Date: June 19 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Another stab at finally fixing the cpu / core count
@@ -10832,7 +11026,7 @@ Version: 1.9.9
Patch: 00
Date: June 16 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Added support for openSUSE repo syntax/location, as
@@ -10858,7 +11052,7 @@ Version: 1.9.8
Patch: 00
Date: June 14 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Some subtle bug fixes, a kvm virtual machine uses disk
@@ -10904,7 +11098,7 @@ Version: 1.9.7
Patch: 00
Date: May 25 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball, version, man page. Improved remote weather, now it uses -W, and
@@ -10928,7 +11122,7 @@ Version: 1.9.6
Patch: 00
Date: May 19 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Bug fix, overly loose regex removed na from country /
@@ -10942,7 +11136,7 @@ Version: 1.9.5
Patch: 00
Date: May 18 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed some lintian issues in man page, changed
@@ -10962,7 +11156,7 @@ Version: 1.9.04
Patch: 00
Date: May 17 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Fixed issue with spaces in names for cities / states /
@@ -10976,7 +11170,7 @@ Version: 1.9.03
Patch: 00
Date: May 17 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball, version, bug fixes on weather, also optimized speed for slow isps,
@@ -10993,7 +11187,7 @@ Version: 1.9.02
Patch: 00
Date: May 17 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, bug fix for weather.
@@ -11006,7 +11200,7 @@ Version: 1.9.01
Patch: 00
Date: May 17 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball, version. Bug fix on -! location=, forgot to have it pack its own
@@ -11020,7 +11214,7 @@ Version: 1.9.00
Patch: 00
Date: May 17 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. Unless disabled by distribution
@@ -11055,7 +11249,7 @@ Version: 1.8.47
Patch: 00
Date: May 3 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Made separators surround the partition id, that avoids
@@ -11070,7 +11264,7 @@ Version: 1.8.46
Patch: 00
Date: May 3 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. Fixed a small issue that would create a wrong reporting of
@@ -11097,7 +11291,7 @@ Version: 1.8.45
Patch: 00
Date: March 2 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, tarball. As always with fixes, one thing creates a bug in another.
@@ -11118,7 +11312,7 @@ Version: 1.8.44
Patch: 00
Date: February 28 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change, just added 'chipset' to banlist to filter out.
@@ -11131,7 +11325,7 @@ Version: 1.8.44
Patch: 00
Date: February 28 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This version brings the -A, -G, -N, -n, -i pci data to
@@ -11151,7 +11345,7 @@ Version: 1.8.43
Patch: 00
Date: February 28 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Improved B_ALLOW_UPDATES handling, now if set to
@@ -11181,7 +11375,7 @@ Version: 1.8.42
Patch: 00
Date: February 27 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, small bug fix, inxi failed to add in md raid partition size data to
@@ -11201,7 +11395,7 @@ Version: 1.8.41
Patch: 00
Date: February 27 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Small change, new tarball, added some excludes items to unmounted list, scd,
@@ -11215,7 +11409,7 @@ Version: 1.8.41
Patch: 00
Date: February 27 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, updated man page. A bug fix for an old time bug: with mdraid, -o
@@ -11235,7 +11429,7 @@ Version: 1.8.40
Patch: 00
Date: February 27 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, bug fix for mdraid, and cleaned up some errors and weak spots in
@@ -11251,7 +11445,7 @@ Version: 1.8.39
Patch: 00
Date: February 27 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, updated man page. Completed zfs raid support for BSDs, now include
@@ -11272,7 +11466,7 @@ Version: 1.8.38
Patch: 00
Date: February 18 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, updated man page, new tarball.
@@ -11311,7 +11505,7 @@ Version: 1.8.37
Patch: 00
Date: February 11 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New tarball. Tiny fix for an obscure fringe case, leaving numbering as is.
@@ -11328,7 +11522,7 @@ Version: 1.8.37
Patch: 00
Date: February 11 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. This update fixes a recent bug report with ancient
@@ -11361,7 +11555,7 @@ Version: 1.8.36
Patch: 00
Date: February 8 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Cleaned up patch number sed cleanup that didn't work
@@ -11375,7 +11569,7 @@ Version: 1.8.36
Patch: 00
Date: February 8 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. All bug fixes and cleanup preparing to support BSD
@@ -11409,7 +11603,7 @@ Version: 1.8.35
Patch: 00
Date: February 7 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Note, this is a refactor release only, and features
@@ -11441,7 +11635,7 @@ Version: 1.8.34
Patch: 00
Date: January 28 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page.
@@ -11458,7 +11652,7 @@ Version: 1.8.33
Patch: 00
Date: January 28 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball, new man page. Fixed an old bug where if you start inxi
@@ -11484,7 +11678,7 @@ Version: 1.8.32
Patch: 00
Date: January 23 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Small changes to man page, updated copyright date, added a patch contributor.
@@ -11497,7 +11691,7 @@ Version: 1.8.32
Patch: 00
Date: January 23 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
No version change. New tarball, updated man page.
@@ -11512,7 +11706,7 @@ Version: 1.8.32
Patch: 00
Date: January 23 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Disabled -U in irc clients, with an exit error
@@ -11526,7 +11720,7 @@ Version: 1.8.31
Patch: 00
Date: January 23 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New version, new tarball. Fixed overly verbose output for --version/-V in irc.
@@ -11551,7 +11745,7 @@ Version: 1.8.30
Patch: 00
Date: January 22 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Changing compression of inxi.1.gz to gzip -9 to fit lintian tests. This won't
@@ -11565,7 +11759,7 @@ Version: 1.8.30
Patch: 00
Date: January 22 2013
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
New Version, new tarball. Added inxi.changelog to tarball as well.
@@ -11591,7 +11785,7 @@ Script Version: 1.8.29
Patch: 00
Date: January 21 2012
--------------------------------------------------------------------------------
-UPDATES:
+RELEASE NOTES:
--------------------------------------------------------------------------------
Bug fix, new version, new tarball.