v1.0.14 New color attributes added to theme parser

pull/81/head v1.0.14
aristocratos 2020-08-14 19:55:15 +02:00
parent fea9351039
commit 6693ff3095
2 changed files with 8 additions and 2 deletions

View File

@ -1,5 +1,11 @@
# Changelog # 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 ## v1.0.13
* Fixed: Cpu usage bug when showing tree and memory in percent * Fixed: Cpu usage bug when showing tree and memory in percent

View File

@ -56,7 +56,7 @@ if errors:
print("\nInstall required modules!\n") print("\nInstall required modules!\n")
raise SystemExit(1) raise SystemExit(1)
VERSION: str = "1.0.13" VERSION: str = "1.0.14"
#? Argument parser -------------------------------------------------------------------------------> #? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1: if len(sys.argv) > 1:
@ -464,7 +464,7 @@ try:
errlog.setLevel(getattr(logging, CONFIG.log_level)) errlog.setLevel(getattr(logging, CONFIG.log_level))
if CONFIG.log_level == "DEBUG": DEBUG = True if CONFIG.log_level == "DEBUG": DEBUG = True
errlog.info(f'New instance of bpytop version {VERSION} started with pid {os.getpid()}') 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'Using psutil version {".".join(str(x) for x in psutil.version_info)}')
errlog.debug(f'CMD: {" ".join(sys.argv)}') errlog.debug(f'CMD: {" ".join(sys.argv)}')
if CONFIG.info: if CONFIG.info: