* Added warning/error message system. This allows warning messages to be shown directly in iPython/python programs, rather than being shown on the console. To hide the warning messages, use a filter, e.g.
.. code:: python
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
Execute a command which triggers a warning message.
The message will not show up.
* Improvements regarding the WHFast logic for hyperbolic orbis. No changes should be noticeable to users.