version 1.4.1.1

pull/81/merge v1.4.1.1
Nicolas Hennion 2012-09-06 13:39:54 +02:00
parent 256b51b642
commit 6265763896
3 changed files with 11 additions and 3 deletions

5
NEWS
View File

@ -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
=============

View File

@ -22,7 +22,7 @@
from __future__ import generators
__appname__ = 'glances'
__version__ = "1.4.1"
__version__ = "1.4.1.1"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL"
@ -1632,6 +1632,9 @@ class glancesScreen:
if screen_x > process_x + 97:
tag_io = True
if not psutil_get_io_counter_tag:
tag_io = False
# VMS
self.term_window.addnstr(
self.process_y + 2, process_x,

View File

@ -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',