From 6265763896ad45a9fb5166c69127de113f91cf4b Mon Sep 17 00:00:00 2001 From: Nicolas Hennion Date: Thu, 6 Sep 2012 13:39:54 +0200 Subject: version 1.4.1.1 --- NEWS | 5 +++++ glances/glances.py | 5 ++++- setup.py | 4 ++-- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 318cf3c4..04c9149a 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,8 @@ +Version 1.4.1.1 +=============== + + * Minor patch to disable Process IO for OS X (not available in PsUtil) + Version 1.4.1 ============= diff --git a/glances/glances.py b/glances/glances.py index 4083bf6f..e44cd77a 100755 --- a/glances/glances.py +++ b/glances/glances.py @@ -22,7 +22,7 @@ from __future__ import generators __appname__ = 'glances' -__version__ = "1.4.1" +__version__ = "1.4.1.1" __author__ = "Nicolas Hennion " __licence__ = "LGPL" @@ -1631,6 +1631,9 @@ class glancesScreen: tag_proc_time = True if screen_x > process_x + 97: tag_io = True + + if not psutil_get_io_counter_tag: + tag_io = False # VMS self.term_window.addnstr( diff --git a/setup.py b/setup.py index ed57eac1..a10708bd 100755 --- a/setup.py +++ b/setup.py @@ -23,8 +23,8 @@ for mo in glob('i18n/*/LC_MESSAGES/*.mo'): data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo])) setup(name='Glances', - version='1.4.1', - download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.1.tar.gz', + version='1.4.1.1', + download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.1.1.tar.gz', url='https://github.com/nicolargo/glances', description='CLI curses-based monitoring tool', author='Nicolas Hennion', -- cgit v1.2.3