diff --git a/_sources/development/changelog.rst.txt b/_sources/development/changelog.rst.txt index 1460d9b6..e12aeea4 100644 --- a/_sources/development/changelog.rst.txt +++ b/_sources/development/changelog.rst.txt @@ -1,4 +1,39 @@ Changelog ========= -No changes now. \ No newline at end of file +Unreleased +---------- + +Fixed bugs +^^^^^^^^^^ + +- Fixed the bug of :func:`~manimlib.utils.iterables.resize_with_interpolation` in the case of ``length=0`` +- Fixed the bug of ``__init__`` in :class:`~manimlib.mobject.geometry.Elbow` +- If chosen monitor is not available, choose one that does exist +- Make sure mobject data gets unlocked after animations +- Fixed a bug for off-center vector fields +- Had ``Mobject.match_points`` return self +- Fixed chaining animation in example scenes + +New Features +^^^^^^^^^^^^ + +- Added :class:`~manimlib.animation.indication.VShowPassingFlash` +- Added ``COLORMAP_3B1B`` +- Added some methods to coordinate system to access all axes ranges + + - :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_origin` + - :meth:`~manimlib.mobject.coordinate_systems.CoordinateSystem.get_all_ranges` +- Added :meth:`~manimlib.mobject.mobject.Mobject.set_color_by_rgba_func` +- Updated :class:`~manimlib.mobject.vector_field.VectorField` and :class:`~manimlib.mobject.vector_field.StreamLines` +- Allow ``3b1b_colormap`` as an option for :func:`~manimlib.utils.color.get_colormap_list` +- Return ``stroke_width`` as 1d array +- Added :meth:`~manimlib.mobject.svg.text_mobject.Text.get_parts_by_text` +- Use Text not TexText for Brace +- Update to Cross to make it default to variable stroke width +- Added :class:`~manimlib.animation.indication.FlashAround` and :class:`~manimlib.animation.indication.FlashUnder` +- Allowed configuration in ``Brace.get_text`` +- Added :meth:`~manimlib.camera.camera.CameraFrame.reorient` for quicker changes to frame angle +- Added ``units`` to :meth:`~manimlib.camera.camera.CameraFrame.set_euler_angles` +- Allowed any ``VMobject`` to be passed into ``TransformMatchingTex`` +- Removed double brace convention in ``Tex`` and ``TexText`` \ No newline at end of file diff --git a/_sources/documentation/custom_config.rst.txt b/_sources/documentation/custom_config.rst.txt index 496c87a9..bd8a7ed7 100644 --- a/_sources/documentation/custom_config.rst.txt +++ b/_sources/documentation/custom_config.rst.txt @@ -108,6 +108,11 @@ The relative position of the playback window on the display (two characters, the first character means upper(U) / middle(O) / lower(D), the second character means left(L) / middle(O) / right(R)). +``window_monitor`` +------------------ + +The number of the monitor you want the preview window to pop up on. (default is 0) + ``break_into_partial_movies`` ----------------------------- diff --git a/_sources/getting_started/example_scenes.rst.txt b/_sources/getting_started/example_scenes.rst.txt index 6c3a72bb..4c98659e 100644 --- a/_sources/getting_started/example_scenes.rst.txt +++ b/_sources/getting_started/example_scenes.rst.txt @@ -8,12 +8,12 @@ the simplest and one by one. InteractiveDevlopment --------------------- -.. manim-example:: InteractiveDevlopment - :media: ../_static/example_scenes/InteractiveDevlopment.mp4 +.. manim-example:: InteractiveDevelopment + :media: ../_static/example_scenes/InteractiveDevelopment.mp4 from manimlib import * - class InteractiveDevlopment(Scene): + class InteractiveDevelopment(Scene): def construct(self): circle = Circle() circle.set_fill(BLUE, opacity=0.5) diff --git a/_static/copybutton.js b/_static/copybutton.js index bf5ea1ce..c4a9f92e 100644 --- a/_static/copybutton.js +++ b/_static/copybutton.js @@ -44,7 +44,12 @@ if( document.documentElement.lang !== undefined locale = document.documentElement.lang } -const path_static = `${DOCUMENTATION_OPTIONS.URL_ROOT}_static/`; +let doc_url_root = DOCUMENTATION_OPTIONS.URL_ROOT; +if (doc_url_root == '#') { + doc_url_root = ''; +} + +const path_static = `${doc_url_root}_static/`; /** * Set up copy/paste for code blocks diff --git a/_static/example_scenes/InteractiveDevlopment.mp4 b/_static/example_scenes/InteractiveDevelopment.mp4 similarity index 100% rename from _static/example_scenes/InteractiveDevlopment.mp4 rename to _static/example_scenes/InteractiveDevelopment.mp4 diff --git a/development/about.html b/development/about.html index 95f5a0e2..4f3ae10d 100644 --- a/development/about.html +++ b/development/about.html @@ -9,8 +9,8 @@ - - + +