diff --git a/build-doc.sh b/build-doc.sh new file mode 100644 index 0000000..29ce502 --- /dev/null +++ b/build-doc.sh @@ -0,0 +1,2 @@ +rm -rf ./docs/_build +poetry run sphinx-build -b html docs docs/_build diff --git a/docs/changelog.rst b/docs/changelog.rst index f7a8278..f45fb1c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,20 @@ Changelog ========= +Release 0.3.1 +============================== + +Dependencies +------------ + +Features added +-------------- + +- `#29 `_ Allow user to import all components with ``from guipy.components import *`` + +Bugs fixed +---------- + Release 0.3.0 ============================== Made changes to the manager and the component base class. Component._draw() should contain most of the drawing that a component needs. Components.root surface is no longer standard in components, as Switch and Button have two static surfaces. Component.update() is now responsible for readying surfaces. In a similar fashion, GUIManager.update() now updates and blits components.