version 3.2.3

This commit is contained in:
nicolargo 2021-08-14 17:05:47 +02:00
parent c4bb0af8fe
commit 0e7919eaa0
6 changed files with 536 additions and 508 deletions

View File

@ -6,9 +6,19 @@
Version 3.2.3
===============
Under development, see roadmap here:
Bugs corrected:
https://github.com/nicolargo/glances/milestone/52
* Docker container monitoring only show half command? #1912
* Processor name getting cut off #1917
* batinfo not in docker image (and in requirements files...) ? #1915
* Glances don't send hostname (tag) to influxdb2 #1913
* Public IP address doesn't display anymore #1910
* Debian Docker images broken with version 3.2.2 #1905
Enhancement requests:
* Make the process sort list configurable through the command line #1903
* [WebUI] truncates network name #1699
===============
Version 3.2.2

View File

@ -171,6 +171,9 @@ tx_critical=90
#wlan0_tx_critical=1000000
#wlan0_tx_log=True
[ip]
disable=False
[connections]
# Display additional information about TCP connections
# This plugin is disabled by default

File diff suppressed because one or more lines are too long

Before

Width:  |  Height:  |  Size: 179 KiB

After

Width:  |  Height:  |  Size: 210 KiB

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
.\" Man page generated from reStructuredText.
.
.TH "GLANCES" "1" "Aug 01, 2021" "3.2.3_beta1" "Glances"
.TH "GLANCES" "1" "Aug 14, 2021" "3.2.3" "Glances"
.SH NAME
glances \- An eye on your system
.

View File

@ -29,7 +29,7 @@ import sys
# Global name
# Version should start and end with a numerical char
# See https://packaging.python.org/specifications/core-metadata/#version
__version__ = '3.2.3_beta1'
__version__ = '3.2.3'
__author__ = 'Nicolas Hennion <nicolas@nicolargo.com>'
__license__ = 'LGPLv3'