Bumped version to 1.1.0.

Updated NEWS file.
Clarified a message for self-test log entry count.
This commit is contained in:
Alexander Shaduri
2017-09-07 12:43:38 +00:00
parent 5192a9d447
commit be66a8749c
3 changed files with 22 additions and 2 deletions
+20
View File
@@ -1,3 +1,23 @@
Version 1.1.0, released on 2017-09-07
New Statistics, Temperature Log, Error Recovery, Physical and Directory
tabs.
General tab shows non-SMART device settings as well.
Attributes tab shows entries in "brief" format.
Error Log tab shows Extended error log by default (if supported).
Self-Test Log tab now shows Extended self-test log by default (if
supported).
GSmartControl now uses "-x" equivalent for retrieving data (as upposed to
"-a"); loading "-x" outputs as virtual drives is also supported.
Implemented ability to copy rows in CSV format from Attribute, Statistics
and Self-Test Log tables.
Implemented "Update Drive Database" functionality.
Windows: Drive letters are shown for each drive.
Scan time is shown under virtual drive icons.
Polkit is supported with gsmartcontrol-root script now.
Pcrecpp is no longer bundled, use system-installed one instead.
Smartmontools version 5.43 is required at runtime.
Other minor improvements and fixes.
Version 1.0.2, released on 2017-07-21
Fixed incomplete capturing of smartctl output under Windows.
Added missing icons under Windows.
+1 -1
View File
@@ -1,5 +1,5 @@
AC_INIT([GSmartControl],[1.0.3],[],[gsmartcontrol])
AC_INIT([GSmartControl],[1.1.0],[],[gsmartcontrol])
AC_CONFIG_SRCDIR([configure.ac])
AC_CONFIG_HEADERS([config.h])
@@ -1627,7 +1627,7 @@ bool storage_property_autoset_description(StorageProperty& p, StorageAttribute::
case StorageProperty::subsection_selftest_log:
found = auto_set(p, "selftest_log_version", p.readable_name.c_str());
found = auto_set(p, "selftest_num_entries", "Number of tests in selftest log. Note: This log usually contains only the last 20 or so manual tests. ");
found = auto_set(p, "selftest_num_entries", "Number of tests in selftest log. Note: The number of entries may be limited to the newest manual tests.");
// || auto_set(p, "selftest_log_unsupported", "This device does not support self-test logging."); // the property text already says that
break;