summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2017-05-26 16:14:23 +0200
committernicolargo <nicolas@nicolargo.com>2017-05-26 16:14:23 +0200
commit2c9e939637fa351988b31c58d9b7bf9101178115 (patch)
tree1fe9a3ae7b2bda13c33593d96aba240f17d19d9a
parent6d333b5e4ae9cbbecf990a41843c9ff2a303e37d (diff)
Update doc for Glances 2.10
-rw-r--r--NEWS14
-rw-r--r--README.rst1
-rw-r--r--docs/man/glances.12
-rw-r--r--glances/__init__.py2
4 files changed, 13 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 41c944a1..0b268a49 100644
--- a/NEWS
+++ b/NEWS
@@ -2,15 +2,17 @@
Glances Version 2
==============================================================================
-Version 2.9.2
-=============
+Version 2.10
+============
Enhancements and new features:
* New plugin to scan remote Web sites (URL) (issue #981)
- * Use -> and <- arrows keys to switch between processing sort (issue #1075)
* Add trends in the Curses interface (issue #1077)
* Add new repeat function to the action (issue #952)
+ * Use -> and <- arrows keys to switch between processing sort (issue #1075)
+ * Refactor __init__ and main scripts (issue #1050)
+ * [WebUI] Improve WebUI for Windows 10 (issue #1052)
Bugs corrected:
@@ -21,6 +23,12 @@ Bugs corrected:
* No Offline status for timeouted ports? (issue #1084)
* When exporting, uptime values loop after 1 day (issue #1092)
+Installation:
+
+ * Create a package.sh script to generate .DEB, .RPM and others... (issue #722)
+ ==> https://github.com/nicolargo/glancesautopkg
+ * OSX: can't python setup.py install due to python 3.5 constraint (issue #1064)
+
Version 2.9.1
=============
diff --git a/README.rst b/README.rst
index ad52eb5b..a2d05505 100644
--- a/README.rst
+++ b/README.rst
@@ -378,7 +378,6 @@ LGPLv3. See ``COPYING`` for more details.
.. _psutil: https://github.com/giampaolo/psutil
.. _glancesautoinstall: https://github.com/nicolargo/glancesautoinstall
.. _@nicolargo: https://twitter.com/nicolargo
-.. _@glances_system: https://twitter.com/glances_system
.. _Python: https://www.python.org/getit/
.. _Termux: https://play.google.com/store/apps/details?id=com.termux
.. _readthedocs: https://glances.readthedocs.io/
diff --git a/docs/man/glances.1 b/docs/man/glances.1
index 20623c29..8e4bf72f 100644
--- a/docs/man/glances.1
+++ b/docs/man/glances.1
@@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
-.TH "GLANCES" "1" "Apr 10, 2017" "2.9.2_DEVELOP" "Glances"
+.TH "GLANCES" "1" "May 26, 2017" "2.10" "Glances"
.SH NAME
glances \- An eye on your system
.
diff --git a/glances/__init__.py b/glances/__init__.py
index f72b6542..85942d5f 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -27,7 +27,7 @@ import signal
import sys
# Global name
-__version__ = '2.9.2_DEVELOP'
+__version__ = '2.10'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'