v1.0.60 New features and bug fixes

pull/259/head v1.0.60
aristocratos 2021-01-23 02:12:39 +01:00
parent 66ec752e8c
commit 90ecedbf1b
4 changed files with 18 additions and 7 deletions

View File

@ -1,5 +1,16 @@
# Changelog
## v1.0.60
* Added: Ignore input unicode decode errors
* Fixed: Wrong letter in "io" highlighted
* Fixed: Crash on missing psutil.disk_usage
* Added: Toggle for IO graphs in regular disk usage mode
* Added: Toggle for uptime and uptime added as a option for the clock formatting
* Added: Ability choose cpu graph attributes and split up upper and lower part
* Added: Ability to toggle one big CPU graph instead of two combined graphs
* Added: IP address to net box
## v1.0.59
* Fixed: Crash on missing disks

View File

@ -55,7 +55,7 @@ if errors:
print("\nInstall required modules!\n")
raise SystemExit(1)
VERSION: str = "1.0.59"
VERSION: str = "1.0.60"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()

10
poetry.lock generated
View File

@ -54,7 +54,7 @@ marker = "python_version < \"3.8\""
name = "importlib-metadata"
optional = false
python-versions = ">=3.6"
version = "3.3.0"
version = "3.4.0"
[package.dependencies]
zipp = ">=0.5"
@ -64,8 +64,8 @@ python = "<3.8"
version = ">=3.6.4"
[package.extras]
docs = ["sphinx", "jaraco.packaging (>=3.2)", "rst.linker (>=1.9)"]
testing = ["pytest (>=3.5,<3.7.3 || >3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "jaraco.test (>=3.2.0)", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"]
docs = ["sphinx", "jaraco.packaging (>=8.2)", "rst.linker (>=1.9)"]
testing = ["pytest (>=3.5,<3.7.3 || >3.7.3)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pytest-cov", "pytest-enabler", "packaging", "pep517", "pyfakefs", "flufl.flake8", "pytest-black (>=0.3.7)", "pytest-mypy", "importlib-resources (>=1.3)"]
[[package]]
category = "dev"
@ -298,8 +298,8 @@ colorama = [
{file = "colorama-0.4.4.tar.gz", hash = "sha256:5941b2b48a20143d2267e95b1c2a7603ce057ee39fd88e7329b0c292aa16869b"},
]
importlib-metadata = [
{file = "importlib_metadata-3.3.0-py3-none-any.whl", hash = "sha256:bf792d480abbd5eda85794e4afb09dd538393f7d6e6ffef6e9f03d2014cf9450"},
{file = "importlib_metadata-3.3.0.tar.gz", hash = "sha256:5c5a2720817414a6c41f0a49993908068243ae02c1635a228126519b509c8aed"},
{file = "importlib_metadata-3.4.0-py3-none-any.whl", hash = "sha256:ace61d5fc652dc280e7b6b4ff732a9c2d40db2c0f92bc6cb74e07b73d53a1771"},
{file = "importlib_metadata-3.4.0.tar.gz", hash = "sha256:fa5daa4477a7414ae34e95942e4dd07f62adf589143c875c133c1e53c4eff38d"},
]
iniconfig = [
{file = "iniconfig-1.1.1-py2.py3-none-any.whl", hash = "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3"},

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
version = "1.0.59"
version = "1.0.60"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]