summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2020-08-14 19:55:15 +0200
committeraristocratos <gnmjpl@gmail.com>2020-08-14 19:55:15 +0200
commit6693ff3095f2c1506d29ed21a6ee826ecb6d5e47 (patch)
tree4920b07aee34af66cbf3f133e554bc97025b6d02
parentfea9351039118d3276c925744be8bf59863c8f13 (diff)
v1.0.14 New color attributes added to theme parserv1.0.14
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xbpytop.py4
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8f446ec..f3c0ba7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## v1.0.14
+
+* Added: New theme values "graph_text", "meter_bg", "process_start", "process_mid" and "process_end", see default_black.theme for reference.
+* Updated: default_black.theme with new values
+* Updated: monokai.theme and gruvbox_dark.theme with "graph_text" value.
+
## v1.0.13
* Fixed: Cpu usage bug when showing tree and memory in percent
diff --git a/bpytop.py b/bpytop.py
index 91d7a9f..7f7a764 100755
--- a/bpytop.py
+++ b/bpytop.py
@@ -56,7 +56,7 @@ if errors:
print("\nInstall required modules!\n")
raise SystemExit(1)
-VERSION: str = "1.0.13"
+VERSION: str = "1.0.14"
#? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1:
@@ -464,7 +464,7 @@ try:
errlog.setLevel(getattr(logging, CONFIG.log_level))
if CONFIG.log_level == "DEBUG": DEBUG = True
errlog.info(f'New instance of bpytop version {VERSION} started with pid {os.getpid()}')
- errlog.info(f'Loglevel set to {CONFIG.log_level}')
+ errlog.info(f'Loglevel set to {"DEBUG" if DEBUG else CONFIG.log_level}')
errlog.debug(f'Using psutil version {".".join(str(x) for x in psutil.version_info)}')
errlog.debug(f'CMD: {" ".join(sys.argv)}')
if CONFIG.info: