summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-01-23 02:12:39 +0100
committeraristocratos <gnmjpl@gmail.com>2021-01-23 02:12:39 +0100
commit90ecedbf1ba3ea7560b457b3abbd346d7b05e4e7 (patch)
tree98d0c18afdc72a13a846536597ffda62115b672c
parent66ec752e8cbcf6d32438faed1fd6bfebc71c6d6c (diff)
v1.0.60 New features and bug fixesv1.0.60
-rw-r--r--CHANGELOG.md11
-rwxr-xr-xbpytop.py2
-rw-r--r--poetry.lock10
-rw-r--r--pyproject.toml2
4 files changed, 18 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f83af2a..334fb8c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/bpytop.py b/bpytop.py
index cff8062..86995ee 100755
--- a/bpytop.py
+++ b/bpytop.py
@@ -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()
diff --git a/poetry.lock b/poetry.lock
index 5694a0f..88559b8 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -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"},
diff --git a/pyproject.toml b/pyproject.toml
index bf312a2..36f982c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -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>"]