diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e1ae99..07f8a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -276,3 +276,30 @@ print(f"{GetAnsiFormat('reset/on')}Test string") - Changed names of keys in "AnsiFormat/font" dictionary from "1th alternative", "2th alternative" and "3th alternative" to "1st alternative", "2nd alternative" and "3rd alternative" respectively. --- + +## v0.3.0 (05.04.2023) + +#### Documenting: +- Updated documentation; +- Wrote the actual README.md (which corresponds to the current version). + +#### Enhancements: +- Added support for inverting colors in posts (console); +- Added support for backgrounds in posts (console, HTML); +- Completely redesigned and written from scratch logger color table; +- Logger included AnsiColorSetInit; +- LoggerQ included HtmlColorSetInitQ; +- Removed list of default colors; +- Post types categorized: + - Debugging (%); + - Event (~); + - Message (@); + - Error (!); + - Process (&). +- Argument names are now required; +- Added an introductory line with system initialized information; +- Added a global enable background setting; +- Started work on the text buffer; +- Added new CombinationException. + +--- diff --git a/README.md b/README.md index 772d941..b2d468d 100644 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ if __name__ == '__main__': ``` The outputs in console will contain the following text (GitHub, PyPi and possibly some other sites do not support displaying colors in Markdown - use resources that support them, such as PyCharm): -> -Test?entry> $DESKTOP-8KG0R64^User@Windows:10.0.19045:64bit:WindowsPE:AMD64
+> -Test?entry> $***************^****@*******:**********:*****:*********:*****
> -?entry> *2023-04-05 15:41:18.616238 #STATUS: %DEBUG - Debug data
> -?entry> *2023-04-05 15:41:18.616238 #STATUS: %DEBUG - Debug data
> -?entry> *2023-04-05 15:41:18.616238 #STATUS: %DEBUG - Debug data
@@ -120,7 +120,7 @@ if __name__ == '__main__': ``` The outputs in console will contain the following text (GitHub, PyPi and possibly some other sites do not support displaying colors in Markdown - use resources that support them, such as PyCharm): -> -Test?entry> $DESKTOP-8KG0R64^User@Windows:10.0.19045:64bit:WindowsPE:AMD64
+> -Test?entry> $***************^****@*******:**********:*****:*********:*****
> -?entry> *2023-04-05 17:09:39.103436 #STATUS: @NOTICE - Notice data
> -?entry> *2023-04-05 17:09:39.103436 #STATUS: @NOTICE - Notice data
@@ -149,7 +149,7 @@ if __name__ == "__main__": ``` The outputs in console will contain the following text (GitHub, PyPi and possibly some other sites do not support displaying colors in Markdown - use resources that support them, such as PyCharm): -> -Test?entry> $DESKTOP-8KG0R64^User@Windows:10.0.19045:64bit:WindowsPE:AMD64
+> -Test?entry> $***************^****@*******:**********:*****:*********:*****
> -?entry> *2023-04-05 17:17:48.365753 #STATUS: Test text %DEBUG - Test message Test message Test message Test message Test message
> -?entry> *2023-04-05 17:17:48.365753 #STATUS: Test text %DEBUG PERFORMANCE - Test message Test message Test message Test message Test message
> -?entry> *2023-04-05 17:17:48.365753 #STATUS: Test text %PERFORMANCE - Test message Test message Test message Test message Test message
diff --git a/qt_colored_logger/__init__.py b/qt_colored_logger/__init__.py index 1b57ec0..3ca20a1 100644 --- a/qt_colored_logger/__init__.py +++ b/qt_colored_logger/__init__.py @@ -22,5 +22,5 @@ from .html_colored_logger import LoggerQ __authot__ = "Kalynovsky 'Nakama3942' Valentin" -__version__ = "0.2.1" +__version__ = "0.3.0" __email__ = "nakama3942@gmail.com" diff --git a/setup.py b/setup.py index e219ed5..0c8defc 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup( name="qt_colored_logger", - version="0.2.1", + version="0.3.0", author="Kalynovsky 'Nakama3942' Valentin", author_email="nakama3942@gmail.com",