mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-25 10:12:55 +03:00
version 1.4.1.1
This commit is contained in:
parent
256b51b642
commit
6265763896
5
NEWS
5
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
|
||||
=============
|
||||
|
||||
|
@ -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"
|
||||
|
||||
@ -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(
|
||||
|
4
setup.py
4
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',
|
||||
|
Loading…
Reference in New Issue
Block a user