mirror of https://github.com/aristocratos/bpytop
parent
42cab9869d
commit
8d3d5ea5dc
|
@ -1,5 +1,13 @@
|
||||||
#Changelog
|
#Changelog
|
||||||
|
|
||||||
|
## v1.0.2
|
||||||
|
|
||||||
|
* Added: IndexError catch for cpu temperature collection
|
||||||
|
* Fixed: net_io_counters() not iterating over itself
|
||||||
|
* Fixed: Clear mouse queue to avoid accidental character interpretation
|
||||||
|
* Added: "/etc/bpytop.conf" as default seed for config file creation if it exists.
|
||||||
|
* Added: Error handling for exception in psutil.cpu_freq()
|
||||||
|
|
||||||
## v1.0.1
|
## v1.0.1
|
||||||
|
|
||||||
* Fixed: Bad assumption of cpu model name string contents.
|
* Fixed: Bad assumption of cpu model name string contents.
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd)
|
![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd)
|
||||||
![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-blue)
|
![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-blue)
|
||||||
![Python](https://img.shields.io/badge/Python-v3.6%5E-orange?logo=python)
|
![Python](https://img.shields.io/badge/Python-v3.6%5E-orange?logo=python)
|
||||||
![bashtop_version](https://img.shields.io/github/v/tag/aristocratos/bpytop?label=version)
|
![bpytop_version](https://img.shields.io/github/v/tag/aristocratos/bpytop?label=version)
|
||||||
[![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos)
|
[![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos)
|
||||||
[![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos)
|
[![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos)
|
||||||
[![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos)
|
[![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos)
|
||||||
|
@ -195,7 +195,9 @@ sudo make uninstall
|
||||||
All options changeable from within UI.
|
All options changeable from within UI.
|
||||||
Config files stored in "$HOME/.config/bpytop" folder
|
Config files stored in "$HOME/.config/bpytop" folder
|
||||||
|
|
||||||
#### bashtop.cfg: (auto generated if not found)
|
#### bpytop.cfg: (auto generated if not found)
|
||||||
|
|
||||||
|
"/etc/bpytop.conf" will be used as default seed for config file creation if it exists.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
#? Config file for bpytop v. 1.0.0
|
#? Config file for bpytop v. 1.0.0
|
||||||
|
|
|
@ -55,7 +55,7 @@ if errors:
|
||||||
print("\nInstall required modules!\n")
|
print("\nInstall required modules!\n")
|
||||||
quit(1)
|
quit(1)
|
||||||
|
|
||||||
VERSION: str = "1.0.1"
|
VERSION: str = "1.0.2"
|
||||||
|
|
||||||
#? Argument parser ------------------------------------------------------------------------------->
|
#? Argument parser ------------------------------------------------------------------------------->
|
||||||
if len(sys.argv) > 1:
|
if len(sys.argv) > 1:
|
||||||
|
|
Loading…
Reference in New Issue