提交 62657638 编写于 作者: N Nicolas Hennion

version 1.4.1.1

上级 256b51b6
Version 1.4.1.1
===============
* Minor patch to disable Process IO for OS X (not available in PsUtil)
Version 1.4.1 Version 1.4.1
============= =============
......
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
from __future__ import generators from __future__ import generators
__appname__ = 'glances' __appname__ = 'glances'
__version__ = "1.4.1" __version__ = "1.4.1.1"
__author__ = "Nicolas Hennion <nicolas@nicolargo.com>" __author__ = "Nicolas Hennion <nicolas@nicolargo.com>"
__licence__ = "LGPL" __licence__ = "LGPL"
...@@ -1631,6 +1631,9 @@ class glancesScreen: ...@@ -1631,6 +1631,9 @@ class glancesScreen:
tag_proc_time = True tag_proc_time = True
if screen_x > process_x + 97: if screen_x > process_x + 97:
tag_io = True tag_io = True
if not psutil_get_io_counter_tag:
tag_io = False
# VMS # VMS
self.term_window.addnstr( self.term_window.addnstr(
......
...@@ -23,8 +23,8 @@ for mo in glob('i18n/*/LC_MESSAGES/*.mo'): ...@@ -23,8 +23,8 @@ for mo in glob('i18n/*/LC_MESSAGES/*.mo'):
data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo])) data_files.append((dirname(mo).replace('i18n/', 'share/locale/'), [mo]))
setup(name='Glances', setup(name='Glances',
version='1.4.1', version='1.4.1.1',
download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.1.tar.gz', download_url='https://github.com/downloads/nicolargo/glances/glances-1.4.1.1.tar.gz',
url='https://github.com/nicolargo/glances', url='https://github.com/nicolargo/glances',
description='CLI curses-based monitoring tool', description='CLI curses-based monitoring tool',
author='Nicolas Hennion', author='Nicolas Hennion',
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册