> **Warning**: This release contains unpushed patches (accidentally). Please patch them mannually as described below, or wait for the upcoming 1.4 release.
This release contains fixes and improvements:
* [New] BindMenuEvents function for wxPython which as the name says, binds wxEVT_MENU events for your XRC-built menu bar
* [New] You can choose between configparser and commented-configparser, or even choose to install darkdetect or not
* [New] A base logger class, can be used for GUIs
* Fix GetConfig's yes_values and no_values
* Fixed a typo in libtextworker.versioning module
* Fixed documents
* Fixed darkdetect returning None on unsupported OSes - that's why darkdetect is now optional
There also a fix for interface.tk.ColorManager, but not ready yet.
And.. I forgot to close 1.
> Error yesvalues not found is a typo, replace all yesvalues to yes_values in libtextworker.interface.manager.ColorManager
class to fix
> If you found that libtextworker.general.WalkCreation doesn't work, that because of the use of a wrong variable.
> Do the fix:
> directory = os.path.normpath(directory) -> directory = directory.replace("\\", "/")
> splits = directory.split(os.pathsep) -> splits = directory.split("/")
> firstdir += os.pathsep + splits[item] -> firstdir += ("/" + splits[item])