Skip to content

Releases: davbyr/xAnimate

Version 1.3.0

26 Jul 14:27
750e03e
Compare
Choose a tag to compare

Two new things in this version:

  1. loop added as an argument for make_animation(). Ultimately gets passed to imagio.mimsave(). Same functionality as argument for that function.
  2. _try_make_animation() now contains the bulk of the code, although the user still interacts with make_animation(). The point is, make_animation() now contains a try-except block, so if the animation has any problems, or is interrupted, the temporary file directory is deleted.

Version 1.2.0

24 Jul 20:34
d5a9eee
Compare
Choose a tag to compare

Added the new ability to provided multiple datasets and/or data arrays to make_animation().

This means that you can pass the inputs as part of a list.

When constructing a frame function, you can now specify multiple arguments, which make_animation() will pass automatically, in the order they appear in the input list.

Version 1.1.0

11 Jun 22:42
2570a21
Compare
Choose a tag to compare
  1. Package has been renamed to xAnimate.
  2. A default importable plot() function has been added, alongside the frames module.

Version 1 (2023/06/09)

09 Jun 20:16
03d5464
Compare
Choose a tag to compare

First working version of the package.

Contains the basic functionality:

  1. make_animate() is the main controlling function. It takes a frame plotting function, creates multiple images and compiled them into an animation.
  2. Some other functions which make this possible.
  3. README file including an example of how to use the package.