From be66a8749c8748baa6d28edb3cc7fff7041e313c Mon Sep 17 00:00:00 2001 From: Alexander Shaduri Date: Thu, 7 Sep 2017 12:43:38 +0000 Subject: [PATCH] Bumped version to 1.1.0. Updated NEWS file. Clarified a message for self-test log entry count. --- gsmartcontrol/NEWS | 20 +++++++++++++++++++ gsmartcontrol/configure.ac | 2 +- .../src/applib/storage_property_descr.cpp | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/gsmartcontrol/NEWS b/gsmartcontrol/NEWS index 1666a12..c6cd161 100644 --- a/gsmartcontrol/NEWS +++ b/gsmartcontrol/NEWS @@ -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. diff --git a/gsmartcontrol/configure.ac b/gsmartcontrol/configure.ac index 5d0be20..3c29d1d 100644 --- a/gsmartcontrol/configure.ac +++ b/gsmartcontrol/configure.ac @@ -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]) diff --git a/gsmartcontrol/src/applib/storage_property_descr.cpp b/gsmartcontrol/src/applib/storage_property_descr.cpp index de1ac88..7701ba2 100644 --- a/gsmartcontrol/src/applib/storage_property_descr.cpp +++ b/gsmartcontrol/src/applib/storage_property_descr.cpp @@ -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;