summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Hennion <nicolas@nicolargo.com>2013-03-23 21:14:24 +0100
committerNicolas Hennion <nicolas@nicolargo.com>2013-03-23 21:14:24 +0100
commitd22907ef8db0797fd9ecf78998855f5708a2c593 (patch)
tree4be09f73782e67b0b583225a90a7640d6aea7ac2
parent2a50b5f9ab41138491ee74dd243eeae576d95291 (diff)
version 1.6.1v1.6.1
-rw-r--r--NEWS11
-rw-r--r--glances/glances.py2
-rw-r--r--i18n/fr/LC_MESSAGES/glances.po2
-rw-r--r--man/glances.12
-rwxr-xr-xsetup.py4
5 files changed, 14 insertions, 7 deletions
diff --git a/NEWS b/NEWS
index d7d139ce..8740262a 100644
--- a/NEWS
+++ b/NEWS
@@ -1,11 +1,18 @@
Version 1.6.1
=============
- * Add per-user settings support
+ * Add per-user settings (configuration file) support
* Add -z/--nobold option for better appearence under Solarized terminal
- * Correct a bug on the CPU process limit
+ * Key 'u' shows cumulative net traffic
+ * Work in improving autoUnit
* Take into account the number of core in the CPU process limit
+ * API improvment add time_since_update for disk, process_disk and network
+ * Improve help display
+ * Add more dummy FS to the ignore list
* Code refactory: PsUtil < 0.4.1 is depredicated (Thk to Alessio)
+ * Correct a bug on the CPU process limit
+ * Fix crash bug when specifying custom server port
+ * Add Debian style init script for the Glances server
Version 1.6
===========
diff --git a/glances/glances.py b/glances/glances.py
index 2de48d5e..0c06ac6a 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.6.1a"
+__version__ = "1.6.1"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL"
diff --git a/i18n/fr/LC_MESSAGES/glances.po b/i18n/fr/LC_MESSAGES/glances.po
index f06efd61..6ac3ae7d 100644
--- a/i18n/fr/LC_MESSAGES/glances.po
+++ b/i18n/fr/LC_MESSAGES/glances.po
@@ -6,7 +6,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: GLANCES 1.6\n"
+"Project-Id-Version: GLANCES 1.6.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-17 17:04+0100\n"
"PO-Revision-Date: 2012-01-06 15:23+0100\n"
diff --git a/man/glances.1 b/man/glances.1
index 9a704bfe..9cce7c07 100644
--- a/man/glances.1
+++ b/man/glances.1
@@ -1,4 +1,4 @@
-.TH glances 1 "January, 2013" "version 1.6" "USER COMMANDS"
+.TH glances 1 "January, 2013" "version 1.6.1" "USER COMMANDS"
.SH NAME
glances \- CLI curses based monitoring tool
.SH SYNOPSIS
diff --git a/setup.py b/setup.py
index 619be1ad..17161fc1 100755
--- a/setup.py
+++ b/setup.py
@@ -30,8 +30,8 @@ for mo in glob.glob('i18n/*/LC_MESSAGES/*.mo'):
setup(
name='Glances',
- version='1.6.1a',
- download_url='https://s3.amazonaws.com/glances/glances-1.6.1a.tar.gz',
+ version='1.6.1',
+ download_url='https://s3.amazonaws.com/glances/glances-1.6.1.tar.gz',
url='https://github.com/nicolargo/glances',
description='CLI curses-based monitoring tool',
author='Nicolas Hennion',