Skip to content

Commit

Permalink
Prepared update version v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Nakama3942 committed Jun 18, 2023
1 parent 83d11fa commit adc11ed
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
9 changes: 6 additions & 3 deletions mighty_logger/powerful_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit adc11ed

Please sign in to comment.