version 2.8.1

This commit is contained in:
Nicolargo 2017-02-06 18:12:58 +01:00
parent cba1576545
commit a0b05348cd
5 changed files with 11 additions and 3 deletions

6
NEWS
View File

@ -5,6 +5,10 @@ Glances Version 2
Version 2.8.1
=============
Enhancements and new features:
* Enable docker plugin on Windows (issue #1009) - Thanks to @fraoustin
Bugs corrected:
* Glances export issue with CPU and SENSORS (issue #1024)
@ -12,7 +16,9 @@ Bugs corrected:
* Autodiscover error while binding on IPv6 addresses (issue #1002)
* GPU plugin is display when hitting '4' or '5' shortkeys (issue #1012)
* Interrupts and usb_fiq (issue #1007)
* Docker image does not work in web server mode! (issue #1017)
* IRQ plugin is not display anymore (issue #1013)
* Autodiscover error while binding on IPv6 addresses (issue #1002)
Version 2.8
===========

View File

@ -11,6 +11,7 @@ to providing stats to multiple services (see list below).
csv
cassandra
couchdb
elastic
influxdb
opentsdb

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "GLANCES" "1" "Jan 28, 2017" "2.8.1_DEVELOP" "Glances"
.TH "GLANCES" "1" "Feb 06, 2017" "2.8.1" "Glances"
.SH NAME
glances \- An eye on your system
.

View File

@ -97,7 +97,8 @@ To start the central client, use the following option:
client$ glances --browser
.. note::
Use ``--disable-autodiscover`` to disable the auto discovery mode.
Use ``--disable-autodiscover`` to disable the auto discovery mode.
SNMP
^^^^

View File

@ -27,7 +27,7 @@ import signal
import sys
# Global name
__version__ = '2.8.1_DEVELOP'
__version__ = '2.8.1'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'