summaryrefslogtreecommitdiffstats
path: root/inxi.changelog
diff options
context:
space:
mode:
authorLibravatarUnit 193 <unit193@ubuntu.com>2014-05-01 14:14:14 -0400
committerLibravatarUnit 193 <unit193@ubuntu.com>2014-05-01 14:14:14 -0400
commit332044fd929174f69f5d3a24fb53ead10486ba96 (patch)
treefcdd0090eb2c0f50b28ce74c26d31a5fbd81f504 /inxi.changelog
parent84e3d0adcff642974711a8b379d2e102e64aa659 (diff)
downloadinxi-332044fd929174f69f5d3a24fb53ead10486ba96.tar.bz2
inxi-332044fd929174f69f5d3a24fb53ead10486ba96.tar.xz
inxi-332044fd929174f69f5d3a24fb53ead10486ba96.tar.zst
Imported Upstream version 2.1.25upstream/2.1.25
Diffstat (limited to 'inxi.changelog')
-rwxr-xr-xinxi.changelog230
1 files changed, 230 insertions, 0 deletions
diff --git a/inxi.changelog b/inxi.changelog
index 5f7878a..9ba1e0e 100755
--- a/inxi.changelog
+++ b/inxi.changelog
@@ -1,4 +1,234 @@
=====================================================================================
+Version: 2.1.25
+Patch Version: 00
+Script Date: 2014-04-28
+-----------------------------------
+Changes:
+-----------------------------------
+no version change, new tarball. On consideration, I'm not using temp3, that is simply
+not reliable enough and leads I think to more false readings than right ones.
+
+-----------------------------------
+-- Harald Hope - Mon, 28 Apr 2014 14:47:41 -0700
+
+=====================================================================================
+Version: 2.1.25
+Patch Version: 00
+Script Date: 2014-04-28
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball. This fixes a possible bug with using --total to calculate disk
+used percentage, there are too many possible remote file systems to safely exclude, so
+sticking with using the test that partition is /dev mounted.
+
+Howeve, did add excludes of nfs/smbfs types, as well as future bsd excludes of those.
+
+-----------------------------------
+-- Harald Hope - Mon, 28 Apr 2014 14:23:39 -0700
+
+=====================================================================================
+Version: 2.1.24
+Patch Version: 00
+Script Date: 2014-04-28
+-----------------------------------
+Changes:
+-----------------------------------
+Quick fix, new tarball, no new version. This fixes a -D size used error, if nfs, nfs4, smbfs
+are mounted, inxi included those in the disk space used, creating insane used errors.
+
+-----------------------------------
+-- Harald Hope - Mon, 28 Apr 2014 14:12:50 -0700
+
+=====================================================================================
+Version: 2.1.24
+Patch Version: 00
+Script Date: 2014-04-28
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball. This is an attempt to make -s accurate more of the time,
+particularly with fringe or broken sensors outputs. See inxi issue 58 for details.
+http://code.google.com/p/inxi/issues/detail?id=58
+
+Added temp3, and an override to capture cases where temp3 is the actual cpu temp.
+
+Added PECI overrides for cases like msi/asus mobos have defective CPUTIN return data.
+
+Added core0 overrides as well, for cases where the temp returned is too low.
+
+It is absolutely 100% guaranteed that these changes will break some outputs that were
+working, but it's also certain that I believe that more wrong outputs will be corrected.
+
+With sensors, really the only way you can get reliable sensors is to use the lm-sensors
+config files for your motherboard, then set: CPU: temp and MB: temp explicitly.
+
+inxi will always use CPU: or MB: to override anything found.
+
+-----------------------------------
+-- Harald Hope - Mon, 28 Apr 2014 13:17:53 -0700
+
+=====================================================================================
+Version: 2.1.23
+Patch Version: 00
+Script Date: 2014-04-27
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball, new man. Found a pesky bug with false disk used results.
+
+It turns out I'd neglected to include /dev/disk partitions, oops, in the df data.
+
+Since this is a long time bug, it warrants a new release even though I just did
+2.1.22.
+
+-----------------------------------
+-- Harald Hope - Sun, 27 Apr 2014 15:55:20 -0700
+
+=====================================================================================
+Version: 2.1.22
+Patch Version: 00
+Script Date: 2014-04-27
+-----------------------------------
+Changes:
+-----------------------------------
+Quick update to -D, now inxi uses the total partition swap space to calculate the
+disk used percentage as well. Since swap space is not available as disk space, it
+makes sense to me to count it as used. -P/-p show the percent of swap used as well.
+
+-----------------------------------
+-- Harald Hope - Sun, 27 Apr 2014 14:41:06 -0700
+
+=====================================================================================
+Version: 2.1.22
+Patch Version: 00
+Script Date: 2014-04-27
+-----------------------------------
+Changes:
+-----------------------------------
+New version, new tarball. A bug fix for btrfs, which does not internally use /dev/sdx[number]
+to identify a partition, but rather the basic /dev/sdc for example.
+
+This made -D show wrong disk used percentage.
+
+Also, I added --total for df that have that supported, there is however an oddity which you
+can see here:
+
+df --total -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs \
+--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
+--exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
+awk 'BEGIN {total=0} !/total/ {total = total + $4 }END {print total}'
+result:
+614562236
+
+df --total -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs \
+--exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
+--exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
+awk 'BEGIN {total=0} /^total/ {total = total + $4 }END {print total}'
+
+result:
+614562228
+
+ df -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs \
+ --exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs --exclude-type=procfs \
+ --exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs --exclude-type=unionfs | \
+ awk 'BEGIN {total=0} {total = total + $4 }END {print total}'
+
+ result:
+ 614562236
+
+ In my tests, using --total gives a greater disk user percentage than adding the results
+ up manually, as inxi did before, and still does for systems without --total for df.
+
+ df --total -P -T --exclude-type=aufs --exclude-type=devfs --exclude-type=devtmpfs \
+ --exclude-type=fdescfs --exclude-type=iso9660 --exclude-type=linprocfs \
+ --exclude-type=procfs --exclude-type=squashfs --exclude-type=sysfs --exclude-type=tmpfs \
+ --exclude-type=unionfs
+
+Filesystem Type 1024-blocks Used Available Capacity Mounted on
+/dev/disk/by-label/root-data ext3 12479556 12015624 335816 98% /
+/dev/sdc9 ext3 20410156 18013360 1979432 91% /home
+/dev/sdc7 ext3 4904448 3785460 1016672 79% /media/sdb2
+/dev/sdc5 ext3 30382896 27467220 2295720 93% /var/www/m
+/dev/sdc8 ext3 61294356 41849300 18196972 70% /home/me/1
+/dev/sdb1 ext3 307532728 285159432 20810456 94% /home/me/2
+/dev/sdd1 ext3 26789720 18153076 7542620 71% /home/me/3
+/dev/sdd2 ext3 213310776 206932912 2040960 100% /home/me/4
+/dev/sda7 ext3 10138204 1185772 8434348 13% /home/me/5
+total - 687242840 614562156 62652996 91% -
+
+Strange, no? the data is in blocks, and it should of course in theory add up to exactly the
+same thing. However, because --total lets df do the math, I'm going to use that for now,
+unless someone can show it's not good.
+
+inxi still falls back for bsds and older df to the standard method.
+-----------------------------------
+-- Harald Hope - Sun, 27 Apr 2014 12:49:06 -0700
+
+=====================================================================================
+Version: 2.1.21
+Patch Version: 00
+Script Date: 2014-04-24
+-----------------------------------
+Changes:
+-----------------------------------
+New tarball, small update, added hopefully firewire support to drive type id.
+
+That's searching for ieee1394- hopefully that will do it.
+
+-----------------------------------
+-- Harald Hope - Thu, 24 Apr 2014 13:22:51 -0700
+
+=====================================================================================
+Version: 2.1.21
+Patch Version: 00
+Script Date: 2014-04-24
+-----------------------------------
+Changes:
+-----------------------------------
+New version, tarball. This fixes one small oversight, placing USB in front of ID-[x]
+of disk drive lists. Was showing USB ID-1: /dev/sde now shows: ID-1: USB /dev/sde
+that is more intuitive and keeps the columns in alignment more or less, easier
+to read.
+
+Second, fixes a bug with some file systems / usb drives
+where they do not use usb- in the /dev/disk/by-id line but only wwn-
+https://access.redhat.com/site/documentation/en
+-US/Red_Hat_Enterprise_Linux/5/html/Online_Storage_Reconfiguration_Guide/persistent_naming.html
+explains it somewhat.
+
+the fix is adding a second if null test of the device /dev/sdx in by-path, that seems
+to fix the issue. by-path does have the usb- item, though it does not have the name
+so it's not as reliable in absolute terms, but it's fine as a second step fallback
+option.
+
+-----------------------------------
+-- Harald Hope - Thu, 24 Apr 2014 11:47:08 -0700
+
+=====================================================================================
+Version: 2.1.20
+Patch Version: 00
+Script Date: 2014-04-08
+-----------------------------------
+Changes:
+-----------------------------------
+While this release has some new features, they are all intended for development use
+for the next major feature, -m / memory, so there is no particular reason to package
+this release. There is a new development option, -! 33, which lets me override /sys
+data use for -M, which is useful to debug dmidecode output for -m and other features.
+
+No new version, new man. There may be a few more of these releases, but functionally
+there is no particular reason to make a new package if you are a maintainer, so there
+is no new version number. This release is a preparation for some branches/one/inxi
+tests that will be run in the future.
+
+The man/help document -! 33 just to have it there, but it should make no difference
+to anyone but me at this stage.
+
+-----------------------------------
+-- Harald Hope - Mon, 14 Apr 2014 13:31:24 -0700
+
+=====================================================================================
Version: 2.1.20
Patch Version: 00
Script Date: 2014-04-08