From adc11ed90e11406c60485fbbeef8ec7b1671ffff Mon Sep 17 00:00:00 2001 From: Valentin Date: Sun, 18 Jun 2023 16:43:13 +0300 Subject: [PATCH] Prepared update version v0.6.1 --- CHANGELOG.md | 14 ++++++++++++++ mighty_logger/powerful_logger.py | 9 ++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1bc90c..53e473c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -410,3 +410,17 @@ print(f"{GetAnsiFormat('reset/on')}Test string") [^manual]: Available to the programmer --- + +## Progress update v0.6.1 (18.06.2023) + +#### Bug Fixes: +- Fixed a bug where the percentage was changing just before adding a Process entry, and it was completely breaking the output (and a 0.01 second delay was enough to fix it); +- Fixed a bug that occurs when the last string in the console is removed, which occupies more than 1 line. + +#### Documenting: +- Updated versioning; +- Updated documentation. + +#### Enhancements: +- Added new animations and worked out the old ones; +- Added a new category of types: Timer, and 3 entries for it. diff --git a/mighty_logger/powerful_logger.py b/mighty_logger/powerful_logger.py index 254f4da..d624871 100644 --- a/mighty_logger/powerful_logger.py +++ b/mighty_logger/powerful_logger.py @@ -1526,7 +1526,8 @@ def start_timer( local_settings: dict = None ) -> None: """ - ... + Information logging of starting Timer: + Used to notify the start of the Timer. :param status_message: Log entry status message :param message_text: Log entry message @@ -1565,7 +1566,8 @@ def timer_mark( local_settings: dict = None ) -> None: """ - ... + Information logging of mark Timer: + Used to notify the mark of the Timer. :param status_message: Log entry status message :param message_text: Log entry message @@ -1603,7 +1605,8 @@ def stop_timer( local_settings: dict = None ) -> None: """ - ... + Information logging of stopping Timer: + Used to notify the stop of the Timer. :param status_message: Log entry status message :param message_text: Log entry message