Compare commits

...

3 Commits

Author SHA1 Message Date
nicolargo
2d2d71d81f Security alert on ujson < 5.4 2022-12-21 13:56:54 +01:00
nicolargo
2c9ff45b16 The open-web-browser option was missing dashes #2219 2022-12-21 13:52:07 +01:00
nicolargo
25fa4c6536 Correct regexp in glances.conf file example 2022-12-21 09:35:33 +01:00
5 changed files with 590 additions and 507 deletions

View File

@ -214,7 +214,7 @@ critical=-85
disable=False
# Define the list of hidden disks (comma-separated regexp)
#hide=sda2,sda5,loop.*
hide=loop.*,/dev/loop*
hide=loop.*,/dev/loop.*
# Define the list of disks to be show (comma-separated)
#show=sda.*
# Alias for sda1

File diff suppressed because it is too large Load Diff

View File

@ -174,7 +174,7 @@ Command-Line Options
set the server cache time [default: 1 sec]
.. option:: open-web-browser
.. option:: --open-web-browser
try to open the Web UI in the default Web browser

View File

@ -27,7 +27,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" "Nov 20, 2022" "3.3.1_beta1" "Glances"
.TH "GLANCES" "1" "Dec 21, 2022" "3.3.1_beta1" "Glances"
.SH NAME
glances \- An eye on your system
.SH SYNOPSIS

View File

@ -5,4 +5,4 @@ future; python_version < "3.0"
ujson<3; python_version < "3.0"
ujson<4; python_version >= "3.5" and python_version < "3.6"
ujson<5; python_version >= "3.6" and python_version < "3.7"
ujson; python_version >= "3.7"
ujson>=5.4.0; python_version >= "3.7"