text
stringlengths
19
585k
label
stringclasses
2 values
category
stringclasses
2 values
language
stringclasses
14 values
repo
stringclasses
932 values
sha
stringlengths
40
40
@@ -41,25 +41,35 @@ from ..utils.space_ops import angle_between_vectors, normalize, rotation_matrix if TYPE_CHECKING: + from collections.abc import Iterator + from typing import Any, Callable, Literal + from typing_extensions import Self, TypeAlias + from manim.mobject.types.point_cloud_mobject impo...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -1637,20 +1655,21 @@ def shift_onto_screen(self, **kwargs) -> Self: self.to_edge(vect, **kwargs) return self - def is_off_screen(self): + def is_off_screen(self) -> bool: if self.get_left()[0] > config["frame_x_radius"]: return True if self.get_right()...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2042,10 +2070,13 @@ def restore(self) -> Self: """Restores the state that was previously saved with :meth:`~.Mobject.save_state`.""" if not hasattr(self, "saved_state") or self.save_state is None: raise Exception("Trying to restore without having saved") + assert self.saved_sta...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2042,10 +2070,13 @@ def restore(self) -> Self: """Restores the state that was previously saved with :meth:`~.Mobject.save_state`.""" if not hasattr(self, "saved_state") or self.save_state is None: raise Exception("Trying to restore without having saved") + assert self.saved_sta...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2215,14 +2250,16 @@ def get_nadir(self) -> Point3D: def length_over_dim(self, dim: int) -> float: """Measure the length of an :class:`~.Mobject` in a certain direction.""" - return self.reduce_across_dimension( + max_distance: float = self.reduce_across_dimension( max, ...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2215,14 +2250,16 @@ def get_nadir(self) -> Point3D: def length_over_dim(self, dim: int) -> float: """Measure the length of an :class:`~.Mobject` in a certain direction.""" - return self.reduce_across_dimension( + max_distance: float = self.reduce_across_dimension( max, ...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -823,16 +838,13 @@ def apply_over_attr_arrays(self, func: MultiMappingFunction) -> Self: return self # Displaying - - def get_image(self, camera=None) -> PixelArray: + def get_image(self, camera: Camera | None = None) -> PixelArray:
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2567,13 +2605,18 @@ def construct(self): start_pos = self.get_center() # get cols / rows values if given (implicitly) - def init_size(num, alignments, sizes): + def init_size( + num: int | None, + alignments: str | None, + sizes: Iterable[float | No...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2567,13 +2605,18 @@ def construct(self): start_pos = self.get_center() # get cols / rows values if given (implicitly) - def init_size(num, alignments, sizes): + def init_size( + num: int | None, + alignments: str | None, + sizes: Iterable[float | No...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2600,25 +2643,31 @@ def init_size(num, alignments, sizes): buff_x = buff_y = buff # Initialize alignments correctly - def init_alignments(alignments, num, mapping, name, dir_): + def init_alignments( + alignments: str | None, + num: int, + mappi...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2641,26 +2690,30 @@ def init_alignments(alignments, num, mapping, name, dir_): raise ValueError( 'flow_order must be one of the following values: "dr", "rd", "ld" "dl", "ru", "ur", "lu", "ul".', ) - flow_order = mapper[flow_order] + flow_order_method = mapper...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2641,26 +2690,30 @@ def init_alignments(alignments, num, mapping, name, dir_): raise ValueError( 'flow_order must be one of the following values: "dr", "rd", "ld" "dl", "ru", "ur", "lu", "ul".', ) - flow_order = mapper[flow_order] + flow_order_method = mapper...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -2670,8 +2723,10 @@ def reverse(maybe_list): ] # Initialize row_heights / col_widths correctly using measurements as fallback - def init_sizes(sizes, num, measures, name): - if sizes is None: + def init_sizes( + sizes: list | None, num: int, measures: list, nam...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -3225,13 +3282,15 @@ class Group(Mobject, metaclass=ConvertToOpenGL): be added to the group. """ - def __init__(self, *mobjects, **kwargs) -> None: + def __init__(self, *mobjects: Any, **kwargs: Any) -> None: super().__init__(**kwargs) self.add(*mobjects) class _AnimationBuil...
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -3241,9 +3300,9 @@ def __init__(self, mobject) -> None: # Whether animation args can be passed self.cannot_pass_args = False - self.anim_args = {} + self.anim_args: dict = {}
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -3339,7 +3397,9 @@ def build(self) -> Animation: return anim -def override_animate(method) -> types.FunctionType: +def override_animate( + method: Callable[..., Animation], +) -> Callable[[Callable], Callable]:
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -3390,9 +3450,11 @@ def construct(self): self.wait() """ + temp_method = cast(_AnimationBuilder, method)
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -3390,9 +3450,11 @@ def construct(self): self.wait() """ + temp_method = cast(_AnimationBuilder, method) - def decorator(animation_method): - method._override_animate = animation_method + def decorator(animation_method: Callable) -> Callable:
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/mobject/mobject.py b/manim/mobject/mobject.py index 14738d22a7..9f3818c188 100644 --- a/manim/mobject/mobject.py +++ b/manim/mobject/mobject.py @@ -14,10 +14,10 @@ import sys import types import warnings -from collections.abc import Callable, Iterable +from collections.abc import Callable, Iterabl...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -296,7 +298,7 @@ def get_basis_vector_labels(self, **kwargs: Any) -> VGroup: def get_vector_label( self, - vector: Vector, + vector: VMobject,
bad
review
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
diff --git a/manim/scene/vector_space_scene.py b/manim/scene/vector_space_scene.py index ecb688ac2f..56afea2095 100644 --- a/manim/scene/vector_space_scene.py +++ b/manim/scene/vector_space_scene.py @@ -281,15 +281,19 @@ def get_basis_vector_labels(self, **kwargs: Any) -> VGroup: color (str), ...
good
review_fixed
python
ManimCommunity/manim
0d2ad520a435905841ae46d7135a424f65df22ba
@@ -434,6 +434,8 @@ By setting ``substrings_to_isolate`` to ``x``, we split up the :class:`~.MathTex` into substrings automatically and isolate the ``x`` components into individual substrings. Only then can :meth:`~.set_color_by_tex` be used to achieve the desired result. +If one of the ``substrings_to_isolate`` is ...
bad
review
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
diff --git a/docs/source/guides/using_text.rst b/docs/source/guides/using_text.rst index a71b29ec81..739510621c 100644 --- a/docs/source/guides/using_text.rst +++ b/docs/source/guides/using_text.rst @@ -424,7 +424,7 @@ may be expected. To color only ``x`` yellow, we have to do the following: class CorrectLaTeXSubs...
good
review_fixed
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
@@ -267,36 +272,77 @@ def get_mobjects_from(self, svg: se.SVG) -> list[VMobject]: The parsed SVG file. """ result: list[VMobject] = [] - for shape in svg.elements(): - # can we combine the two continue cases into one? - if isinstance(shape, se.Group): # noqa:...
bad
review
python
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
diff --git a/manim/mobject/svg/svg_mobject.py b/manim/mobject/svg/svg_mobject.py index bd494c0211..c296130a27 100644 --- a/manim/mobject/svg/svg_mobject.py +++ b/manim/mobject/svg/svg_mobject.py @@ -21,12 +21,12 @@ from ..geometry.line import Line from ..geometry.polygram import Polygon, Rectangle, RoundedRectangle ...
good
review_fixed
python
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
@@ -339,51 +399,32 @@ def _break_up_by_substrings(self) -> Self: of tex_strings) """ new_submobjects: list[VMobject] = [] - curr_index = 0 - for tex_string in self.tex_strings: - sub_tex_mob = SingleStringMathTex( - tex_string, - tex_envi...
bad
review
python
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
diff --git a/manim/mobject/text/tex_mobject.py b/manim/mobject/text/tex_mobject.py index 5d5cca069b..18546bce89 100644 --- a/manim/mobject/text/tex_mobject.py +++ b/manim/mobject/text/tex_mobject.py @@ -12,7 +12,7 @@ from __future__ import annotations -from manim.utils.color import BLACK, ManimColor, ParsableManim...
good
review_fixed
python
ManimCommunity/manim
a27cb1243a29f30363625121370365fa34f8d3fc
@@ -0,0 +1,40 @@ +--- +short-title: v0.20.1 +description: Changelog for v0.20.1 +--- + +# v0.20.1 + +Date +: February 27, 2026 + + +## What's Changed +### Enhancements 🚀 +* Cleanup `TipableVMobject`: avoid mutable default and fix `assign_tip_attr` typo by {user}`josiest` in {pr}`4503` +* enhancement: optimize Docker i...
bad
review
ManimCommunity/manim
6d39ed1aab9721957be60ebca82be17809559c35
diff --git a/docs/source/changelog/0.20.1-changelog.md b/docs/source/changelog/0.20.1-changelog.md new file mode 100644 index 0000000000..f2959810bb --- /dev/null +++ b/docs/source/changelog/0.20.1-changelog.md @@ -0,0 +1,41 @@ +--- +short-title: v0.20.1 +description: Changelog for v0.20.1 +--- + +# v0.20.1 + +Date +: ...
good
review_fixed
ManimCommunity/manim
6d39ed1aab9721957be60ebca82be17809559c35
@@ -904,7 +931,7 @@ def get_moving_mobjects(self, *animations: Animation) -> list[Mobject]: # as soon as there's one that needs updating of # some kind per frame, return the list from that # point forward. - animation_mobjects = [anim.mobject for anim in animations] + animation_...
bad
review
python
ManimCommunity/manim
bc8a7dab977336e35e60d27bcba8dabdeb2d0de0
diff --git a/manim/scene/scene.py b/manim/scene/scene.py index 96d5fd9abc..845fafd0b9 100644 --- a/manim/scene/scene.py +++ b/manim/scene/scene.py @@ -903,7 +903,24 @@ def get_moving_mobjects(self, *animations: Animation) -> list[Mobject]: # as soon as there's one that needs updating of # some kind pe...
good
review_fixed
python
ManimCommunity/manim
bc8a7dab977336e35e60d27bcba8dabdeb2d0de0
@@ -329,3 +329,30 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally, run `uv sync`, and your environment is updated! ::: + + + +:::{dropdown} Installing the current repo as a pip package
bad
review
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
diff --git a/docs/source/installation/uv.md b/docs/source/installation/uv.md index ab2ccec554..c4cf17e6cb 100644 --- a/docs/source/installation/uv.md +++ b/docs/source/installation/uv.md @@ -329,3 +329,13 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally...
good
review_fixed
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
@@ -329,3 +329,30 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally, run `uv sync`, and your environment is updated! ::: + + + +:::{dropdown} Installing the current repo as a pip package +If there are problems with the current release of manim. +You ca...
bad
review
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
diff --git a/docs/source/installation/uv.md b/docs/source/installation/uv.md index ab2ccec554..c4cf17e6cb 100644 --- a/docs/source/installation/uv.md +++ b/docs/source/installation/uv.md @@ -329,3 +329,13 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally...
good
review_fixed
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
@@ -329,3 +329,30 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally, run `uv sync`, and your environment is updated! ::: + + + +:::{dropdown} Installing the current repo as a pip package +If there are problems with the current release of manim. +You ca...
bad
review
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
diff --git a/docs/source/installation/uv.md b/docs/source/installation/uv.md index ab2ccec554..c4cf17e6cb 100644 --- a/docs/source/installation/uv.md +++ b/docs/source/installation/uv.md @@ -329,3 +329,13 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally...
good
review_fixed
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
@@ -329,3 +329,30 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally, run `uv sync`, and your environment is updated! ::: + + + +:::{dropdown} Installing the current repo as a pip package +If there are problems with the current release of manim. +You ca...
bad
review
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
diff --git a/docs/source/installation/uv.md b/docs/source/installation/uv.md index ab2ccec554..c4cf17e6cb 100644 --- a/docs/source/installation/uv.md +++ b/docs/source/installation/uv.md @@ -329,3 +329,13 @@ version satisfies the requirement. Change the line to, for example to pin the python version to `3.12`. Finally...
good
review_fixed
ManimCommunity/manim
b74a010149f7185688c53c79bee8f79e66c9459d
@@ -37,37 +37,10 @@ jobs: with: path: dist/*.tar.gz name: manim.tar.gz - - name: Install Dependency - run: pip install requests - - name: Get Upload URL - id: create_release - shell: python - env: - access_token: ${{ secrets.GITHUB_TOKEN }} - tag_...
bad
review
ManimCommunity/manim
f17f501d061be2cda07eb6213ef6d0088b7a25c5
diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index fa8c5c9085..771973407a 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -11,6 +11,7 @@ jobs: environment: release permissions: id-token: write + contents: w...
good
review_fixed
ManimCommunity/manim
f17f501d061be2cda07eb6213ef6d0088b7a25c5
@@ -0,0 +1,85 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: February 20, 2026 + + +## What's Changed +### Breaking Changes 🚨 +* Fix `ImageMobject` 3D rotation/flipping and remove resampling algorithms `lanczos` (`antialias`), `box` and `hamming` by {user}`chopan050` in ...
bad
review
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
diff --git a/docs/source/changelog/0.20.0-changelog.md b/docs/source/changelog/0.20.0-changelog.md new file mode 100644 index 0000000000..349212c53e --- /dev/null +++ b/docs/source/changelog/0.20.0-changelog.md @@ -0,0 +1,86 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: ...
good
review_fixed
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
@@ -0,0 +1,85 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: February 20, 2026 + + +## What's Changed +### Breaking Changes 🚨 +* Fix `ImageMobject` 3D rotation/flipping and remove resampling algorithms `lanczos` (`antialias`), `box` and `hamming` by {user}`chopan050` in ...
bad
review
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
diff --git a/docs/source/changelog/0.20.0-changelog.md b/docs/source/changelog/0.20.0-changelog.md new file mode 100644 index 0000000000..349212c53e --- /dev/null +++ b/docs/source/changelog/0.20.0-changelog.md @@ -0,0 +1,86 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: ...
good
review_fixed
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
@@ -0,0 +1,86 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: February 20, 2026 + + +## What's Changed +### Breaking Changes 🚨 +* Fix `ImageMobject` 3D rotation/flipping and remove resampling algorithms `lanczos` (`antialias`), `box` and `hamming` by {user}`chopan050` in ...
bad
review
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
diff --git a/docs/source/changelog/0.20.0-changelog.md b/docs/source/changelog/0.20.0-changelog.md new file mode 100644 index 0000000000..349212c53e --- /dev/null +++ b/docs/source/changelog/0.20.0-changelog.md @@ -0,0 +1,86 @@ +--- +short-title: v0.20.0 +description: Changelog for v0.20.0 +--- + +# v0.20.0 + +Date +: ...
good
review_fixed
ManimCommunity/manim
b4dcd86ca9fc7e0bb8123b121a92fa175bedff0c
@@ -19,13 +20,13 @@ class ConvertToOpenGL(ABCMeta): on the lowest order inheritance classes such as Mobject and VMobject. """ - _converted_classes = [] + _converted_classes: list[type] = [] - def __new__(mcls, name, bases, namespace): + def __new__(mcls, name: str, bases: tuple[type, ...], nam...
bad
review
python
ManimCommunity/manim
e879e767b73dea4a716ee62f8575d0e86e5e16d5
diff --git a/manim/mobject/opengl/opengl_compatibility.py b/manim/mobject/opengl/opengl_compatibility.py index 94991d544e..761cd32918 100644 --- a/manim/mobject/opengl/opengl_compatibility.py +++ b/manim/mobject/opengl/opengl_compatibility.py @@ -1,6 +1,7 @@ from __future__ import annotations from abc import ABCMet...
good
review_fixed
python
ManimCommunity/manim
e879e767b73dea4a716ee62f8575d0e86e5e16d5
@@ -40,6 +41,6 @@ def __new__(mcls, name, bases, namespace): return super().__new__(mcls, name, bases, namespace) - def __init__(cls, name, bases, namespace): + def __init__(cls, name: str, bases: tuple[type, ...], namespace: Any):
bad
review
python
ManimCommunity/manim
e879e767b73dea4a716ee62f8575d0e86e5e16d5
diff --git a/manim/mobject/opengl/opengl_compatibility.py b/manim/mobject/opengl/opengl_compatibility.py index 94991d544e..761cd32918 100644 --- a/manim/mobject/opengl/opengl_compatibility.py +++ b/manim/mobject/opengl/opengl_compatibility.py @@ -1,6 +1,7 @@ from __future__ import annotations from abc import ABCMet...
good
review_fixed
python
ManimCommunity/manim
e879e767b73dea4a716ee62f8575d0e86e5e16d5
@@ -168,6 +174,11 @@ public TimeSpan MaxVisibilityTimeout set => _settings.MaxVisibilityTimeout = value > MaxAllowedVisibilityTimeout ? MaxAllowedVisibilityTimeout : value; } + public int VisibilityTimeoutExtension + { + set => _settings.VisibilityTimeoutExtension = value < 60 ? 60 : value;
bad
review
csharp
MassTransit/MassTransit
fe5a7da852599c4667bfd57a734ea009f9965549
diff --git a/src/Transports/MassTransit.AmazonSqsTransport/AmazonSqsTransport/Configuration/AmazonSqsReceiveEndpointConfiguration.cs b/src/Transports/MassTransit.AmazonSqsTransport/AmazonSqsTransport/Configuration/AmazonSqsReceiveEndpointConfiguration.cs index 6b15aa7640a..defa5c64fdb 100644 --- a/src/Transports/MassTr...
good
review_fixed
csharp
MassTransit/MassTransit
fe5a7da852599c4667bfd57a734ea009f9965549
@@ -36,6 +36,7 @@ public SubscriptionEndpointSettings(IServiceBusEndpointConfiguration configurati public IServiceBusSubscriptionConfigurator SubscriptionConfigurator => _subscriptionConfigurator; public override bool RequiresSession => _subscriptionConfigurator.RequiresSession ?? false; + pu...
bad
review
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
diff --git a/src/Transports/MassTransit.Azure.ServiceBus.Core/AzureServiceBusTransport/Topology/SubscriptionEndpointSettings.cs b/src/Transports/MassTransit.Azure.ServiceBus.Core/AzureServiceBusTransport/Topology/SubscriptionEndpointSettings.cs index 2d89824eecf..4cc5abc1b89 100644 --- a/src/Transports/MassTransit.Azur...
good
review_fixed
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
@@ -0,0 +1,33 @@ +using System; + +namespace MassTransit; + +public static class ServiceBusBatchingExtensions +{ + public static void BatchBySession<TConsumer>(this IConsumerConfigurator<TConsumer> consumerConfigurator, Action<SessionBatchOptions> configure)
bad
review
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
diff --git a/src/Transports/MassTransit.Azure.ServiceBus.Core/Batching/ServiceBusBatchingExtensions.cs b/src/Transports/MassTransit.Azure.ServiceBus.Core/Batching/ServiceBusBatchingExtensions.cs new file mode 100644 index 00000000000..1efa99deaee --- /dev/null +++ b/src/Transports/MassTransit.Azure.ServiceBus.Core/Batc...
good
review_fixed
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
@@ -0,0 +1,33 @@ +using System; + +namespace MassTransit; + +public static class ServiceBusBatchingExtensions +{ + public static void BatchBySession<TConsumer>(this IConsumerConfigurator<TConsumer> consumerConfigurator, Action<SessionBatchOptions> configure) + where TConsumer : class + { + SessionBa...
bad
review
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
diff --git a/src/Transports/MassTransit.Azure.ServiceBus.Core/Batching/ServiceBusBatchingExtensions.cs b/src/Transports/MassTransit.Azure.ServiceBus.Core/Batching/ServiceBusBatchingExtensions.cs new file mode 100644 index 00000000000..1efa99deaee --- /dev/null +++ b/src/Transports/MassTransit.Azure.ServiceBus.Core/Batc...
good
review_fixed
csharp
MassTransit/MassTransit
a92c7e663dde0f235eae91b2652fbd242cc38928
@@ -0,0 +1,20 @@ +using System;
bad
review
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
diff --git a/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/AmqpHostSettings.cs b/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/AmqpHostSettings.cs new file mode 100644 index 00000000000..36c009f1bea --- /dev/null +++ b/src/Transports/MassTransit.ActiveMqTran...
good
review_fixed
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
@@ -56,7 +56,7 @@ public ConfigurationHostSettings(Uri address) Password = parts[1]; } - TransportOptions = new Dictionary<string, string> { { "wireFormat.tightEncodingEnabled", "true" } };
bad
review
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
diff --git a/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConfigurationHostSettings.cs b/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConfigurationHostSettings.cs index 358e11e93e0..31105b9023b 100644 --- a/src/Transports/MassTransit.ActiveMqTransport/Acti...
good
review_fixed
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
@@ -74,22 +74,31 @@ public ConfigurationHostSettings(Uri address) public Uri HostAddress => _hostAddress.Value; public Uri BrokerAddress => _brokerAddress.Value; + public abstract string HostScheme { get; } + + public abstract string FailoverScheme { get; } + + public abstract s...
bad
review
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
diff --git a/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConfigurationHostSettings.cs b/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConfigurationHostSettings.cs index 358e11e93e0..31105b9023b 100644 --- a/src/Transports/MassTransit.ActiveMqTransport/Acti...
good
review_fixed
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
@@ -9,19 +9,24 @@ public class ConsumerConsumeTopicTopologySpecification : ActiveMqTopicBindingConfigurator, IActiveMqConsumeTopologySpecification { - readonly IActiveMqConsumerEndpointQueueNameFormatter _consumerEndpointQueueNameFormatter; + /// <summary> + /// If set to <c>...
bad
review
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
diff --git a/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConsumerConsumeTopicTopologySpecification.cs b/src/Transports/MassTransit.ActiveMqTransport/ActiveMqTransport/Configuration/ConsumerConsumeTopicTopologySpecification.cs index 640499f474d..0c70c253dc7 100644 --- a/src/Transports/Ma...
good
review_fixed
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
@@ -238,8 +263,16 @@ public async Task Should_properly_redeliver(string flavor) }); cfg.EnableArtemisCompatibility(); } + else if (flavor == ActiveMqHostAddress.AmqpScheme)
bad
review
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
diff --git a/tests/MassTransit.ActiveMqTransport.Tests/DelayRetry_Specs.cs b/tests/MassTransit.ActiveMqTransport.Tests/DelayRetry_Specs.cs index 28f44baf5b9..f8b2b6fb498 100644 --- a/tests/MassTransit.ActiveMqTransport.Tests/DelayRetry_Specs.cs +++ b/tests/MassTransit.ActiveMqTransport.Tests/DelayRetry_Specs.cs @@ -10,...
good
review_fixed
csharp
MassTransit/MassTransit
7724c220678a0a056f7812b7472110b3442cfc96
@@ -3,6 +3,10 @@ xmlns:converters="clr-namespace:MaterialDesignThemes.Wpf.Converters" xmlns:wpf="clr-namespace:MaterialDesignThemes.Wpf"> + <converters:CornerRadiusCloneConverter x:Key="FixedBottomCornerRadiusConverter"
bad
review
MaterialDesignInXAML/MaterialDesignInXamlToolkit
04d1f0309f86372a8701279e256a37d3c3fe67d0
diff --git a/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml index 2256a873cf..d36a94ec1b 100644 --- a/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.Clock.xaml +++ b/src/MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme....
good
review_fixed
MaterialDesignInXAML/MaterialDesignInXamlToolkit
04d1f0309f86372a8701279e256a37d3c3fe67d0
@@ -0,0 +1,168 @@ +using System.Windows.Media; + +namespace MaterialColorUtilities.Tests; + +public sealed class CustomSemanticSwatchTests +{ + [Test] + public async Task CustomSemanticSwatches_ExtractExpectedThemeColors()
bad
review
csharp
MaterialDesignInXAML/MaterialDesignInXamlToolkit
491478c6d9df7c38c2d9eb85f8833c6f9f118a69
diff --git a/tests/MaterialColorUtilities.Tests/CustomSemanticSwatchTests.cs b/tests/MaterialColorUtilities.Tests/CustomSemanticSwatchTests.cs new file mode 100644 index 0000000000..f835896293 --- /dev/null +++ b/tests/MaterialColorUtilities.Tests/CustomSemanticSwatchTests.cs @@ -0,0 +1,167 @@ +using System.Windows.Med...
good
review_fixed
csharp
MaterialDesignInXAML/MaterialDesignInXamlToolkit
491478c6d9df7c38c2d9eb85f8833c6f9f118a69