From 3fa489e92013430ca8e6986ff6d2afc9c74ed28d Mon Sep 17 00:00:00 2001 From: Jason Zhang Date: Fri, 16 Sep 2022 13:26:06 -0700 Subject: [PATCH] Change Log --- build-doc.sh | 2 ++ docs/changelog.rst | 14 ++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 build-doc.sh 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.