summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolargo <nicolas@nicolargo.com>2017-02-06 18:12:58 +0100
committerNicolargo <nicolas@nicolargo.com>2017-02-06 18:12:58 +0100
commita0b05348cd3330e902dd8d1215b3bb4fcd5a55d6 (patch)
tree75eeefec7a5aef49ca054b43654bb193179e2f10
parentcba157654575dd6951a5db62a5e5466e64269822 (diff)
version 2.8.1v2.8.1
-rw-r--r--NEWS6
-rw-r--r--docs/gw/index.rst1
-rw-r--r--docs/man/glances.12
-rw-r--r--docs/quickstart.rst3
-rw-r--r--glances/__init__.py2
5 files changed, 11 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 09e11fb4..e8979281 100644
--- a/NEWS
+++ b/NEWS
@@ -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
===========
diff --git a/docs/gw/index.rst b/docs/gw/index.rst
index fb372ccc..af454e96 100644
--- a/docs/gw/index.rst
+++ b/docs/gw/index.rst
@@ -11,6 +11,7 @@ to providing stats to multiple services (see list below).
csv
cassandra
+ couchdb
elastic
influxdb
opentsdb
diff --git a/docs/man/glances.1 b/docs/man/glances.1
index e897c292..1e5f583d 100644
--- a/docs/man/glances.1
+++ b/docs/man/glances.1
@@ -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
.
diff --git a/docs/quickstart.rst b/docs/quickstart.rst
index 7c75e3cd..b72643a9 100644
--- a/docs/quickstart.rst
+++ b/docs/quickstart.rst
@@ -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
^^^^
diff --git a/glances/__init__.py b/glances/__init__.py
index 2d06da77..d0a7f8cf 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -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'