diff --git a/.pyhistory/1613768068274866-11a4588 b/.pyhistory/1613768068274866-11a4588 deleted file mode 100644 index 389c8d2a..00000000 --- a/.pyhistory/1613768068274866-11a4588 +++ /dev/null @@ -1 +0,0 @@ -new property `Node.root_distance` diff --git a/.pyhistory/1613768077692265-bc61a3e b/.pyhistory/1613768077692265-bc61a3e deleted file mode 100644 index 16619c7e..00000000 --- a/.pyhistory/1613768077692265-bc61a3e +++ /dev/null @@ -1 +0,0 @@ -new properties `Node.effective_z_index`, `Node.effective_views` diff --git a/.pyhistory/1613768088262566-8c0a75d b/.pyhistory/1613768088262566-8c0a75d deleted file mode 100644 index 85cc2dbb..00000000 --- a/.pyhistory/1613768088262566-8c0a75d +++ /dev/null @@ -1 +0,0 @@ -new module `kaa.statistics` diff --git a/.pyhistory/1613768125122441-4cdc15a b/.pyhistory/1613768125122441-4cdc15a deleted file mode 100644 index b9399af1..00000000 --- a/.pyhistory/1613768125122441-4cdc15a +++ /dev/null @@ -1 +0,0 @@ -new utility module `kaa.tools.stats_graph` diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 44556449..8ba3e7df 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,25 @@ Changelog --------- +0.11 (2021-03-10) ++++++++++++++++++ + +* Changed default time unit across the engine from milliseconds (`int`) to seconds (`float`) [API change]. +* Timers redesign [API change]. +* Added new property `Node.root_distance` +* Added new properties `Node.effective_z_index`, `Node.effective_views` +* Added new module `kaa.statistics` +* Added new utility `kaa.tools.stats_graph` +* Added `InputManager.cursor_visible` property. +* Added `BoundingBox.intersection` method. +* Added `Engine.get_fps` function. +* Added `Scene.time_scale` property. +* Added `Node.on_attach` and `Node.on_detach` customizable methods. +* Added `Node.__bool__`. +* Added extra checks for unsafe (e.g. deleted) nodes access. +* Added internal statistics manager with exporter over `UDP/IP`. +* Fixed bug with incorrect operations order when using `Transformation`s. +* Fixed font rendering with HLSL shader. +* Fixed log module reporting on Windows. +* Fixed rare hangups during engine shutdown. +* Added CHANGELOG. diff --git a/README.md b/README.md index ba5846f5..c3887eb5 100644 --- a/README.md +++ b/README.md @@ -30,3 +30,7 @@ python setup.py install --build-type Debug ## Documentation https://kaa.readthedocs.io/ + +## Changelog + +See [CHANGELOG file](CHANGELOG.rst).