mirror of https://github.com/aristocratos/bpytop
parent
a1316d4d33
commit
57778eee03
|
@ -1,5 +1,11 @@
|
|||
# Changelog
|
||||
|
||||
## v1.0.62
|
||||
|
||||
* Fixed: Support cpus with non-sequential core ids, patch by @ErwinJunge
|
||||
* Added: New theme Adapta, by @olokelo
|
||||
* Changed: Net graphs will now round up any value above 0 to register on graph
|
||||
|
||||
## v1.0.61
|
||||
|
||||
* Added: Vim keys (h, j, k, l) for browsing and moved help to shift+h
|
||||
|
|
|
@ -55,7 +55,7 @@ if errors:
|
|||
print("\nInstall required modules!\n")
|
||||
raise SystemExit(1)
|
||||
|
||||
VERSION: str = "1.0.61"
|
||||
VERSION: str = "1.0.62"
|
||||
|
||||
#? Argument parser ------------------------------------------------------------------------------->
|
||||
args = argparse.ArgumentParser()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bpytop"
|
||||
version = "1.0.61"
|
||||
version = "1.0.62"
|
||||
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||
readme = "README.md"
|
||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||
|
|
Loading…
Reference in New Issue