summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Hennion <nicolas@nicolargo.com>2014-01-11 17:36:12 +0100
committerNicolas Hennion <nicolas@nicolargo.com>2014-01-11 17:36:12 +0100
commit5178873092da0085f851c82807864662b8395541 (patch)
tree6592520a396d5570398834eabcf57bfe371f893d
parent71c8ed2ce1f4e54b195520458c1486a737eb748e (diff)
Update file for Glances 1.7.4 RC1
-rw-r--r--NEWS12
-rw-r--r--TODO2
-rw-r--r--glances/glances.py2
-rw-r--r--man/glances.14
-rwxr-xr-xsetup.py4
5 files changed, 14 insertions, 10 deletions
diff --git a/NEWS b/NEWS
index 65257243..9b069502 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,16 @@
Version 1.7.4
=============
- * Add threads number in the task summary line
+ * Add threads number in the task summary line (#308)
* Add system uptime (#276)
- * You can hide disk from the IOdisk view using the conf file
+ * Add CPU steal % to cpu extended stats (#309)
+ * You can hide disk from the IOdisk view using the conf file (#304)
* You can hide network interface from the Network view using the conf file
- * Optimisation of CPU consumption ~10%
- * ...
+ * Optimisation of CPU consumption (around ~10%)
+ * Correct issue #314: Client/server mode always asks for password
+ * Correct issue #315: Defining password in client/server mode doesn't work as intended
+ * Correct issue #316: Crash in client server mode
+ * Correct issue #318: Argument parser, try-except blocks never get triggered
Version 1.7.3
=============
diff --git a/TODO b/TODO
index 05ff639d..df4fed4f 100644
--- a/TODO
+++ b/TODO
@@ -1 +1 @@
-See open issues here: https://github.com/nicolargo/glances/issues?milestone=&page=1&state=open
+See open issues here: https://github.com/nicolargo/glances/issues?milestone=&page=1&state=open \ No newline at end of file
diff --git a/glances/glances.py b/glances/glances.py
index 3cdb3be2..07cfd542 100644
--- a/glances/glances.py
+++ b/glances/glances.py
@@ -19,7 +19,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
__appname__ = 'glances'
-__version__ = "1.7.4_BETA"
+__version__ = "1.7.4_RC1"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL"
diff --git a/man/glances.1 b/man/glances.1
index ae7d5466..aca27247 100644
--- a/man/glances.1
+++ b/man/glances.1
@@ -1,9 +1,9 @@
-.TH glances 1 "December, 2013" "version 1.7.3" "USER COMMANDS"
+.TH glances 1 "January, 2014" "version 1.7.4" "USER COMMANDS"
.SH NAME
glances \- A cross-platform curses-based monitoring tool
.SH SYNOPSIS
.B glances
-[\-bdehmnrsvyz1] [\-B bind] [\-c server] [\-C conffile] [\-f file] [\-o output] [\-p port] [\-P password] [\-t refresh]
+[\-bdehmnrsvyz1] [\-B bind] [\-c server] [\-C conffile] [\-p port] [\-P password] [--password] [\-t refresh] [\-f file] [\-o output]
.SH DESCRIPTION
Glances is a free (LGPL) cross-platform curses-based monitoring tool which aims to present a maximum of information
in a minimum of space, ideally to fit in a classical 80x24 terminal or higher to have additionnal information.
diff --git a/setup.py b/setup.py
index ba318636..3fd8f47b 100755
--- a/setup.py
+++ b/setup.py
@@ -33,13 +33,13 @@ else:
setup(
name='Glances',
- version='1.7.3',
+ version='1.7.4',
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-1.7.3.tar.gz',
+ # download_url='https://s3.amazonaws.com/glances/glances-1.7.4.tar.gz',
license="LGPL",
keywords="cli curses monitoring system",
install_requires=requires,