mirror of https://github.com/aristocratos/bpytop
parent
95b0076445
commit
17fad3d834
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
|||
# Changelog
|
||||
|
||||
## v1.0.17
|
||||
|
||||
* Added: Option to toggle theme background color
|
||||
* Added: Dracula theme by @AethanFoot
|
||||
* Added: PyPi theme install and path detection
|
||||
* Added: PyPi packaging with poetry by @cjolowicz
|
||||
* Added: Error checking for net_download and net_upload config values
|
||||
* Added: psutil outdated warning message
|
||||
* Changed: Expanded cpu name detection
|
||||
|
||||
## v1.0.16
|
||||
|
||||
* Fixed: net_upload variable not working
|
||||
|
|
|
@ -56,7 +56,7 @@ if errors:
|
|||
print("\nInstall required modules!\n")
|
||||
raise SystemExit(1)
|
||||
|
||||
VERSION: str = "1.0.16"
|
||||
VERSION: str = "1.0.17"
|
||||
|
||||
#? Argument parser ------------------------------------------------------------------------------->
|
||||
if len(sys.argv) > 1:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bpytop"
|
||||
version = "1.0.16"
|
||||
version = "1.0.17"
|
||||
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||
license = "Apache-2.0"
|
||||
|
|
Loading…
Reference in New Issue