diff --git a/NEWS.rst b/NEWS.rst index b0f33bc4ccb850a2b4acbf057441f07c0fd4eee7..bb83c4316e9a366e5bb0fd0dc4a094c02d44a96b 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -2,6 +2,13 @@ Glances Version 3 ============================================================================== +Version 3.1.6.2 +=============== + +Bugs corrected: + + * Remove bad merge for a non tested feature(see https://github.com/nicolargo/glances/issues/1787#issuecomment-774682954) + Version 3.1.6.1 =============== diff --git a/docs/man/glances.1 b/docs/man/glances.1 index a23fc394a202776cfb28655f50f20567d2011e2e..ff3ca005112b90d5e04d40509b96a571a72a0d2d 100644 --- a/docs/man/glances.1 +++ b/docs/man/glances.1 @@ -1,6 +1,6 @@ .\" Man page generated from reStructuredText. . -.TH "GLANCES" "1" "Jan 24, 2021" "3.1.6.1" "Glances" +.TH "GLANCES" "1" "Feb 07, 2021" "3.1.6.2" "Glances" .SH NAME glances \- An eye on your system . diff --git a/glances/__init__.py b/glances/__init__.py index 1b3af1fd8cac4af04b053fcb6487deae87cc6acf..896694793b7a678d65c6bd87599c02c54084c20b 100644 --- a/glances/__init__.py +++ b/glances/__init__.py @@ -29,7 +29,7 @@ import sys # Global name # Version should start and end with a numerical char # See https://packaging.python.org/specifications/core-metadata/#version -__version__ = '3.1.6.1' +__version__ = '3.1.6.2' __author__ = 'Nicolas Hennion ' __license__ = 'LGPLv3' diff --git a/glances/plugins/glances_diskio.py b/glances/plugins/glances_diskio.py index 3fe6654349eb0c5764db70cfa1a95c59c575104f..9ac1e4ec259604189725a9b62af5dde7cf0d43eb 100644 --- a/glances/plugins/glances_diskio.py +++ b/glances/plugins/glances_diskio.py @@ -53,7 +53,8 @@ class Plugin(GlancesPlugin): # We want to display the stat in the curse interface self.display_curse = True # Hide stats if it has never been != 0 - self.hide_zero = True + self.hide_zero = config.get_bool_value( + self.plugin_name, 'hide_zero', default=False) self.hide_zero_fields = ['read_bytes', 'write_bytes'] def get_key(self): diff --git a/glances/plugins/glances_network.py b/glances/plugins/glances_network.py index 2adf3653a85f2314f84fb052e088b9a4ce331978..75e77c9db5c68c8ae4d4ba8358377aaff946a6a1 100644 --- a/glances/plugins/glances_network.py +++ b/glances/plugins/glances_network.py @@ -62,7 +62,8 @@ class Plugin(GlancesPlugin): # We want to display the stat in the curse interface self.display_curse = True # Hide stats if it has never been != 0 - self.hide_zero = True + self.hide_zero = config.get_bool_value( + self.plugin_name, 'hide_zero', default=False) self.hide_zero_fields = ['rx', 'tx'] def get_key(self):