summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolargo <nicolas@nicolargo.com>2015-09-18 15:31:18 +0200
committerNicolargo <nicolas@nicolargo.com>2015-09-18 15:31:18 +0200
commitc1ff999c09c26f1fc2ead0dd621c848bac7c417f (patch)
tree0e68dfd61791259c09c18cd259d7c0557556520c
parentd8ea5eed4f7da2c3e79c62dfddab14fb09b4ce34 (diff)
Glances 2.5 RC1
-rw-r--r--NEWS20
-rw-r--r--glances/__init__.py2
-rw-r--r--requirements.txt2
-rwxr-xr-xsetup.py4
4 files changed, 23 insertions, 5 deletions
diff --git a/NEWS b/NEWS
index 11990f0d..6b3f6755 100644
--- a/NEWS
+++ b/NEWS
@@ -13,17 +13,35 @@ Enhancements and new features:
* Add support for OpenTSDB export (issue #638)
* Add additional stats (iowait, steal) to the perCPU plugin (issue #672)
* Support Fahrenheit unit in the sensor plugin using the --fahrenheit command line option (issue #620)
+ * When a process filter is set, display sum of CPU, MEM... (issue #681)
* Improve the QuickLookplugin by adding hardware CPU info (issue #673)
* WebUI display a message if server is not available (issue #564)
* Display an error if export is not used in the standalone/client mode (issue #614)
* New --disable-quicklook, --disable-cpu, --disable-mem, --disable-swap, --disable-load tags (issue #631)
* Complete refactoring of the WebUI thanks to the (awesome) Floran pull (issue #656)
* Network cumulative /combination feature available in the WebUI (issue #552)
+ * IRIX mode off implementation (issue#628)
+ * Short process name displays arguments (issue #609)
+ * Server password configuration for the browser mode (issue #500)
+ * Display an error if export is not used in the standalone/client mode (issue #614)
Bugs corrected:
- * Crach with Docker plugin (issue #649)
* The WebUI displays bad sensors stats (issue #632)
+ * Filter processes crashs with a bad regular expression pattern (issue #665)
+ * Error with IP plugin (issue #651)
+ * Crach with Docker plugin (issue #649)
+ * Docker plugin crashs with webserver mode (issue #654)
+ * Infrequently crashing due to assert (issue #623)
+ * Value for free disk space is counterintuative on ext file systems (issue #644)
+ * Try/catch for unexpected psutil.NoSuchProcess: process no longer exists (issue #432)
+ * Fatal error using Python 3.4 and Docker plugin bug (issue #602)
+ * Add missing new line before g man option (issue #595)
+ * Remove unnecessary type="text/css" for link (HTML5) (issue #595)
+ * Correct server mode issue when no network interface is available (issue #528)
+ * Avoid crach on olds kernels (issue #554)
+ * Avoid crashing if LC_ALL is not defined by user (issue #517)
+ * Add a disable HDD temperature option on the command line (issue #515)
Version 2.4.2
diff --git a/glances/__init__.py b/glances/__init__.py
index 9d6954eb..1cc4f5e2 100644
--- a/glances/__init__.py
+++ b/glances/__init__.py
@@ -20,7 +20,7 @@
"""Init the Glances software."""
__appname__ = 'glances'
-__version__ = '2.5beta'
+__version__ = '2.5RC1'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPL'
diff --git a/requirements.txt b/requirements.txt
index 914d2457..0ec81332 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1 @@
-psutil==2.2.1
+psutil==3.2.1
diff --git a/setup.py b/setup.py
index 0338b4f0..e5ee64cd 100755
--- a/setup.py
+++ b/setup.py
@@ -33,13 +33,13 @@ def get_requires():
setup(
name='Glances',
- version='2.4.2',
+ version='2.5',
description="A cross-platform curses-based monitoring tool",
long_description=open('README.rst').read(),
author='Nicolas Hennion',
author_email='nicolas@nicolargo.com',
url='https://github.com/nicolargo/glances',
- # download_url='https://s3.amazonaws.com/glances/glances-2.4.2.tar.gz',
+ # download_url='https://s3.amazonaws.com/glances/glances-2.5.tar.gz',
license="LGPL",
keywords="cli curses monitoring system",
install_requires=get_requires(),