mirror of https://github.com/nicolargo/glances.git
version 4.3.1
This commit is contained in:
parent
91fa4bf200
commit
7cfc0c7aa6
31
NEWS.rst
31
NEWS.rst
|
|
@ -2,6 +2,37 @@
|
|||
Glances ChangeLog
|
||||
============================================================================
|
||||
|
||||
=============
|
||||
Version 4.3.1
|
||||
=============
|
||||
|
||||
Enhancements:
|
||||
|
||||
* [WebUI] Top processes extended stats and processes filter in Web server mode #410
|
||||
* I'd like a feature to make the forground color for colored background white #3119
|
||||
* -disable-bg in ~/.config/glances.conf #3113
|
||||
* Entry point in the API to get extended process stats #3095
|
||||
* Replace netifaces by netifaces-plus dependencies #3053
|
||||
* Replace docker by containers in glances-grafana-flux.json #3118
|
||||
|
||||
Bug corrected:
|
||||
|
||||
* default_config_dir: Fix config path to include glances/ directory #3106
|
||||
* Cannot set warning/critical temperature for a specific sensor needs test #3102
|
||||
* Try to reduce latency between stat's update and view - #3086
|
||||
* Error on Cloud plugin initialisation make TUI crash #3085
|
||||
|
||||
Continious integration:
|
||||
|
||||
* Add Selenium to test WebUI #3044
|
||||
|
||||
Thanks to all contributors and bug reporters !
|
||||
|
||||
Special thanks to:
|
||||
- Alexander Kuznetsov
|
||||
- Jonathan Chemla
|
||||
- mizulike
|
||||
|
||||
===============
|
||||
Version 4.3.0.8
|
||||
===============
|
||||
|
|
|
|||
680
docs/api.rst
680
docs/api.rst
File diff suppressed because it is too large
Load Diff
|
|
@ -28,7 +28,7 @@ level margin: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
|||
.\" new: \\n[rst2man-indent\\n[rst2man-indent-level]]
|
||||
.in \\n[rst2man-indent\\n[rst2man-indent-level]]u
|
||||
..
|
||||
.TH "GLANCES" "1" "Jan 26, 2025" "4.3.1_dev09" "Glances"
|
||||
.TH "GLANCES" "1" "Mar 22, 2025" "4.3.1" "Glances"
|
||||
.SH NAME
|
||||
glances \- An eye on your system
|
||||
.SH SYNOPSIS
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ import tracemalloc
|
|||
# Global name
|
||||
# Version should start and end with a numerical char
|
||||
# See https://packaging.python.org/specifications/core-metadata/#version
|
||||
__version__ = "4.3.1_dev09"
|
||||
__version__ = "4.3.1"
|
||||
__apiversion__ = '4'
|
||||
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
|
||||
__license__ = 'LGPLv3'
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
name: glances
|
||||
version: '4.3.0.8+build01' # Put the current stable version+buildXX
|
||||
version: '4.3.1+build01' # Put the current stable version+buildXX
|
||||
|
||||
summary: Glances an Eye on your system. A top/htop alternative.
|
||||
description: |
|
||||
|
|
|
|||
Loading…
Reference in New Issue