version 4.4.1

This commit is contained in:
nicolargo 2025-11-03 14:47:16 +01:00
parent de6fae584e
commit ff5e33d856
5 changed files with 4627 additions and 827 deletions

View File

@ -2,6 +2,14 @@
Glances ChangeLog Glances ChangeLog
============================================================================== ==============================================================================
=============
Version 4.4.1
=============
Bug corrected:
* Restful API issue after a while (stats are no more updated) #3333
============= =============
Version 4.4.0 Version 4.4.0
============= =============

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -28,7 +28,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]] .\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u .in \\n[rst2man-indent\\n[rst2man-indent-level]]u
.. ..
.TH "GLANCES" "1" "Nov 02, 2025" "4.4.0" "Glances" .TH "GLANCES" "1" "Nov 03, 2025" "4.4.1" "Glances"
.SH NAME .SH NAME
glances \- An eye on your system glances \- An eye on your system
.SH SYNOPSIS .SH SYNOPSIS

View File

@ -20,7 +20,7 @@ import tracemalloc
# Version should start and end with a numerical char # Version should start and end with a numerical char
# See https://packaging.python.org/specifications/core-metadata/#version # See https://packaging.python.org/specifications/core-metadata/#version
# Examples: 1.0.0, 1.0.0rc1, 1.1.0_dev1 # Examples: 1.0.0, 1.0.0rc1, 1.1.0_dev1
__version__ = "4.4.0" __version__ = "4.4.1"
__apiversion__ = '4' __apiversion__ = '4'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>' __author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3' __license__ = 'LGPLv3'